/* ============================================================
   desamiantage-nantes.fr — design system
   Palette : bleu ardoise (sérieux, réglementaire) + orange sécurité (CTA)
   ============================================================ */
:root {
  --primary: #0e3a5d;
  --primary-dark: #0a2c47;
  --accent: #e8590c;
  --accent-dark: #c74a08;
  --dark: #12212f;
  --text: #22303c;
  --muted: #5c6b7a;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --border: #dfe7ee;
  --success: #2b8a3e;
  --star: #f5a623;
  --primary-color: #0e3a5d; /* utilisé par la popup exit-intent */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--dark); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; }
section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-intro { max-width: 760px; color: var(--muted); margin-bottom: 2rem; }

/* --- Boutons --- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); }

/* --- Top bar --- */
.topbar {
  background: var(--primary-dark);
  color: #cfdae4;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }

/* --- Header --- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(18, 33, 47, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo { font-size: 1.15rem; font-weight: 800; color: var(--dark); text-decoration: none; line-height: 1.1; }
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
nav.main-nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
nav.main-nav > a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
nav.main-nav > a:hover { color: var(--accent); }
.nav-phone { color: var(--primary); font-weight: 800; text-decoration: none; white-space: nowrap; }
.header-cta { white-space: nowrap; padding: 10px 20px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--dark); }

/* --- Dropdown --- */
.dropdown { position: relative; }
.dropdown > a::after { content: " ▾"; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 33, 47, 0.12);
  padding: 8px 0;
  min-width: 260px;
  z-index: 50;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--accent); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #14507e 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.hero p.intro { color: #d7e2ec; font-size: 1.08rem; margin-bottom: 1.5rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-phone { color: #fff; font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.hero-phone small { display: block; font-weight: 400; font-size: 0.78rem; color: #b8c9d8; }
.hero-badges { display: flex; gap: 10px; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-badges span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 13px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.hero-card h2 { font-size: 1.2rem; margin-bottom: 4px; }
.hero-card p.sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }

/* --- Bande réassurance --- */
.trust-band { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-band .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.35rem; color: var(--primary); }
.trust-item small { color: var(--muted); font-size: 0.85rem; }

/* --- Avis --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.review .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 8px; font-size: 0.95rem; }
.review p { font-size: 0.94rem; margin-bottom: 12px; }
.review footer { font-size: 0.83rem; color: var(--muted); }
.rating-summary { display: flex; align-items: center; gap: 12px; margin-bottom: 1.6rem; flex-wrap: wrap; }
.rating-summary .note { font-size: 2rem; font-weight: 800; color: var(--dark); }
.rating-summary .stars { color: var(--star); font-size: 1.2rem; letter-spacing: 3px; }

/* --- Prestations --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.service-card:hover { box-shadow: 0 10px 28px rgba(18, 33, 47, 0.1); transform: translateY(-2px); }
.service-card .icon { font-size: 1.8rem; }
.service-card a { font-weight: 700; text-decoration: none; color: var(--primary); }
.service-card a:hover { color: var(--accent); }
.service-card p { font-size: 0.92rem; color: var(--muted); }

/* --- Tableau de prix --- */
.price-table-wrap { overflow-x: auto; }
table.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.price-table th { background: var(--primary); color: #fff; text-align: left; padding: 13px 16px; font-size: 0.92rem; }
.price-table td { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.95rem; }
.price-table tr:nth-child(even) td { background: var(--bg-alt); }
.price-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

/* --- Étapes / process --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* --- Réalisations --- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.project {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.project .thumb {
  height: 170px;
  background: linear-gradient(135deg, #23425f, #38678f);
  color: #cfdce8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.project .body { padding: 18px; }
.project .body h3 { font-size: 1rem; margin-bottom: 6px; }
.project .body p { font-size: 0.88rem; color: var(--muted); }
.project .loc { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- Zone d'intervention --- */
.cities-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2rem; }
.cities-list a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}
.cities-list a:hover { border-color: var(--accent); color: var(--accent); }

/* --- FAQ --- */
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 18px;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 14px; font-size: 1.3rem; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 18px 16px; color: var(--muted); font-size: 0.95rem; }

/* --- CTA band --- */
.cta-band { background: var(--primary); color: #fff; text-align: center; padding: 46px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9d7e2; margin-bottom: 1.4rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info ul { list-style: none; }
.contact-info li { margin-bottom: 14px; font-size: 0.98rem; }
.contact-info li strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.contact-info a { color: var(--primary); font-weight: 700; text-decoration: none; }
form.lead-form { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; box-shadow: 0 10px 30px rgba(18,33,47,0.07); }
.lead-form label { display: block; font-size: 0.88rem; font-weight: 600; margin: 12px 0 5px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.98rem;
  font-family: inherit;
  background: #fdfdfd;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
.lead-form button { width: 100%; margin-top: 16px; }
.lead-form .rgpd { font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.hp-field { display: none !important; }

/* --- Breadcrumb --- */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 14px 0 0; }
.breadcrumb a { color: var(--muted); }

/* --- Article / contenu --- */
.article-body { max-width: 780px; }
.article-body h2 { margin-top: 2.2rem; }
.article-body h3 { margin-top: 1.4rem; margin-bottom: 0.5rem; }
.article-body p, .article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
.article-body th, .article-body td { border: 1px solid var(--border); padding: 9px 12px; font-size: 0.93rem; text-align: left; }
.article-body th { background: var(--bg-alt); }
.article-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.encart {
  background: #fef4ec;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 1.4rem 0;
  font-size: 0.95rem;
}

/* --- Blog cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.blog-card .tag { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h3 { margin: 8px 0; }
.blog-card h3 a { text-decoration: none; color: var(--dark); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.9rem; color: var(--muted); }

/* --- Footer --- */
footer.site-footer { background: var(--dark); color: #aebcc9; padding: 50px 0 24px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 30px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: #aebcc9; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #24384a; padding-top: 18px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* --- Sticky mobile call bar --- */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(18, 33, 47, 0.12);
}
.mobile-callbar a { flex: 1; text-align: center; padding: 12px; font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(18,33,47,0.12);
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .dropdown-menu { position: static; display: block; border: none; box-shadow: none; padding: 4px 0 0 12px; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 64px; }
  section { padding: 42px 0; }
}

/* --- Cartes prestations enrichies (image + prix + checklist) --- */
.presta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.presta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.presta-card:hover { box-shadow: 0 10px 28px rgba(18, 33, 47, 0.12); transform: translateY(-2px); }
.presta-visual { position: relative; background: #e8f0f7; }
.presta-visual img { width: 100%; height: auto; display: block; }
.price-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(232, 89, 12, 0.35);
}
.presta-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.presta-body h3 { font-size: 1.08rem; }
.presta-body h3 a { color: var(--dark); text-decoration: none; }
.presta-body h3 a:hover { color: var(--accent); }
.presta-body > p { font-size: 0.92rem; color: var(--muted); }
.service-includes { list-style: none; padding: 0; margin-top: auto; display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; }
.service-includes li { padding-left: 22px; position: relative; }
.service-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* --- Déroulement des avis --- */
.review-more { display: none; }
.reviews-grid.expanded .review-more { display: block; }
.reviews-toggle { text-align: center; margin-top: 1.4rem; }

/* --- Bloc "Pourquoi nous choisir" --- */
.why-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; margin-top: 1.5rem; }
.why-item { display: flex; gap: 16px; margin-bottom: 24px; }
.why-item:last-child { margin-bottom: 0; }
.why-item .why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(232, 89, 12, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { font-size: 0.93rem; color: var(--muted); }
.why-card {
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 38px 32px;
  text-align: center;
  aspect-ratio: 1 / 1;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 18px 44px rgba(14, 58, 93, 0.28);
}
.why-card .stat strong { display: block; font-size: 1.9rem; line-height: 1.15; color: #fff; }
.why-card .stat small { color: #b8cbdc; font-size: 0.88rem; }
.why-card .btn { margin-top: 6px; font-size: 1.05rem; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-card { aspect-ratio: auto; padding: 30px 24px; }
}

/* --- Zone d'intervention : texte + carte --- */
.zone-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: stretch; margin-top: 1.4rem; }
.zone-map { position: relative; }
.zone-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 33, 47, 0.12);
  display: block;
}
@media (max-width: 900px) {
  .zone-grid { grid-template-columns: 1fr; }
  .zone-map iframe { min-height: 300px; }
}

/* --- Bloc texte SEO : en haut du DOM (crawl), affiché en bas (au-dessus du footer) --- */
main { display: flex; flex-direction: column; }
main > .seo-block { order: 99; }

/* --- Accueil : titres, intros et CTA centrés --- */
.centered main h2 { text-align: center; }
.centered .section-intro { margin-left: auto; margin-right: auto; text-align: center; }
.centered main p:has(> .btn) { text-align: center; }
.centered .rating-summary { justify-content: center; }
.centered .cities-list { justify-content: center; }
.centered .trust-band .container { text-align: center; }
.centered .seo-block .article-body { margin: 0 auto; }
.centered .hero-card h2 { text-align: left; }
.centered .hero h1, .centered .hero p.intro { text-align: left; }

/* --- Simulateur de prix --- */
.sim-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: stretch; margin-top: 1.6rem; }
.sim-form { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; text-align: left; }
.sim-form label { display: block; font-size: 0.88rem; font-weight: 600; margin: 14px 0 5px; }
.sim-form label:first-child { margin-top: 0; }
.sim-form select, .sim-form input {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.98rem; font-family: inherit; background: #fdfdfd;
}
.sim-result {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(14, 58, 93, 0.25);
}
.sim-result .sim-range { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; line-height: 1.2; }
.sim-result .sim-label { color: #b8cbdc; font-size: 0.9rem; }
.sim-result .sim-note { color: #9db4c8; font-size: 0.78rem; }
@media (max-width: 900px) { .sim-grid { grid-template-columns: 1fr; } }

/* --- Réalisation unique détaillée (pages villes) --- */
.project-featured {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1.4rem;
}
.project-featured .thumb {
  background: linear-gradient(135deg, #23425f, #38678f);
  color: #cfdce8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  min-height: 240px;
}
.project-featured .body { padding: 26px 30px; }
.project-featured .body h3 { font-size: 1.2rem; margin: 4px 0 2px; }
.project-featured .loc { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; }
.project-featured .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.project-featured .meta span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.project-featured p { font-size: 0.95rem; margin-bottom: 0.85rem; }
.project-featured p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .project-featured { grid-template-columns: 1fr; }
  .project-featured .thumb { min-height: 150px; }
}

/* --- Hero pages villes : variante claire et centrée (différente de l'accueil) --- */
.hero-ville {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
  text-align: center;
}
.hero-ville h1 {
  color: var(--dark);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  max-width: 860px;
  margin: 0 auto 1rem;
}
.hero-ville p.intro {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 740px;
  margin: 0 auto 1.6rem;
}
.hero-ville .hero-ctas { justify-content: center; }
.hero-ville .hero-phone { color: var(--primary); }
.hero-ville .hero-phone small { color: var(--muted); }
.hero-ville .hero-badges { justify-content: center; margin-top: 1.5rem; }
.hero-ville .hero-badges span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
}

/* --- Cartes articles avec image mise en avant --- */
.blog-card { padding: 0; overflow: hidden; }
.blog-card img { width: 100%; height: auto; display: block; background: #e8f0f7; }
.blog-card .blog-body { padding: 20px 22px; }

/* --- Hero pages prestations : sombre, 2 colonnes, illustration (pas de formulaire) --- */
.hero-presta {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 70%);
  color: #fff;
  padding: 60px 0 54px;
}
.hero-presta .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.hero-presta h1 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 1rem; }
.hero-presta p.intro { color: #d7e2ec; font-size: 1.06rem; margin-bottom: 1.5rem; }
.hero-presta .hero-phone { color: #fff; }
.hero-presta .hero-phone small { color: #b8c9d8; }
.hero-presta .visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
}
.hero-presta .visual img { width: 100%; height: auto; border-radius: 10px; display: block; }
@media (max-width: 900px) {
  .hero-presta .container { grid-template-columns: 1fr; }
  .hero-presta .visual { max-width: 420px; }
}

/* --- Pages prestations : texte libre et CTA centrés --- */
.page-presta .hero-presta .container > div:first-child { text-align: center; }
.page-presta .hero-presta .hero-ctas { justify-content: center; }
.page-presta .hero-presta .hero-badges { justify-content: center; }
.page-presta main section > .container > p:not(.rgpd) {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-presta .encart { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }

/* --- Blocs aides financières --- */
.aides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 1.6rem; text-align: left; }
.aide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--success);
  border-radius: 12px;
  padding: 24px;
}
.aide-card .aide-icon { font-size: 1.7rem; margin-bottom: 10px; }
.aide-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.aide-card .aide-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--success); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.aide-card p { font-size: 0.92rem; color: var(--muted); text-align: left; }
