/* ─── MINIMAL VARIANT — laadpaal-nl ──────────────────────────────────────── */
/* Compact hero, no image, ghost buttons, flat cards, DM Sans light weights */
/* Electric blue + bright green, lots of whitespace */

:root {
  --color-primary:     #0284c7;
  --color-primary-dk:  #0369a1;
  --color-primary-lt:  #e0f2fe;
  --color-cta:         #e11d48;
  --color-cta-hover:   #be123c;
  --color-dark:        #0c4a6e;
  --color-link:        #0284c7;
}

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; color: #374151; background: #fff; font-weight: 300; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 1.5rem; font-weight: 500; color: var(--color-dark); text-align: center; margin-bottom: 10px; letter-spacing: -.01em; }
.section-subtitle { text-align: center; color: #9ca3af; font-size: .93rem; margin-bottom: 36px; font-weight: 300; }
.section-title::after { content: ''; display: block; width: 40px; height: 2px; background: var(--color-primary); margin: 10px auto 0; }

/* ─── Top bar — minimal single line ────────────────────────────────── */
.top-bar { background: #f9fafb; color: #6b7280; font-size: .78rem; padding: 5px 0; border-bottom: 1px solid #f3f4f6; }
.top-bar .container { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.top-bar-label { opacity: .6; }
.top-bar-rating { color: var(--color-cta); font-weight: 500; margin-right: auto; }
.top-bar-email { color: var(--color-primary); font-weight: 500; }
.top-bar-email:hover { color: var(--color-primary-dk); text-decoration: none; }

/* ─── Navbar — ultra-simple: logo + 3 links + CTA ──────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: none;
}
.navbar-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.navbar-logo img { height: 40px; width: auto; display: block; }
.navbar-menu {
  display: flex; align-items: center; gap: 0;
  list-style: none; margin: 0; padding: 0;
}
.navbar-menu li a {
  display: block; padding: 8px 14px;
  font-size: .85rem; font-weight: 400; color: #6b7280;
  white-space: nowrap; transition: color .15s; text-decoration: none;
}
.navbar-menu li a:hover { color: var(--color-primary); background: transparent; }
.navbar-menu li.nav-cta a {
  background: transparent; color: var(--color-cta); font-weight: 500;
  padding: 8px 20px; border: 2px solid var(--color-cta); border-radius: 0; margin-left: 8px;
}
.navbar-menu li.nav-cta a:hover { background: var(--color-cta); color: #fff; }
.navbar-burger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 32px; height: 32px; padding: 4px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.navbar-burger span { display: block; height: 1.5px; background: #6b7280; transition: transform .25s ease, opacity .25s ease; transform-origin: center; }
.navbar-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (max-width: 860px) {
  .navbar-burger { display: flex; }
  .navbar-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 8px 16px; border-bottom: 1px solid #f3f4f6; }
  .navbar-menu.open { display: flex; }
  .navbar-menu li a { padding: 12px 14px; font-size: .93rem; }
  .navbar-menu li.nav-cta a { margin-left: 0; text-align: center; margin-top: 8px; }
}

/* ─── Hero — compact, no image, solid color block ──────────────────── */
.site-header {
  position: relative; color: #fff; padding: 56px 0 48px; text-align: center;
  background: var(--color-primary);
  overflow: hidden;
}
.site-header::before { display: none; }
.site-header .container { position: relative; z-index: 1; }
.site-header h1 { font-size: 2rem; font-weight: 500; margin-bottom: 14px; line-height: 1.25; max-width: 700px; margin-left: auto; margin-right: auto; letter-spacing: -.02em; }
.site-header .intro { font-size: 1rem; opacity: .8; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; font-weight: 300; }
.breadcrumb { font-size: .82rem; opacity: .6; margin-bottom: 16px; }
.breadcrumb a { color: #fff; opacity: .75; }
.breadcrumb a:hover { opacity: 1; text-decoration: none; }
.hero-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hero-badge { background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.9); font-size: .78rem; padding: 4px 14px; }

/* ─── CTA Button — ghost (transparent + border) or filled ──────────── */
.btn-cta {
  display: inline-block;
  background: transparent; color: #fff !important;
  border: 2px solid #fff;
  font-weight: 500; font-size: .95rem; padding: 13px 32px;
  border-radius: 0; transition: all .2s; white-space: nowrap;
}
.btn-cta:hover { background: #fff; color: var(--color-primary) !important; text-decoration: none; }

/* In non-hero contexts, use green filled */
.devis-section .btn-cta,
.temoignages-section .btn-cta,
.popup-box .btn-cta,
.artisan-list-actions .btn-cta { background: var(--color-cta); color: #fff !important; border-color: var(--color-cta); }
.devis-section .btn-cta:hover,
.temoignages-section .btn-cta:hover,
.popup-box .btn-cta:hover { background: var(--color-cta-hover); border-color: var(--color-cta-hover); color: #fff !important; }

/* ─── Arguments ────────────────────────────────────────────────────── */
.arguments-section { background: #fff; padding: 16px 0; border-bottom: 1px solid #f3f4f6; }
.arguments { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.argument { background: transparent; border: none; padding: 8px 16px; font-size: .85rem; color: #6b7280; font-weight: 400; }
.argument::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--color-cta); border-radius: 50%; margin-right: 8px; vertical-align: middle; }

/* ─── Stats — inline badges ────────────────────────────────────────── */
.stats-section { background: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #f3f4f6; }
.stat-card { text-align: center; padding: 28px 16px; border: none; border-radius: 0; background: #fff; transition: background .2s; }
.stat-card:hover { background: #f9fafb; }
.stat-chiffre { font-size: 2.4rem; font-weight: 500; color: var(--color-primary); line-height: 1; letter-spacing: -.02em; }
.stat-label { font-size: .72rem; color: #9ca3af; margin-top: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 400; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Types services ───────────────────────────────────────────────── */
.types-section { padding: 56px 0; background: #fff; }
.types-section h2 { font-size: 1.5rem; font-weight: 500; color: var(--color-dark); margin-bottom: 8px; text-align: center; }
.types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1px; background: #f3f4f6; }
.type-card {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: none; border-radius: 0;
  padding: 24px 20px; text-decoration: none; color: #374151;
  transition: background .15s;
}
.type-card:hover { background: #f9fafb; text-decoration: none; }
.type-card-label { font-size: 1rem; font-weight: 500; color: var(--color-dark); }
.type-card-cta { font-size: .82rem; font-weight: 400; color: var(--color-primary); margin-top: auto; }
@media (max-width: 500px) { .types-grid { grid-template-columns: 1fr; } }

/* ─── Devis form ───────────────────────────────────────────────────── */
.devis-section { padding: 56px 0; background: #f9fafb; border-top: 1px solid #f3f4f6; }
.devis-section h2 { margin-bottom: 6px; text-align: center; color: var(--color-dark); font-size: 1.4rem; font-weight: 500; }

/* ─── Types prestations ────────────────────────────────────────────── */
.types-prestations-section { padding: 56px 0; background: #fff; }
.types-prestations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: #f3f4f6; margin-top: 24px; }
.type-prestation-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border-radius: 0; padding: 28px 16px 20px; border: none; transition: background .15s; text-decoration: none; color: inherit; }
.type-prestation-card:hover { background: #f9fafb; }
.type-prestation-card h3 { font-size: .93rem; color: var(--color-dark); margin: 0 0 12px; font-weight: 500; }
.type-prestation-cta { font-size: .8rem; color: var(--color-primary); font-weight: 400; margin-top: auto; }
@media (max-width: 900px) { .types-prestations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .types-prestations-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Services ─────────────────────────────────────────────────────── */
.services-section { padding: 56px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: transparent; border-radius: 0; padding: 0; border-top: none; }
.service-card h3 { font-size: 1rem; color: var(--color-dark); margin-bottom: 8px; font-weight: 500; }
.service-card .service-desc { font-size: .87rem; color: #9ca3af; margin-bottom: 14px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { font-size: .86rem; color: #6b7280; padding-left: 16px; position: relative; line-height: 1.5; }
.service-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--color-primary); font-weight: 300; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── CTA Center ───────────────────────────────────────────────────── */
.cta-center { text-align: center; margin-top: 32px; }

/* ─── Testimonials ─────────────────────────────────────────────────── */
.temoignages-section { padding: 56px 0; background: #f9fafb; }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.temoignage-card { background: transparent; border-radius: 0; padding: 0; border: none; }
.temoignage-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.temoignage-avatar span { color: #fff; font-weight: 500; font-size: .95rem; }
.temoignage-stars { color: var(--color-cta); font-size: .9rem; letter-spacing: 1px; margin-bottom: 10px; }
.temoignage-texte { font-size: .9rem; color: #6b7280; line-height: 1.7; font-style: normal; margin-bottom: 12px; font-weight: 300; }
.temoignage-auteur { font-size: .82rem; font-weight: 500; color: var(--color-dark); }
@media (max-width: 768px) { .temoignages-grid { grid-template-columns: 1fr; } }

/* ─── Local data ───────────────────────────────────────────────────── */
.local-data-section { background: #f9fafb; padding: 24px 0; }
.local-data-section .local-data-title { text-align: center; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: #9ca3af; font-weight: 400; margin-bottom: 14px; }
.local-data-grid { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.local-data-card { background: transparent; border-radius: 0; padding: 16px 28px; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 120px; border-right: 1px solid #e5e7eb; }
.local-data-card:last-child { border-right: none; }
.local-data-chiffre { font-size: 1.3rem; font-weight: 500; color: var(--color-primary); }
.local-data-label { font-size: .7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; font-weight: 400; }

/* ─── Content ──────────────────────────────────────────────────────── */
.content-section { padding: 48px 0; background: #fff; }
.content-text { max-width: 700px; }
.content-text p { color: #6b7280; line-height: 1.78; margin-bottom: 16px; font-weight: 300; }
.content-text h2 { font-size: 1.3rem; color: var(--color-dark); margin: 32px 0 14px; font-weight: 500; }

/* ─── Prix ─────────────────────────────────────────────────────────── */
.prix-section { padding: 56px 0; background: #fff; }
.prix-table { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.prix-row { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 12px; align-items: center; padding: 16px 0; border-bottom: 1px solid #f3f4f6; }
.prix-label { font-weight: 500; color: var(--color-dark); font-size: .93rem; }
.prix-fourchette { font-weight: 500; color: var(--color-primary); font-size: 1.02rem; white-space: nowrap; }
.prix-detail { font-size: .85rem; color: #9ca3af; font-weight: 300; }
.prix-note { text-align: center; font-size: .85rem; color: #9ca3af; margin-top: 16px; }
@media (max-width: 600px) { .prix-row { grid-template-columns: 1fr; gap: 2px; } }

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq-section { padding: 56px 0; background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.faq-item { border: none; border-bottom: 1px solid #f3f4f6; border-radius: 0; overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { cursor: pointer; padding: 18px 0; font-weight: 500; font-size: .93rem; color: var(--color-dark); background: transparent; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--color-primary); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--color-primary); }
.faq-item p { padding: 0 0 18px; margin: 0; font-size: .9rem; line-height: 1.75; color: #6b7280; font-weight: 300; }

/* ─── Maillage ─────────────────────────────────────────────────────── */
.maillage-section { padding: 40px 0; background: #f9fafb; }
.maillage-section h2 { font-size: 1.1rem; color: var(--color-dark); margin: 0 0 16px; font-weight: 500; }
.maillage-section h3 { font-size: .82rem; color: #9ca3af; margin: 24px 0 10px; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; }
.maillage-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 12px; }
.maillage-list li a { font-size: .87rem; color: var(--color-primary); padding: 4px 0; font-weight: 400; }
.maillage-list li a:hover { color: var(--color-primary-dk); }
.maillage-small li a { font-size: .82rem; color: #9ca3af; }
.dist-badge { display: inline-block; background: #f3f4f6; color: #6b7280; font-size: .72rem; border-radius: 0; padding: 1px 6px; margin-left: 4px; }
.back-link { margin-top: 20px; font-size: .88rem; }
.maillage-top { border-top: none; }

/* ─── Breadcrumb ───────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: .85rem; margin-bottom: 14px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.bc-sep { color: rgba(255,255,255,.4); font-size: .9rem; }
.bc-current { color: rgba(255,255,255,.9); font-weight: 400; }

/* ─── City cover ───────────────────────────────────────────────────── */
.article-cover, .city-cover { margin: 0; padding: 0; line-height: 0; }
.article-cover img, .city-cover img { width: 100%; height: auto; max-height: 380px; object-fit: cover; display: block; }

/* ─── Dept/City selectors ──────────────────────────────────────────── */
.dept-selector-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1px; background: #f3f4f6; margin-bottom: 32px; }
.dept-selector-card { display: flex; align-items: center; gap: 14px; background: #fff; border: none; border-radius: 0; padding: 16px 18px; text-decoration: none; color: #374151; transition: background .15s; }
.dept-selector-card:hover { background: #f9fafb; text-decoration: none; }
.dept-badge { flex-shrink: 0; width: 36px; height: 36px; background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 500; }
.dept-selector-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.dept-selector-nom { font-weight: 500; font-size: .93rem; }
.dept-selector-sub { font-size: .8rem; color: #9ca3af; }
.dept-selector-arrow { font-size: 1.2rem; color: #d1d5db; }
.dept-selector-card:hover .dept-selector-arrow { color: var(--color-primary); }

.city-selector-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0; margin-bottom: 32px; }
.city-selector-card { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; text-decoration: none; color: #374151; transition: background .1s; }
.city-selector-card:hover { background: #f9fafb; text-decoration: none; }
.city-dot { flex-shrink: 0; width: 6px; height: 6px; background: var(--color-primary); border-radius: 0; margin-top: 6px; }
.city-selector-info { display: flex; flex-direction: column; gap: 1px; }
.city-selector-nom { font-size: .88rem; font-weight: 400; }
.city-selector-dept { font-size: .78rem; color: #9ca3af; }

/* ─── Artisans ─────────────────────────────────────────────────────── */
.artisans-section { padding: 48px 0; background: #fff; }
.artisans-section h2 { font-size: 1.3rem; margin-bottom: 24px; color: var(--color-dark); font-weight: 500; }
.artisans-list { display: flex; flex-direction: column; gap: 0; }
.artisan-list-card { background: #fff; border: none; border-bottom: 1px solid #f3f4f6; border-radius: 0; padding: 20px 0; }
.artisan-list-card:last-child { border-bottom: none; }
.artisan-list-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.artisan-list-dot { flex-shrink: 0; width: 6px; height: 6px; background: var(--color-cta); border-radius: 0; }
.artisan-list-nom { font-size: 1rem; color: var(--color-dark); font-weight: 500; }
.artisan-list-desc { font-size: .87rem; color: #9ca3af; margin-bottom: 10px; font-weight: 300; }
.artisan-list-badges { display: flex; gap: 12px; margin-bottom: 12px; }
.artisan-badge { font-size: .75rem; color: #6b7280; font-weight: 400; text-transform: uppercase; letter-spacing: .04em; }
.artisan-badge-rge { color: var(--color-primary); background: transparent; border: 1px solid var(--color-primary); padding: 1px 8px; font-size: .72rem; }
.artisan-list-actions { display: flex; gap: 10px; }
.btn-devis-artisan { display: inline-block; padding: 8px 20px; background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); font-weight: 500; font-size: .87rem; text-decoration: none; transition: all .2s; }
.btn-devis-artisan:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

/* ─── Ville en bref ────────────────────────────────────────────────── */
.ville-bref-section { padding: 48px 0; background: #fff; }
.ville-bref-section h2 { font-size: 1.5rem; font-weight: 500; text-align: center; color: var(--color-dark); margin-bottom: 6px; }
.ville-bref-subtitle { text-align: center; color: #9ca3af; margin-bottom: 32px; font-weight: 300; }
.ville-bref-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.ville-map { height: 320px; overflow: hidden; border: 1px solid #f3f4f6; }
.ville-bref-infos { display: flex; flex-direction: column; gap: 0; }
.ville-info-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.ville-info-row:last-child { border-bottom: none; }
.ville-info-icon { font-size: 1rem; width: 24px; text-align: center; opacity: .5; }
.ville-info-label { flex: 1; color: #9ca3af; font-size: .9rem; font-weight: 300; }
.ville-info-val { color: var(--color-dark); font-size: .93rem; font-weight: 500; }
.ville-proches { padding: 16px 0; }
.ville-proches-label { font-size: .82rem; font-weight: 400; color: #9ca3af; display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.ville-proches-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ville-chip { background: transparent; color: var(--color-primary); padding: 4px 12px; border: 1px solid #e5e7eb; font-size: .8rem; text-decoration: none; transition: all .15s; }
.ville-chip:hover { border-color: var(--color-primary); background: var(--color-primary-lt); text-decoration: none; }
@media (max-width: 768px) { .ville-bref-grid { grid-template-columns: 1fr; } .ville-map { height: 200px; } }

/* ─── Climat ───────────────────────────────────────────────────────── */
.climat-section { padding: 24px 0; background: #f9fafb; }

/* ─── Avantages ────────────────────────────────────────────────────── */
.avantages-section { padding: 56px 0; background: #f9fafb; }
.avantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.avantages-grid h2 { font-size: 1.5rem; font-weight: 500; color: var(--color-dark); margin-bottom: 24px; }
.avantages-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.avantages-list li { display: flex; align-items: center; gap: 12px; font-size: .97rem; color: #6b7280; font-weight: 300; }
.avantages-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 2px; background: var(--color-cta); }
.avantages-img { overflow: hidden; }
.avantages-img img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 768px) { .avantages-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ─── Blog ─────────────────────────────────────────────────────────── */
.blog-section { padding: 48px 0; background: #f9fafb; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card { background: #fff; padding: 24px; border-top: none; border-bottom: 1px solid #f3f4f6; }
.blog-card-title { font-size: 1rem; margin-bottom: 8px; font-weight: 500; }
.blog-card-title a { color: var(--color-dark); }
.blog-card-date { display: block; font-size: .75rem; color: #d1d5db; margin-bottom: 6px; }
.blog-card-excerpt { font-size: .87rem; color: #9ca3af; line-height: 1.6; margin-bottom: 12px; font-weight: 300; }
.blog-card-link { font-size: .82rem; font-weight: 400; color: var(--color-primary); }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-home-section { padding: 48px 0; background: #f9fafb; }

/* ─── Article ──────────────────────────────────────────────────────── */
.article-section { padding: 40px 0; background: #fff; }
.article-section h2 { font-size: 1.3rem; color: var(--color-dark); margin: 28px 0 12px; font-weight: 500; }
.article-section h3 { font-size: 1.05rem; color: var(--color-primary); margin: 22px 0 8px; font-weight: 400; }
.article-section p { color: #6b7280; line-height: 1.75; margin-bottom: 14px; max-width: 700px; font-weight: 300; }
.article-section table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem; }
.article-section th { background: var(--color-primary); color: #fff; padding: 10px 12px; text-align: left; font-weight: 400; }
.article-section td { padding: 9px 12px; border-bottom: 1px solid #f3f4f6; }
.article-section tr:nth-child(even) td { background: #f9fafb; }
.article-date { display: block; font-size: .82rem; color: #d1d5db; margin: 6px 0 14px; }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn-secondary { display: inline-block; padding: 10px 24px; background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); font-weight: 500; font-size: .93rem; text-decoration: none; transition: all .2s; }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-outline { background: transparent; border: 1px solid #e5e7eb; color: #6b7280; padding: 10px 20px; cursor: pointer; font-size: .9rem; }
.local-cta-box { background: #f9fafb; border-left: 2px solid var(--color-primary); padding: 20px 24px; margin-bottom: 24px; }
.local-cta-box p { margin-bottom: 14px; color: #6b7280; font-weight: 300; }

/* ─── Search ───────────────────────────────────────────────────────── */
.navbar-search-form { display:flex; align-items:center; margin-left:16px; }
.navbar-search-form input[type="search"] {
  width:160px; padding:6px 12px 6px 32px; border:1px solid #e5e7eb; border-radius:0; font-size:.82rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 10px center;
  color:#374151; outline:none; transition:width .3s;
}
.navbar-search-form input[type="search"]:focus { width:220px; border-color: var(--color-primary); }
.navbar-search-form input[type="search"]::-webkit-search-cancel-button { -webkit-appearance:none; }
@media(max-width:900px){ .navbar-search-form { display:none; } }
.search-form-page { display:flex; gap:0; max-width:500px; margin:20px auto 0; }
.search-form-page input { flex:1; padding:12px 16px; border:1px solid #e5e7eb; font-size:1rem; }
.search-form-page button { padding:12px 20px; background:var(--color-primary); color:#fff; border:none; cursor:pointer; font-size:.93rem; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.site-footer { background: #111827; color: #6b7280; padding: 24px 0; text-align: center; font-size: .8rem; }
.site-footer a { color: #9ca3af; }
.site-footer a:hover { color: #fff; }

/* ─── Form ─────────────────────────────────────────────────────────── */
.vud-form, .bobex-form { background:#fff; border:1px solid #f3f4f6; border-radius:0; padding:28px; max-width:640px; margin:0 auto; }
.vud-step-title, .bobex-step-title { font-size:1.05rem; font-weight:500; color:var(--color-dark); margin-bottom:18px; }
.vud-row, .bobex-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:14px; }
.vud-group, .bobex-group { display:flex; flex-direction:column; gap:5px; }
.vud-group--full, .bobex-group--full { margin-bottom:14px; }
.vud-group label, .bobex-group label { font-size:.82rem; font-weight:400; color:#6b7280; text-transform:uppercase; letter-spacing:.04em; }
.vud-req, .bobex-req { color:var(--color-cta); }
.vud-group input, .vud-group select, .vud-group textarea,
.bobex-group input, .bobex-group select, .bobex-group textarea { border:1px solid #e5e7eb; border-radius:0; padding:10px 12px; font-size:.93rem; width:100%; background:#fff; transition:border-color .15s; font-weight:300; }
.vud-group input:focus, .vud-group select:focus, .vud-group textarea:focus,
.bobex-group input:focus, .bobex-group select:focus, .bobex-group textarea:focus { outline:none; border-color:var(--color-primary); }
.vud-group input[readonly], .bobex-group input[readonly] { background:#f9fafb; color:#9ca3af; }
.vud-group textarea, .bobex-group textarea { resize:vertical; min-height:80px; }
.vud-next, .bobex-next { display:block; margin:10px auto 0; background:var(--color-cta); border-color:var(--color-cta); color:#fff !important; }
.vud-actions, .bobex-actions { display:flex; gap:12px; align-items:center; justify-content:center; margin-top:10px; }
.vud-back, .bobex-back { background:transparent; border:1px solid #e5e7eb; color:#6b7280; padding:10px 20px; cursor:pointer; font-size:.87rem; }
.vud-rgpd, .bobex-rgpd { font-size:.73rem; color:#d1d5db; margin-bottom:12px; font-weight:300; }
.vud-errors, .bobex-errors { background:#fef2f2; border:1px solid #fca5a5; padding:14px 16px; margin-top:14px; }
.vud-errors p, .bobex-errors p { color:#dc2626; font-size:.87rem; margin:3px 0; }
.vud-confirm, .bobex-confirm { text-align:center; padding:36px 20px; }
.vud-confirm-icon, .bobex-confirm-icon { width:56px; height:56px; background:var(--color-cta); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 16px; }
.vud-confirm h3, .bobex-confirm h3 { font-size:1.2rem; color:var(--color-dark); margin-bottom:10px; font-weight:500; }
.vud-confirm p, .bobex-confirm p { color:#9ca3af; font-weight:300; }
.devis-subtitle { text-align:center; color:#9ca3af; margin-bottom:24px; font-size:.93rem; font-weight:300; }
@media(max-width:640px) { .vud-row, .bobex-row { grid-template-columns:1fr; } .vud-actions, .bobex-actions { flex-direction:column-reverse; } .vud-back, .bobex-back { width:100%; text-align:center; } }

/* ─── Popup ────────────────────────────────────────────────────────── */
.popup-overlay { display:none; position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,.4); align-items:center; justify-content:center; }
.popup-overlay.open { display:flex; }
.popup-box { background:#fff; padding:40px 32px; max-width:400px; width:90%; text-align:center; position:relative; box-shadow:0 20px 60px rgba(0,0,0,.15); animation:popIn .2s ease; }
@keyframes popIn { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
.popup-close { position:absolute; top:12px; right:14px; background:none; border:none; font-size:1.4rem; cursor:pointer; color:#d1d5db; }
.popup-close:hover { color:#374151; }
.popup-icon { font-size:2rem; margin-bottom:12px; }
.popup-box h3 { font-size:1.1rem; color:var(--color-dark); margin-bottom:8px; font-weight:500; }
.popup-box p { color:#9ca3af; font-size:.93rem; margin-bottom:18px; font-weight:300; }
.popup-box .btn-cta { display:inline-block; margin-bottom:12px; }
.popup-skip { display:block; font-size:.8rem; color:#d1d5db; cursor:pointer; text-decoration:underline; }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .site-header { padding: 36px 0 28px; }
  .site-header h1 { font-size: 1.5rem; }
  .site-header .intro { font-size: .93rem; }
  .arguments { flex-direction: column; }
  .dept-selector-grid { grid-template-columns: 1fr; }
  .city-selector-grid { grid-template-columns: 1fr; }
  .artisan-list-actions { flex-direction: column; }
  .btn-devis-artisan { text-align: center; }
  .types-grid { grid-template-columns: 1fr; }
}
