/* =====================================================
   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;
  --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; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  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;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,.3);
}
.btn-primary:hover {
  background: var(--accent-d);
  box-shadow: 0 8px 25px rgba(249,115,22,.45);
}
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); box-shadow: 0 4px 15px rgba(0,0,0,.1); }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

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

/* =====================================================
   HERO
   ===================================================== */
.hero {
  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 */
.hero::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 */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; z-index: 1; }
.hero-badge {
  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);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.025em;
}
.hero p.hero-sub {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   SEARCH BAR (home)
   ===================================================== */
.search-hero { padding: 0 20px 40px; }
.search-wrap { max-width: 520px; margin: 0 auto; position: relative; }
.search-wrap 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;
}
.search-wrap input:focus { border-color: var(--primary); }
.search-label {
  text-align: center;
  margin-bottom: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.search-drop {
  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;
}
.search-drop a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
}
.search-drop a:last-child { border-bottom: none; }
.search-drop a:hover { background: var(--light); color: var(--primary); }
.search-drop .no-res { padding: 12px 20px; color: var(--gray); font-size: .9rem; }

/* =====================================================
   TRUST BADGES
   ===================================================== */
.trust-badges {
  background: var(--white);
  padding: 0 24px 44px;
  position: relative;
  z-index: 2;
}
.trust-badges-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-badge {
  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;
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trust-icon {
  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;
}
.trust-icon .ui-icon { stroke: rgba(255,255,255,.92); }
.why-card-icon .ui-icon { display: block; stroke: var(--primary); }
.trust-badge strong { display: block; font-size: .95rem; margin-bottom: 2px; font-weight: 700; }
.trust-badge span { font-size: .82rem; color: var(--gray); }

/* =====================================================
   WIDGET DEVIS
   ===================================================== */
.devis-section {
  background: var(--surface);
  padding: 64px 24px;
}
.devis-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.devis-inner h2 { font-size: 1.75rem; margin-bottom: 10px; letter-spacing: -.02em; }
.devis-inner p  { color: var(--gray); margin-bottom: 30px; }
.widget-box {
  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; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.025em;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 46px;
  font-size: .98rem;
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.service-card {
  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;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--svc-color, var(--primary));
  border-radius: 4px 4px 0 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--svc-color, var(--primary));
  text-decoration: none;
}
.service-card .icon { font-size: 2.4rem; }
.svc-icon { width: 44px; height: 44px; display: block; stroke: var(--primary); fill: none; overflow: visible; }
.service-card strong { font-size: .95rem; font-weight: 700; }
.service-card span { font-size: .8rem; color: var(--gray); line-height: 1.4; }

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-section { background: var(--surface); }
.why-card {
  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;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card-icon {
  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;
}
.why-card-icon .ui-icon { stroke: rgba(255,255,255,.92); display: block; }
.why-card strong { display: block; margin-bottom: 8px; font-size: 1rem; font-weight: 700; }
.why-card p { font-size: .87rem; color: var(--gray); line-height: 1.7; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.steps::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;
}
.step { text-align: center; padding: 0 20px 28px; }
.step-num {
  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;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: .87rem; color: var(--gray); }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  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;
}
.review-name { font-weight: 700; font-size: .92rem; }
.review-date { font-size: .77rem; color: var(--gray-light); }
.stars { color: #f59e0b; font-size: .95rem; letter-spacing: 1px; }
.star-empty { color: #d1d5db; }
.review-text { font-size: .88rem; color: #475569; font-style: italic; line-height: 1.65; }
.reviews-aggregate {
  text-align: center;
  margin-bottom: 34px;
  font-size: 1rem;
  color: var(--gray);
}
.reviews-aggregate strong { color: var(--dark); font-size: 1.15rem; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: var(--surface); }
.faq-list { 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); }
.faq-answer {
  padding: 14px 22px 20px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* =====================================================
   INTERNAL LINKS / ZONES
   ===================================================== */
.zones-section { background: var(--white); }
.links-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--dark);
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 36px;
}
.links-grid 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);
}
.links-grid a:hover {
  background: #dbeafe;
  border-color: var(--primary);
  text-decoration: none;
  color: var(--primary);
  transform: translateX(3px);
}
.links-grid a.with-pin::before { content: '📍'; font-size: .72rem; }

/* =====================================================
   PRESTATIONS LIST
   ===================================================== */
.prestations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.prestation-item {
  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;
}
.prestation-item:hover { border-color: var(--primary); background: #eff6ff; }
.prestation-item::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }

/* =====================================================
   REGIONS / DEPTS GRID
   ===================================================== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.region-card {
  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;
}
.region-card::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;
}
.region-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  padding-right: 38px;
}
.region-card:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.region-card strong { font-size: .95rem; font-weight: 700; }
.region-card span { font-size: .8rem; color: var(--gray); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  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;
}
.cta-band::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;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
  letter-spacing: -.025em;
}
.cta-band 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); }
}
.cta-band .btn-primary,
.hero .btn-primary {
  animation: pulse-cta 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
}
.cta-band .btn-primary:hover,
.hero .btn-primary:hover {
  animation: none;
}

/* =====================================================
   MAP SECTION
   ===================================================== */
.map-section { background: var(--light); padding: 60px 24px; }
.map-header { text-align: center; margin-bottom: 26px; }
.map-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.015em;
}
.map-header 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
   ===================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 72px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.25rem; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.75; }
.footer-col 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);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  max-width: 1200px;
  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;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

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

/* =====================================================
   STATS BAND (homepage)
   ===================================================== */
.stats-band {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 60%, #3b82f6 100%);
  padding: 36px 24px;
  color: var(--white);
}
.stats-band-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-block {
  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;
}
.stat-block:last-child { border-right: none; }

/* =====================================================
   ARTISANS LOCAUX
   ===================================================== */
.artisans-section { background: var(--surface); }
.artisans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.artisan-card {
  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;
}
.artisan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.artisan-header { display: flex; align-items: center; gap: 14px; }
.artisan-icon {
  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;
}
.artisan-nom { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.artisan-activite { font-size: .78rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.artisan-adresse { font-size: .82rem; color: var(--gray); }
.btn-sm { padding: 8px 18px; font-size: .85rem; margin-top: 4px; align-self: flex-start; }

/* =====================================================
   CITY STATS
   ===================================================== */
.city-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 0;
  justify-content: center;
}
.stat-chip {
  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
   ===================================================== */
.page-404 { text-align: center; padding: 120px 24px; }
.page-404 h1 { font-size: 6rem; color: var(--border); margin-bottom: 10px; font-weight: 800; }
.page-404 h2 { font-size: 1.5rem; margin-bottom: 16px; }
.page-404 p  { color: var(--gray); margin-bottom: 30px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .info-box { position: static; }
}
@media (max-width: 640px) {
  .stats-band-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 14px 16px; }
  .stat-block:last-child { border-bottom: none; }
  .trust-badges-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .header-phone { display: none; }
  .hero { padding: 60px 16px 80px; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 50px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-badges { padding: 24px 16px 36px; }
  #city-map { height: 280px; }
}
