/* ============================================
   DADA Service - styles.css
   ============================================ */

:root {
  --c-blue: #082680;
  --c-blue-2: #17295a;
  --c-blue-dark: #051a5e;
  --c-green: #25d366;
  --c-green-dark: #019719;
  --c-text: #0b1320;
  --c-text-muted: #475569;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f7fc;
  --c-border: #e2e8f0;
  --c-border-strong: #cbd5e1;
  --c-warning: #f59e0b;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11,19,32,.06);
  --shadow-md: 0 6px 18px rgba(11,19,32,.08);
  --shadow-lg: 0 12px 32px rgba(11,19,32,.12);
  --container: 1180px;
  --gap: 24px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--c-text); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-family: var(--font-serif); }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); font-family: var(--font-serif); font-weight: 700; letter-spacing: 0; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

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

/* ============================================
   Boutons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .7rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, transform .05s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-blue);
  color: #fff;
}
.btn-primary:hover { background: var(--c-blue-dark); color: #fff; }

.btn-secondary {
  background: #fff;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-secondary:hover { background: var(--c-bg-soft); }

.btn-whatsapp {
  background: #0f7a38;
  color: #fff;
}
.btn-whatsapp:hover { background: #0a6b2f; color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover { background: var(--c-bg-soft); }

.btn-large { padding: .9rem 1.4rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; margin-bottom: .5rem; }

.mobile-sticky-cta {
  display: none;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-weight: 600;
  font-size: 1.1rem;
}
.brand:hover { text-decoration: none; }
.brand-logo-link { gap: 0; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-weight: 700;
}
.brand-name strong { color: var(--c-blue); }
.brand-logo {
  width: 86px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.primary-nav {
  display: flex;
  gap: 22px;
}
.primary-nav a {
  color: var(--c-text);
  font-size: .95rem;
}
.primary-nav a:hover { color: var(--c-blue); }

.header-cta { display: flex; gap: 8px; }

@media (max-width: 900px) {
  .site-header {
    box-shadow: 0 6px 18px rgba(11,19,32,.06);
  }
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 70px;
    gap: 6px 10px;
    padding: 6px 0;
  }
  .primary-nav {
    order: 3;
    display: flex;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 7px;
    overflow-x: auto;
    padding: 6px 0 2px;
    border-top: 1px solid var(--c-border);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav::-webkit-scrollbar { display: none; }
  .primary-nav > a,
  .primary-nav .nav-dropdown-btn {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--c-blue);
    font-size: .86rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(11,19,32,.04);
  }
}
@media (max-width: 600px) {
  .brand-logo {
    width: 70px;
    height: 48px;
  }
  .header-inner {
    gap: 5px 8px;
  }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn-whatsapp {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 850;
  }
  .primary-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }
  .primary-nav > a,
  .primary-nav .nav-dropdown-btn {
    width: 100%;
    justify-content: center;
    min-height: 31px;
    padding: 0 6px;
    font-size: .8rem;
  }
  .primary-nav .nav-dropdown-btn { gap: 4px; }
  .nav-dropdown-arrow {
    width: 11px;
    height: 11px;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-2) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.hero h1 { color: #fff; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  max-width: 52ch;
  margin-bottom: 20px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
/* Trust badges in hero */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.hero-trust-badges span {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .82rem;
}
.hero-trust-badges.hero-trust-dark span {
  background: var(--c-bg-soft);
  color: var(--c-text-muted);
  border-color: var(--c-border);
}
.hero-proof-panel {
  margin-top: 22px;
  max-width: 520px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,.11);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.hero-proof-panel strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.hero-proof-panel ul {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.hero-proof-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.9);
  font-size: .94rem;
}
.hero-proof-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #35c8ff;
}
.hero-proof-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}
.hero-proof-panel a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Form card in hero */
.hero-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: 0 12px 40px rgba(8,38,128,.18);
}
.hero-form-header {
  margin-bottom: 14px;
}
.hero-form-header strong {
  display: block;
  font-size: 1.05rem;
  color: var(--c-blue);
  margin-bottom: 2px;
}
.hero-form-header span {
  font-size: .82rem;
  color: var(--c-text-muted);
}

@media (max-width: 900px) {
  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 520px; }
  .hero-proof-panel { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero-form-wrap {
    padding: 18px 16px 16px;
  }
  .hero-form-header {
    margin-bottom: 10px;
  }
  .form-rapide .form-field {
    margin-bottom: .68em;
  }
  .form-rapide input,
  .form-rapide select,
  .form-rapide textarea {
    padding: .58rem .75rem;
  }
  .form-rapide textarea {
    min-height: 58px;
  }
  .hero-proof-panel {
    padding: 14px 16px;
  }
  .hero-proof-panel ul {
    gap: 4px;
    margin-bottom: 10px;
  }
  .hero-proof-panel li {
    font-size: .88rem;
  }
}

/* ---- Page-hero split layout ---- */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.page-hero-text { padding-top: 4px; }
.page-hero-split .hero-form-wrap {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1.5px solid var(--c-border);
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-split .hero-form-wrap { max-width: 520px; }
}

/* Hero des pages internes */
.page-hero {
  background: var(--c-bg-soft);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--c-border);
}
.page-eyebrow {
  display: inline-block;
  font-size: .85rem;
  color: var(--c-text-muted);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  margin-bottom: 12px;
}
.page-lead {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 62ch;
}
.prix-affiche {
  margin: 10px 0 18px;
  font-size: 1.1rem;
}
.prix-affiche strong { color: var(--c-blue); font-size: 1.25rem; }
.prix-affiche span { color: var(--c-text-muted); margin-left: 6px; }
.prix-affiche.big strong { font-size: 1.5rem; }
.prix-unite { color: var(--c-text-muted); margin-top: -8px; }
.prix-note { color: var(--c-text-muted); font-size: .9rem; }

/* ============================================
   Reassurance strip
   ============================================ */

.reassurance {
  background: var(--c-bg-soft);
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}
.reassurance-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reassurance-item strong {
  display: block;
  color: var(--c-blue);
  margin-bottom: 2px;
}
.reassurance-item span {
  display: block;
  color: var(--c-text-muted);
  font-size: .92rem;
}
@media (max-width: 800px) {
  .reassurance-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Client concerns / SEO intro
   ============================================ */

.client-needs-section {
  background: #fff;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--c-border);
}
.client-needs-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 34px;
  align-items: center;
}
.client-needs-copy .eyebrow {
  display: inline-block;
  color: var(--c-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.client-needs-copy h2 {
  max-width: 760px;
  margin-bottom: 12px;
}
.client-needs-copy p {
  color: var(--c-text-muted);
  max-width: 78ch;
  margin-bottom: 16px;
}
.client-needs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-needs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.client-need-card {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg-soft);
}
.client-need-card strong {
  display: block;
  color: var(--c-blue);
  margin-bottom: 8px;
}
.client-need-card span {
  display: block;
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.45;
}
.home-process-section {
  padding: 52px 0;
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.home-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 36px;
  align-items: center;
}
.home-process-copy p {
  max-width: 74ch;
  color: var(--c-text-muted);
  margin-bottom: 18px;
}
.home-process-steps {
  display: grid;
  gap: 12px;
}
.home-process-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
  padding: 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
}
.home-process-step span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--c-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}
.home-process-step strong {
  color: var(--c-blue);
}
.home-process-step p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: .92rem;
}
@media (max-width: 900px) {
  .section-heading-row {
    display: grid;
    gap: 14px;
  }
  .home-services-featured,
  .home-service-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-service-links-head {
    display: grid;
    gap: 4px;
  }
  .client-needs-inner {
    grid-template-columns: 1fr;
  }
  .home-process-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .client-needs-section {
    padding: 34px 0 38px;
  }
  .client-needs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .client-need-card {
    min-height: 0;
    padding: 12px;
  }
  .client-need-card strong {
    margin-bottom: 5px;
    font-size: .92rem;
  }
  .client-need-card span {
    font-size: .82rem;
    line-height: 1.35;
  }
  .home-process-section {
    padding: 38px 0;
  }
  .home-process-inner {
    gap: 22px;
  }
  .home-process-steps {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-process-steps::-webkit-scrollbar {
    display: none;
  }
  .home-process-step {
    flex: 0 0 min(82%, 310px);
    scroll-snap-align: start;
  }
}

/* ============================================
   Quick answer
   ============================================ */

.service-problems-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
}
.service-problems-heading {
  max-width: 900px;
  margin-bottom: 18px;
}
.service-problems-heading .eyebrow {
  display: inline-block;
  color: var(--c-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-problems-heading h2 {
  margin-bottom: 10px;
}
.service-problems-heading p {
  color: var(--c-text-muted);
  max-width: 86ch;
}
.service-problems-accordion {
  max-width: 980px;
  padding: 4px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}
.service-problem-detail {
  border-top: 1px solid var(--c-border);
  background: transparent;
}
.service-problem-detail:first-child { border-top: 0; }
.service-problem-detail:last-child {
  border-bottom: 1px solid var(--c-border);
}
.service-problem-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--c-blue);
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.service-problem-detail summary::-webkit-details-marker {
  display: none;
}
.service-problem-detail summary:hover span:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.summary-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--c-border);
  border-radius: 99px;
  background: var(--c-bg-soft);
  color: var(--c-blue);
  font-family: var(--font);
  font-size: 1.45rem;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.service-problem-detail[open] .summary-arrow {
  transform: rotate(90deg);
  background: var(--c-blue);
  color: #fff;
}
.service-problem-content {
  padding: 0 48px 16px 0;
}
.service-problem-content p {
  margin: 0 0 8px;
  color: var(--c-text-muted);
  font-size: .95rem;
  line-height: 1.55;
}
.service-problem-content .problem-answer {
  color: var(--c-text);
  font-weight: 650;
}
.service-problem-content strong {
  color: var(--c-text);
}
.service-problem-content .problem-action {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--c-green);
  border-radius: 6px;
  background: #f3fbf6;
  color: #124f2b;
  font-weight: 650;
}
.service-problem-content p:last-child {
  margin-bottom: 0;
}
.service-problems-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-problems-cta p {
  margin: 0;
  color: var(--c-text-muted);
}

.service-facts-strip {
  padding: 16px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.service-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.service-facts-grid div {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 6px 20px rgba(8,38,128,.045);
}
.service-facts-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--c-text-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-facts-grid strong {
  display: block;
  color: var(--c-blue);
  font-size: .94rem;
  line-height: 1.35;
}
@media (max-width: 800px) {
  .service-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-problem-detail summary {
    align-items: flex-start;
    font-size: 1.05rem;
  }
  .service-problem-content {
    padding-right: 0;
  }
  .service-problems-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .service-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .service-facts-grid div {
    min-height: 0;
    padding: 12px 12px;
  }
}

.quick-answer {
  background: #f5ede4;
  border-left: 4px solid var(--c-blue);
  padding: 18px 22px;
  margin: 32px auto;
  max-width: var(--container);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.quick-answer h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-blue); margin-bottom: .35em; }
.quick-answer p { margin: 0; color: var(--c-text); }

/* ============================================
   Sections generales
   ============================================ */

.section-sub {
  color: var(--c-text-muted);
  margin-top: -4px;
  margin-bottom: 24px;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--c-blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.section-heading-row > div {
  max-width: 760px;
}
.section-heading-row .section-sub {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .section-heading-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .section-heading-row > div {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .section-heading-row h2,
  .section-heading-row .section-sub {
    max-width: 100%;
  }
  .section-heading-row .btn {
    width: 100%;
    white-space: normal;
  }
}

.services-grid, .villes-grid, .other-services, .zones-strip, .ville-contexte, .service-detail, .faq, .cta-block {
  padding: 40px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}
.service-filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--c-border-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--c-blue-2);
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.service-filter:hover {
  border-color: var(--c-blue);
  transform: translateY(-1px);
}
.service-filter.is-active {
  border-color: var(--c-blue);
  background: var(--c-blue);
  color: #fff;
}
.service-card.is-hidden {
  display: none;
}

.home-services-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-service-links {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
}
.home-service-links-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border);
}
.home-service-links-head strong {
  color: var(--c-blue);
  font-size: 1.05rem;
}
.home-service-links-head span {
  max-width: 620px;
  color: var(--c-text-muted);
  font-size: .94rem;
}
.home-service-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-service-link-group h3 {
  margin-bottom: 8px;
  color: var(--c-text);
  font-size: .98rem;
}
.home-service-link-group div {
  display: grid;
  gap: 7px;
}
.home-service-link-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--c-text);
  font-size: .92rem;
  font-weight: 700;
}
.home-service-link-group a:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  text-decoration: none;
}
.home-service-link-group a span {
  flex: 0 0 auto;
  color: var(--c-blue);
  font-size: .78rem;
  font-weight: 800;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}
.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 18px 16px;
}
.service-card-body h3 { margin-top: 0; margin-bottom: 6px; min-height: 2.4em; }
.service-card-body .card-accroche { margin-bottom: 10px; flex: 1; }
.service-card-body .card-link { display: block; }
.service-category {
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--c-blue);
  background: #eef5ff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* Price badge on card image */
.card-img-wrap { position: relative; }
.card-img-badge {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: var(--c-blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  pointer-events: none;
}

.service-card .card-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 14px;
}
.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.04);
}
.service-card h3 { margin-top: 0; }
/* keep padding but remove top padding when photo is present */
.service-card { padding: 0; display: flex; flex-direction: column; }
.service-card .card-img-wrap { border-radius: var(--radius) var(--radius) 0 0; margin-bottom: 0; }
.service-card h3,
.service-card .card-accroche,
.service-card .card-prix,
.service-card .card-link { padding-left: 18px; padding-right: 18px; }
.service-card h3 { padding-top: 16px; }
.service-card .card-link { margin-top: auto; padding-bottom: 16px; }
.card-accroche {
  color: #3f4d63;
  font-size: .95rem;
}
.card-prix { font-size: .95rem; margin-bottom: 4px; }
.card-prix strong { color: var(--c-blue); }
.card-link {
  display: inline-block;
  color: var(--c-blue);
  font-weight: 600;
  font-size: .92rem;
  margin-top: 6px;
}
.service-help-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #f8fbff;
  box-shadow: var(--shadow-sm);
}
.service-help-cta strong,
.service-help-cta span {
  display: block;
}
.service-help-cta strong {
  color: var(--c-blue);
  margin-bottom: 3px;
}
.service-help-cta span {
  color: var(--c-text-muted);
  font-size: .94rem;
}
.ville-card { padding: 18px 22px; }
.service-card.is-current { border-color: var(--c-blue); }

/* ============================================
   Service detail (deux colonnes)
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.two-col > *,
.service-detail-main {
  min-width: 0;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-help-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
.side-card {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.side-card-checks {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: var(--c-text);
  font-size: .88rem;
}
.side-card-checks li {
  position: relative;
  padding-left: 20px;
}
.side-card-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green-dark);
  font-weight: 800;
}
.service-detail-main h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}
.detail-split > div {
  padding: 18px 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
}
.service-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}
.service-meta-grid div {
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg-soft);
}
.service-meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--c-text-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-meta-grid strong {
  color: var(--c-blue-2);
  font-size: .92rem;
  line-height: 1.45;
}

.service-decision-frame {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  max-width: 100%;
}
.service-decision-frame div {
  padding: 14px 15px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.service-decision-frame span {
  display: block;
  margin-bottom: 6px;
  color: var(--c-text-muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-decision-frame strong {
  display: block;
  color: var(--c-text);
  font-size: .92rem;
  line-height: 1.4;
}

.numbered {
  counter-reset: step;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.numbered li {
  position: relative;
  padding-left: 38px;
  margin-bottom: .6em;
}
.numbered li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticks {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: .4em;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green-dark);
  font-weight: 700;
}
@media (max-width: 760px) {
  .detail-split,
  .service-meta-grid {
    grid-template-columns: 1fr;
  }
  .service-decision-frame {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-decision-frame::-webkit-scrollbar { display: none; }
  .service-decision-frame div {
    flex: 0 0 min(82%, 310px);
    padding: 12px 13px;
    scroll-snap-align: start;
  }
  .side-card {
    position: static;
    padding: 16px;
  }
  .side-card h3,
  .side-card .prix-affiche.big,
  .side-card .prix-unite,
  .side-card .prix-note {
    margin: 0 0 8px;
  }
  .side-card .btn-block {
    margin-bottom: 6px;
  }
  .side-card-checks {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }
  .side-card-note {
    display: none;
  }
}

/* ============================================
   Breadcrumbs
   ============================================ */

.breadcrumbs {
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  font-size: .9rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--c-text-muted);
  margin-left: 8px;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-blue); }
.breadcrumbs [aria-current="page"] { color: var(--c-text); }

/* ============================================
   Chips (autres villes / autres services)
   ============================================ */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-block;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--c-text);
}
.chip:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-blue);
  color: var(--c-blue);
  text-decoration: none;
}

/* ============================================
   FAQ
   ============================================ */

.faq { background: var(--c-bg-soft); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.faq .container { max-width: 880px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--c-text);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.2rem;
  color: var(--c-blue);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 10px 0 0; color: var(--c-text-muted); }

/* ============================================
   Ville contexte
   ============================================ */

.ville-contexte { background: #fff; }
.ville-contexte .container { max-width: 880px; }
.quartiers { color: var(--c-text-muted); font-size: .95rem; }

/* ============================================
   Formulaire de devis
   ============================================ */

.cta-block {
  background: linear-gradient(180deg, var(--c-bg-soft), #fff);
  padding: 38px 0;
}
.cta-block h2 { text-align: center; }
.cta-sub { text-align: left; color: var(--c-text-muted); margin-bottom: 14px; }
.cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-guarantees li {
  padding: 6px 10px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-blue);
  background: #fff;
  font-size: .84rem;
  font-weight: 650;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.devis-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.devis-form label {
  display: block;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 12px;
  font-size: .92rem;
}
.devis-form input,
.devis-form select,
.devis-form textarea {
  width: 100%;
  font: inherit;
  color: var(--c-text);
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}
.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(8,38,128,.12);
}
.devis-form textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.form-note { color: var(--c-text-muted); font-size: .85rem; text-align: center; margin-top: 12px; }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--c-blue-2);
  color: #d6dce8;
  margin-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 48px 24px 32px;
}
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #d6dce8; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.social-logo svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.footer-social .social-logo:hover {
  background: #fff;
  color: var(--c-blue);
  text-decoration: none;
  transform: translateY(-1px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  color: #a3aac0;
  font-size: .85rem;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   Stats strip
   ============================================ */

.stats-strip {
  background: #eef5ff;
  color: var(--c-blue);
  padding: 22px 0;
  border-top: 1px solid #d7e5fb;
  border-bottom: 1px solid #d7e5fb;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--c-blue);
  line-height: 1.1;
}
.stat-item span {
  display: block;
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-top: 3px;
}
@media (max-width: 800px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Tarifs table
   ============================================ */

.tarifs-table-wrap { margin: 18px 0; }
.tarifs-table-wrap h3 { font-size: 1rem; color: var(--c-text-muted); margin-bottom: 10px; }
.tarif-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}
.tarif-card {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg-soft);
}
.tarif-card span {
  display: block;
  color: var(--c-text-muted);
  font-size: .9rem;
  margin-bottom: 6px;
}
.tarif-card strong {
  display: block;
  color: var(--c-blue);
  font-size: 1.12rem;
}
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.tarifs-table th {
  background: var(--c-blue);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
}
.tarifs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.tarifs-table td:last-child {
  font-weight: 700;
  color: var(--c-blue);
  text-align: right;
}
.tarifs-table tr:last-child td { border-bottom: none; }
.tarifs-table tr:nth-child(even) td { background: var(--c-bg-soft); }
@media (max-width: 560px) {
  .tarif-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .tarif-card {
    padding: 10px 11px;
  }
  .tarif-card span {
    font-size: .82rem;
  }
  .tarif-card strong {
    font-size: .98rem;
  }
}
.tarifs-note {
  color: var(--c-text-muted);
  font-size: .85rem;
  margin-top: 8px;
}

/* ============================================
   Crédit d'impôt badge
   ============================================ */

.credit-impot-badge {
  background: linear-gradient(135deg, #019719 0%, #1db954 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.credit-impot-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.credit-impot-badge strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.credit-impot-badge span { font-size: .92rem; opacity: .92; line-height: 1.45; }

.credit-impot-inline {
  display: inline-block;
  background: rgba(25,185,84,.12);
  color: var(--c-green-dark);
  border: 1px solid rgba(25,185,84,.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .9rem;
  font-weight: 600;
  margin: 8px 0 18px;
}

.prix-credit {
  background: rgba(25,185,84,.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .92rem;
  color: var(--c-green-dark);
  margin-bottom: 12px;
}

/* ============================================
   Situations courantes
   ============================================ */

.situations-section {
  background: var(--c-bg-soft);
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
}
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.situation-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-blue);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .95rem;
  color: var(--c-text);
}

/* ============================================
   Engagements
   ============================================ */

.engagements-section {
  background: var(--c-blue);
  color: #fff;
  padding: 56px 0;
}
.engagements-section h2 { color: #fff; margin-bottom: 24px; }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.engagement-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 20px;
}
.engagement-icon { font-size: 1.5rem; margin-bottom: 10px; }
.engagement-item strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  margin-bottom: 5px;
}
.engagement-item span {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  line-height: 1.45;
}

/* ============================================
   Ville card améliorée
   ============================================ */

.ville-accroche {
  color: var(--c-text-muted);
  font-size: .88rem;
  margin: 4px 0 8px;
}
.ville-cp {
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: 2px;
}
.grid-villes { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ============================================
   Service card credit badge
   ============================================ */

.card-credit { display: none; }
.card-link { margin-bottom: 18px; }

/* ============================================
   Tarifs page
   ============================================ */

/* ---- Tarifs legacy (pages services/zones) ---- */
.tarifs-page { padding: 40px 0 64px; }
.tarifs-credit-intro { margin-bottom: 40px; }
.tarifs-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tarif-service-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}
.tarif-service-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.tarif-icone { font-size: 2rem; flex-shrink: 0; }
.tarif-service-header h2 { margin-bottom: .2em; }
.tarif-accroche { color: var(--c-text-muted); font-size: .95rem; margin: 0; }
.tarif-credit-note {
  margin-top: 10px;
  font-size: .9rem;
  color: var(--c-green-dark);
  font-weight: 600;
}
.tarif-sur-devis { color: var(--c-text-muted); font-style: italic; }
.tarifs-footer-note { margin-top: 40px; }

/* ============================================
   Tarifs page — accordéons pro (sans icônes)
   ============================================ */

.tarifs-acc-page { padding: 32px 0 72px; }

/* Navigation ancres — pills texte seul */
.tarifs-nav-acc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.tacc-nav-chip {
  padding: 5px 14px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--c-border-strong);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .12s, color .12s, border-color .12s;
}
.tacc-nav-chip:hover {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}

/* Conteneur accordéons — style tableur */
.tacc-list {
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 1px 6px rgba(8,38,128,.05);
}
.tacc-item { border-bottom: 1px solid var(--c-border); }
.tacc-item:last-child { border-bottom: none; }
.tacc-details { background: var(--c-bg); }

/* En-tête cliquable — style ligne de tableau */
.tacc-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 0;
  transition: background .12s;
  min-height: 56px;
}
.tacc-summary::-webkit-details-marker { display: none; }
.tacc-summary::marker { display: none; }
.tacc-summary:hover { background: #f8faff; }
.tacc-details[open] > .tacc-summary {
  background: #f0f4ff;
  border-bottom: 1px solid var(--c-border);
}

/* Côté gauche */
.tacc-left {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 14px 0 14px 20px;
}
.tacc-index {
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: .06em;
  min-width: 32px;
  flex-shrink: 0;
  opacity: .55;
}
.tacc-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tacc-nom {
  font-size: .97rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
}
.tacc-desc {
  font-size: .8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 480px;
}

/* Côté droit : prix + chevron */
.tacc-right {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 16px;
  flex-shrink: 0;
}
.tacc-prix-badge {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-blue);
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 4px;
  padding: 3px 10px;
  white-space: nowrap;
}
.tacc-chevron {
  color: var(--c-text-muted);
  transition: transform .2s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.tacc-details[open] .tacc-chevron { transform: rotate(180deg); }

/* Corps déplié */
.tacc-body {
  padding: 0 20px 22px 52px;  /* aligné avec le texte du titre */
  background: var(--c-bg);
}

/* Tableau de prix dans le corps */
.tacc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-bottom: 10px;
}
.tacc-table thead tr {
  background: var(--c-bg-soft);
  border-bottom: 2px solid var(--c-border);
}
.tacc-table th {
  padding: 9px 14px;
  text-align: left;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
}
.tacc-table th:last-child { text-align: right; }
.tacc-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: .9rem;
}
.tacc-table td.prix-cell {
  text-align: right;
  font-weight: 700;
  color: var(--c-blue);
  white-space: nowrap;
}
.tacc-table tr:last-child td { border-bottom: none; }
.tacc-table tr:nth-child(even) td { background: #fafbff; }

.tacc-note {
  font-size: .78rem;
  color: var(--c-text-muted);
  margin: 6px 0 0;
  font-style: italic;
}

/* Actions */
.tacc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.tacc-detail-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
  margin-left: 4px;
}
.tacc-detail-link:hover { text-decoration: underline; }

/* Garanties — grille texte seul */
.tarifs-garanties {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 28px 32px;
}
.tarifs-garanties-titre {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.tarifs-garanties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.tarif-garantie {
  padding-left: 12px;
  border-left: 3px solid var(--c-blue);
}
.tarif-garantie strong { display: block; font-size: .92rem; margin-bottom: 3px; }
.tarif-garantie p { margin: 0; font-size: .84rem; color: var(--c-text-muted); }

/* Responsive */
@media (max-width: 700px) {
  .tacc-desc { display: none; }
  .tacc-left { padding-left: 14px; }
  .tacc-index { min-width: 24px; }
  .tacc-body { padding: 0 14px 18px 14px; }
  .tarifs-garanties { padding: 20px 16px; }
  .tarifs-garanties-grid { grid-template-columns: 1fr; gap: 14px; }
  .tacc-right { padding-right: 14px; gap: 8px; }
  .tacc-prix-badge { font-size: .76rem; padding: 2px 8px; }
  .tacc-actions .btn { font-size: .82rem; padding: 8px 14px; }
}

/* ============================================
   Footer credit link
   ============================================ */

.footer-credit { margin-top: 8px; }
.footer-credit a { color: var(--c-green); }

/* ============================================
   Section sub cleanup
   ============================================ */

.services-grid-section, .villes-grid-section, .other-services, .zones-strip, .ville-contexte, .service-detail, .cta-block {
  padding: 40px 0;
}

/* ============================================
   Print
   ============================================ */

/* ============================================
   Pour qui ?
   ============================================ */

.pour-qui-section {
  padding: 56px 0;
  background: #f5f7fc;
}
.pour-qui-section h2 { text-align: center; margin-bottom: 32px; }
.pour-qui-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.pour-qui-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .95rem;
  line-height: 1.45;
  transition: box-shadow .15s;
}
.pour-qui-item:hover { box-shadow: var(--shadow-md); }
.pour-qui-check {
  color: var(--c-green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pour-qui-cta { text-align: center; margin-top: 8px; }
.pour-qui-cta-text { margin-bottom: 14px; color: var(--c-text-muted); font-size: .95rem; }

/* ============================================
   Méthode et preuves terrain
   ============================================ */

.methode-section {
  padding: 56px 0;
  background: #fff;
}
.methode-section h2,
.realisations-section h2 {
  text-align: center;
}
.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.methode-card {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 160px;
}
.methode-card h3 {
  color: var(--c-blue);
  font-size: 1rem;
  margin-bottom: 8px;
}
.methode-card p {
  color: var(--c-text-muted);
  font-size: .94rem;
  margin: 0;
}
.realisations-section {
  padding: 44px 0;
  background: var(--c-bg-soft);
}
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.realisation-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.realisation-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f7;
}
.realisation-card figcaption {
  padding: 16px;
}
.realisation-card strong {
  display: block;
  color: var(--c-blue);
  margin-bottom: 6px;
}
.realisation-card span {
  display: block;
  color: var(--c-text-muted);
  font-size: .9rem;
  line-height: 1.45;
}

@media (max-width: 950px) {
  .methode-grid,
  .realisations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .methode-section,
  .realisations-section {
    padding: 40px 0;
  }
  .methode-grid,
  .realisations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .realisation-card figcaption {
    padding: 10px;
  }
  .realisation-card strong {
    margin-bottom: 3px;
    font-size: .88rem;
  }
  .realisation-card span {
    font-size: .78rem;
    line-height: 1.3;
  }
  .grid { grid-template-columns: 1fr; }
  .section-heading-row {
    margin-bottom: 22px;
  }
  .section-heading-row .btn {
    width: 100%;
  }
  .home-services-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home-services-featured .card-img-wrap {
    aspect-ratio: 4 / 3;
  }
  .home-services-featured .service-card-body {
    padding: 10px 10px 12px;
  }
  .home-services-featured .service-category {
    margin-bottom: 6px;
    font-size: .68rem;
  }
  .home-services-featured h3 {
    min-height: 0;
    padding: 0;
    font-size: .98rem;
  }
  .home-services-featured .card-accroche {
    display: none;
  }
  .home-services-featured .card-link {
    padding: 0;
    font-size: .82rem;
  }
  .home-services-featured .card-img-badge {
    left: 6px;
    bottom: 6px;
    padding: 3px 7px;
    font-size: .68rem;
  }
  .home-service-links {
    margin-top: 20px;
    padding: 16px;
  }
  .home-service-links-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .home-service-link-groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-service-link-group h3 {
    font-size: .92rem;
  }
  .home-service-link-group div {
    gap: 6px;
  }
  .home-service-link-group a {
    padding: 8px 9px;
    font-size: .88rem;
  }
  .home-service-link-group a span {
    font-size: .74rem;
  }
  .service-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .service-filters::-webkit-scrollbar {
    display: none;
  }
  .service-filter {
    flex: 0 0 auto;
  }
  .methode-card {
    min-height: auto;
  }
}

/* ============================================
   Facteurs de variation
   ============================================ */

.facteurs-variation {
  margin-top: 18px;
  padding: 14px 16px;
  background: #f5f7fc;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}
.facteurs-variation summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--c-blue-2);
}
.facteurs-list {
  margin: 12px 0 10px;
  padding-left: 18px;
  color: var(--c-text);
  font-size: .92rem;
  line-height: 1.6;
}
.facteurs-list li { margin-bottom: 4px; }
.facteurs-note {
  margin: 0;
  font-size: .85rem;
  color: var(--c-text-muted);
  font-style: italic;
}

/* ============================================
   Avis clients
   ============================================ */

.avis-section {
  padding: 56px 0;
  background: var(--c-bg);
}
.avis-section h2 { text-align: center; margin-bottom: 8px; }
.avis-section .section-sub { text-align: center; margin-bottom: 32px; }
.avis-carousel {
  position: relative;
  margin-bottom: 32px;
}
.avis-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}
.avis-track::-webkit-scrollbar { display: none; }
.avis-card {
  flex: 0 0 min(420px, calc(100vw - 64px));
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
  transition: box-shadow .15s, transform .15s;
}
.avis-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.avis-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-border-strong);
  border-radius: 99px;
  background: #fff;
  color: var(--c-blue);
  box-shadow: var(--shadow-md);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.avis-carousel-btn:hover {
  background: var(--c-blue);
  color: #fff;
}
.avis-carousel-prev { left: -14px; }
.avis-carousel-next { right: -14px; }
.avis-stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: 2px; }
.avis-texte {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--c-text);
  font-style: italic;
  flex: 1;
}
.avis-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: .82rem;
  color: var(--c-text-muted);
}
.avis-meta strong { color: var(--c-text); font-size: .88rem; }
.avis-footer { text-align: center; }
.trust-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--c-text-muted);
  font-size: .86rem;
}
.trust-social-links .social-logo {
  width: 38px;
  height: 38px;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-blue);
}
.trust-social-links .social-logo:hover {
  border-color: var(--c-blue);
  background: var(--c-blue);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.social-instagram:hover {
  border-color: #d62976;
  background: #d62976;
  color: #fff;
}
.social-facebook:hover {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}
.social-linkedin:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #fff;
}
.social-tiktok:hover {
  border-color: #111827;
  background: #111827;
  color: #fff;
}
@media (max-width: 700px) {
  .avis-section { padding: 44px 0; }
  .avis-track { padding-inline: 0; }
  .avis-card {
    flex-basis: calc(100vw - 48px);
    min-height: 300px;
  }
  .avis-carousel-btn {
    top: auto;
    bottom: -10px;
    transform: none;
    width: 38px;
    height: 38px;
  }
  .avis-carousel-prev { left: 0; }
  .avis-carousel-next { right: 0; }
  .avis-footer { margin-top: 18px; }
  .trust-social-links {
    align-items: stretch;
    gap: 7px;
  }
  .trust-social-links span {
    flex: 0 0 100%;
  }
  .trust-social-links .social-logo {
    flex: 0 0 38px;
    justify-content: center;
  }
}
.avis-footer { text-align: center; }

/* ============================================
   Side card note
   ============================================ */

.side-card-note {
  font-size: .82rem;
  color: var(--c-text-muted);
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.4;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(203,213,225,.9);
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 34px rgba(11,19,32,.18);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky-cta a {
    min-height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 800;
    font-size: .92rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .mobile-sticky-primary {
    background: var(--c-blue);
    color: #fff;
  }
  .mobile-sticky-wa {
    background: #0f7a38;
    color: #fff;
  }
  .mobile-sticky-wa svg {
    width: 17px;
    height: 17px;
  }
}

/* ============================================
   Nav dropdown Services
   ============================================ */

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a,
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: .3em;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: inherit;
}
.nav-dropdown-arrow {
  width: 12px; height: 12px;
  transition: transform .15s ease;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: min(520px, calc(100vw - 40px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: .9rem;
  color: var(--c-text);
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-menu a:hover {
  background: var(--c-bg-soft);
  color: var(--c-blue);
  text-decoration: none;
}
.dropdown-menu-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--c-border);
  margin-top: 4px;
  padding-top: 4px;
}
.dropdown-menu-footer a {
  color: var(--c-blue);
  font-weight: 600;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .primary-nav .dropdown-menu {
    position: fixed;
    top: 106px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 122px);
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .primary-nav .dropdown-menu {
    top: 101px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 6px;
  }
  .primary-nav .dropdown-menu a {
    padding: 9px 10px;
    font-size: .84rem;
  }
}

/* ============================================
   Section À propos + formulaire rapide
   ============================================ */

.apropos-section {
  background: var(--c-bg);
  padding: 30px 0 36px;
  border-bottom: 1px solid var(--c-border);
}
.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.apropos-inner.apropos-text-only {
  grid-template-columns: 1fr;
  max-width: 900px;
  gap: 4px;
  text-align: left;
}
.apropos-section .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-blue);
  margin-bottom: .35em;
}
.apropos-section h2 {
  margin-bottom: .5em;
}
.apropos-section p {
  color: var(--c-text-muted);
  font-size: .97rem;
}
.apropos-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.2em;
}
.apropos-badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .4em .85em;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 99px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-text);
}
.apropos-section .apropos-badges {
  display: none;
}

/* Formulaire rapide */
.form-rapide-wrap {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-rapide-header {
  margin-bottom: 1.2em;
}
.form-rapide-header h3 {
  font-size: 1.15rem;
  margin-bottom: .25em;
}
.form-rapide-sub {
  font-size: .88rem;
  color: var(--c-text-muted);
  margin: 0;
}
.form-rapide-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-bottom: 1.2em;
}
.form-rapide-stars {
  color: #f59e0b;
  letter-spacing: -.05em;
}
.form-rapide .form-field {
  margin-bottom: .85em;
}
.form-rapide label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .35em;
}
.form-rapide .optional {
  color: var(--c-text-muted);
  font-weight: 500;
}
.form-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}
.form-step-dot {
  min-height: 26px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: var(--c-bg-soft);
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
}
.form-step-dot.is-active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}
.form-step-dot.is-complete {
  background: #e7f8ee;
  border-color: rgba(15,122,56,.28);
  color: #0f7a38;
}
.form-step[hidden] {
  display: none;
}
.form-step-title {
  margin: 0 0 10px;
  color: var(--c-blue);
  font-weight: 850;
}
.form-step-actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8px;
  margin-top: .35em;
}
.btn-step-next,
.btn-step-back {
  min-height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.btn-step-next {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.btn-step-back {
  background: #fff;
  color: var(--c-blue);
}
.text-back {
  display: inline-flex;
  width: auto;
  min-height: auto;
  margin: 10px auto 0;
  padding: 0;
  border: 0;
  color: var(--c-text-muted);
  background: transparent;
  font-size: .88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-rapide input,
.form-rapide select,
.form-rapide textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font);
  background: #fff;
  color: var(--c-text);
  transition: border-color .15s;
}
.form-rapide input:focus,
.form-rapide select:focus,
.form-rapide textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(8,38,128,.08);
}
.form-rapide textarea { resize: vertical; min-height: 70px; }
.form-inline-note {
  margin: -.2rem 0 .75rem;
  color: var(--c-text-muted);
  font-size: .82rem;
  line-height: 1.45;
}
.form-estimate {
  gap: 3px;
  margin: -.15rem 0 .85rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(8,38,128,.14);
  border-radius: var(--radius-sm);
  background: #f7faff;
}
.form-estimate strong {
  color: var(--c-blue);
  font-size: .88rem;
}
.form-estimate span {
  color: var(--c-text);
  font-size: .86rem;
  line-height: 1.35;
}
.form-estimate small {
  color: var(--c-text-muted);
  font-size: .76rem;
  line-height: 1.35;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-preference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 .85em;
  padding: 0;
  border: 0;
}
.contact-preference legend {
  grid-column: 1 / -1;
  padding: 0;
  margin-bottom: .35em;
  color: var(--c-text);
  font-size: .85rem;
  font-weight: 700;
}
.contact-preference label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  margin: 0;
  padding: 0 8px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--c-blue-2);
  font-size: .86rem;
  cursor: pointer;
}
.contact-preference input {
  width: 14px;
  height: 14px;
  padding: 0;
  accent-color: var(--c-blue);
}
@media (max-width: 420px) {
  .contact-preference {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .contact-preference label {
    min-height: 34px;
    padding: 0 5px;
    font-size: .8rem;
  }
}
.form-actions-dual {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8px;
  margin-top: .4em;
}
.form-rapide .btn-email-primary,
.form-rapide .btn-wa-secondary,
.form-rapide .btn-wa-primary {
  width: 100%;
  padding: .9rem 1rem;
  font-size: 1rem;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  transition: background .15s;
}
.form-rapide .btn-email-primary {
  background: var(--c-blue);
  color: #fff;
}
.form-rapide .btn-email-primary:hover { background: var(--c-blue-dark); }
.form-rapide .btn-wa-secondary,
.form-rapide .btn-wa-primary {
  background: var(--c-green);
  color: #fff;
}
.form-rapide .btn-wa-secondary svg {
  width: 18px;
  height: 18px;
}
.form-rapide .btn-wa-primary:hover { background: var(--c-green-dark); text-decoration: none; }
.form-rapide .btn-wa-secondary:hover { background: var(--c-green-dark); text-decoration: none; }
.form-rapide-note {
  font-size: .78rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: .6em;
}
@media (max-width: 420px) {
  .form-actions-dual {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 840px) {
  .apropos-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-rapide-wrap { padding: 24px; }
}

/* ============================================
   Carte zone d'intervention
   ============================================ */

.carte-section {
  padding: 50px 0 52px;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.carte-section h2 { margin-bottom: .3em; }
.carte-section .section-sub { margin-bottom: 1.4em; }
.carte-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  height: 400px;
}
#map-intervention { height: 100%; width: 100%; }
#map-intervention.map-fallback {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(8,38,128,.06) 1px, transparent 1px),
    linear-gradient(rgba(8,38,128,.06) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #e8f7ef);
  background-size: 36px 36px, 36px 36px, auto;
  color: var(--c-blue);
  text-align: center;
  font-weight: 700;
}
.carte-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.2em;
}
.carte-info-chip {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .35em .85em;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 99px;
  font-size: .83rem;
  font-weight: 650;
  color: var(--c-blue);
}
.carte-info-chip:hover {
  border-color: rgba(8,38,128,.35);
  background: #f8fbff;
  text-decoration: none;
}
@media (max-width: 600px) {
  .carte-wrap { height: 280px; }
}

/* ============================================
   Tarifs — badge populaire
   ============================================ */

.tacc-badge-pop {
  display: inline-block;
  background: var(--c-blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .15em .55em;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: .5em;
}

/* ---- Formulaire 2-col nom+tel ---- */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---- À propos text-only ---- */
.apropos-text-only {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.apropos-text-only .apropos-badges {
  justify-content: center;
}

/* ---- CTA block compact ---- */
.cta-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.cta-block .btn-outline {
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.cta-block .btn-outline:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-blue-dark);
}

.thanks-section {
  min-height: 62vh;
  padding: 72px 0;
  background: linear-gradient(180deg, var(--c-bg-soft), #fff);
}
.thanks-card {
  max-width: 760px;
}
.thanks-card h1 {
  color: var(--c-blue);
}
.thanks-card p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
}
.thanks-next {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.thanks-next strong {
  color: var(--c-blue);
}
.thanks-next span {
  color: var(--c-text-muted);
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Devis section (tarifs page) ---- */
.devis-section {
  background: var(--c-bg-soft);
  padding: 64px 0;
}
.devis-section-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
}
.devis-section-text h2 { margin-top: 0; }
.devis-trust {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.devis-trust li {
  padding: 6px 0;
  color: var(--c-text-muted);
  font-size: .92rem;
}
.devis-section .form-rapide-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--c-border);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
@media (max-width: 900px) {
  .devis-section-inner { grid-template-columns: 1fr; }
}

/* ---- Sous-services dynamiques ---- */
.form-subservice {
  margin-bottom: .75rem;
  overflow: hidden;
}
.form-subservice-inner {
  background: #fff;
  border: 1.5px solid #d0d7e5;
  border-radius: 8px;
  padding: 1rem 1.1rem .9rem;
}
.form-subservice-inner .form-field {
  margin-top: .7rem;
}
.form-subservice-inner .form-field:first-child {
  margin-top: 0;
}
.form-sub-label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-blue);
  margin-bottom: .55rem;
}
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .6rem;
}
.form-price-options {
  display: grid;
  gap: .45rem;
}
.form-price-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .6rem;
  min-height: 48px;
  padding: .55rem .7rem;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  background: #fdfefe;
  cursor: pointer;
}
.form-price-option:has(input:checked) {
  border-color: var(--c-blue);
  background: #f5f8ff;
  box-shadow: 0 0 0 3px rgba(8,38,128,.06);
}
.form-price-option input {
  width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--c-blue);
}
.price-option-main {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.price-option-main span {
  color: var(--c-text);
  font-weight: 750;
  font-size: .9rem;
}
.price-option-main small {
  color: var(--c-text-muted);
  font-size: .76rem;
}
.form-price-option strong {
  color: var(--c-blue);
  font-size: .92rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .form-checkboxes { grid-template-columns: 1fr; }
  .form-price-option {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: .52rem .6rem;
  }
  .form-price-option strong {
    font-size: .86rem;
  }
}
.form-check-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  cursor: pointer;
  padding: .35rem .5rem;
  border-radius: 6px;
  transition: background .15s;
}
.form-check-item:hover { background: var(--c-bg-soft); }
.form-check-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--c-blue);
  flex-shrink: 0;
  cursor: pointer;
}

@media print {
  .site-header, .site-footer, .cta-block, .hero-cta, .header-cta { display: none; }
  body { background: #fff; }
  .hero { background: #fff; color: var(--c-text); }
  .hero h1, .hero-sub { color: var(--c-text); }
}
