/* =============================================================
   comparateurconciergerie.com — feuille de style principale
   Palette : bleu pétrole (confiance) + jaune clé (action)
   Typo    : Fraunces (titres) + Manrope (texte)
   ============================================================= */

:root {
  --navy: #0E2A3B;
  --navy-2: #143A50;
  --navy-3: #1C4A63;
  --ink: #1B2B36;
  --muted: #5B6B76;
  --line: #DCE3E8;
  --bg: #F4F7F9;
  --white: #FFFFFF;
  --yellow: #FFC72C;
  --yellow-d: #E5AE12;
  --yellow-soft: #FFF4D1;
  --green: #1E9E6A;
  --green-soft: #E4F5EC;
  --red: #D64545;
  --red-soft: #FBE7E7;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(14, 42, 59, 0.10);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--navy-2); }
a:hover { color: var(--navy); }
b, strong { font-weight: 700; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; }
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { max-width: 820px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--yellow); color: var(--navy); padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; border: 2px solid transparent;
  font-weight: 800; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
  line-height: 1.2; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .7; cursor: wait; }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 6px 18px rgba(255, 199, 44, 0.35); }
.btn-primary:hover { background: var(--yellow-d); color: var(--navy); }
.btn-lg { padding: 16px 28px; font-size: 1.08rem; }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--line); }
.btn-ghost:hover { color: var(--navy); border-color: var(--navy); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: var(--white); color: var(--white); }
.link-arrow { font-weight: 700; text-decoration: none; color: var(--navy-2); border-bottom: 2px solid var(--yellow); padding-bottom: 1px; }
.link-arrow:hover { border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--navy); }
.brand-text strong { font-weight: 800; }
.brand-text--light { color: var(--white); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link { text-decoration: none; color: var(--ink); font-weight: 600; padding: 8px 12px; border-radius: 8px; font-size: .95rem; }
.nav-link:hover { background: var(--bg); color: var(--navy); }
.nav-link.is-active { color: var(--navy); box-shadow: inset 0 -3px 0 var(--yellow); border-radius: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: var(--navy); font-weight: 800; padding: 8px 12px; margin-left: 8px; white-space: nowrap; }
.nav-cta { padding: 10px 18px; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 3px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,199,44,.18), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(28,74,99,.9), transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; padding: 56px 0 72px; align-items: start; }
.hero-kicker { color: var(--yellow); font-weight: 800; font-size: .9rem; margin-bottom: 14px; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 34rem; }
.hero-points { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 10px; }
.hero-points li { padding-left: 30px; position: relative; color: rgba(255,255,255,.9); }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230E2A3B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5 10 17.5 19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hero-points b { color: var(--white); }
.hero-proof { display: flex; gap: 18px; margin: 26px 0 18px; flex-wrap: wrap; }
.hero-proof-item { flex: 1 1 200px; border-left: 3px solid var(--yellow); padding: 4px 0 4px 14px; }
.hero-proof-item b { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.1; color: var(--white); }
.hero-proof-item span { font-size: .9rem; color: rgba(255,255,255,.75); }
.hero-call { color: rgba(255,255,255,.75); font-size: .95rem; }
.hero-call a { color: var(--yellow); font-weight: 800; text-decoration: none; }

/* ---------- Formulaire devis ---------- */
.devis {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.35); padding: 26px 28px 28px; position: relative;
}
.section .devis { box-shadow: var(--shadow); border: 1px solid var(--line); }
.hp { position: absolute; left: -9999px; top: -9999px; }
.devis-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.devis-title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.2; margin: 0 0 4px; color: var(--navy); }
.devis-sub { margin: 0; color: var(--muted); font-size: .9rem; }
.devis-progress { flex: none; text-align: right; min-width: 110px; }
.devis-step-label { font-size: .85rem; color: var(--muted); font-weight: 600; }
.devis-bar { height: 6px; background: var(--bg); border-radius: 3px; margin-top: 6px; overflow: hidden; }
.devis-bar i { display: block; height: 100%; background: var(--yellow); border-radius: 3px; transition: width .25s ease; }
.step { border: 0; padding: 0; margin: 0; display: none; }
.step.is-active { display: block; }
.step legend { font-weight: 800; font-size: .8rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.step-intro { color: var(--muted); margin-top: -4px; }
.field { margin-bottom: 16px; }
.label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 8px; color: var(--navy); }
.hint { display: block; font-size: .82rem; color: var(--muted); margin-top: 6px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .12s ease, box-shadow .12s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy-2); box-shadow: 0 0 0 3px rgba(20,58,80,.12); }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: var(--red); background: #FFF9F9; }
.field.is-invalid .pills label span, .field.is-invalid .choices label span { border-color: var(--red); }
.field-error { display: block; color: var(--red); font-size: .85rem; margin-top: 6px; font-weight: 600; }
textarea { resize: vertical; min-height: 84px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%235B6B76' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 20px; padding-right: 36px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills label { position: relative; cursor: pointer; }
.pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.pills span {
  display: inline-block; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 999px;
  font-weight: 600; font-size: .95rem; background: var(--white); transition: all .12s ease; user-select: none;
}
.pills label:hover span { border-color: var(--navy-2); }
.pills input:checked + span { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pills input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }
.pills-formule label { flex: 1 1 calc(50% - 4px); }
.pills-formule span { display: block; text-align: center; }
.row-cp { grid-template-columns: 130px 1fr; }
.ville-suggest { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.ville-suggest[hidden] { display: none; }
.ville-pill { font: inherit; font-size: .85rem; font-weight: 600; padding: 6px 11px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--navy); cursor: pointer; }
.ville-pill.is-on, .ville-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.choices { display: grid; gap: 8px; }
.choices label { position: relative; cursor: pointer; display: block; }
.choices input { position: absolute; opacity: 0; width: 0; height: 0; }
.choices span {
  display: block; padding: 11px 14px 11px 42px; border: 1.5px solid var(--line); border-radius: 10px; font-size: .95rem;
  position: relative; transition: all .12s ease; background: var(--white);
}
.choices span::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); background: var(--white); }
.choices label:hover span { border-color: var(--navy-2); }
.choices input:checked + span { border-color: var(--navy); background: var(--bg); }
.choices input:checked + span::before { border: 6px solid var(--navy); }
.choices input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--navy); }
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 20px; }
.step-actions .btn-primary { margin-left: auto; }
.btn-submit { width: 100%; }
.devis-secure { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); margin: 14px 0 0; }
.devis-secure svg { color: var(--green); flex: none; }

/* ---------- Bandeau confiance ---------- */
.trust { background: var(--yellow); color: var(--navy); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 34px; padding: 14px 0; font-weight: 700; font-size: .92rem; }
.trust-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-inner span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--navy); }

/* ---------- Sections génériques ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-cta { margin-top: 40px; }
.section-cta--split { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Comment ça marche */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; }
.steps-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--yellow); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.steps h3 { font-size: 1.15rem; }
.steps p { color: var(--muted); margin: 0; }

/* Pourquoi comparer */
.compare-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.compare-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list li { padding-left: 30px; position: relative; font-weight: 600; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%231E9E6A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5 10 17.5 19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.compare-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.compare-card-title { font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 18px; }
.compare-rows { display: grid; gap: 10px; }
.compare-row { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.07); font-size: .95rem; }
.compare-row.is-best { background: var(--white); color: var(--navy); font-weight: 700; }
.compare-pct { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.compare-eur { font-weight: 800; }
.compare-total { display: flex; justify-content: space-between; align-items: baseline; margin: 22px 0 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.compare-total b { font-family: var(--font-display); font-size: 2rem; color: var(--yellow); }
.compare-card .btn { width: 100%; }
.compare-note { font-size: .78rem; color: rgba(255,255,255,.55); margin: 14px 0 0; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services article { padding: 24px 24px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--yellow); }
.services h3 { font-size: 1.1rem; }
.services p { color: var(--muted); margin: 0; font-size: .97rem; }

/* Tarifs */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.pricing-card h3 { font-size: 1.15rem; }
.pricing-price { margin: 6px 0 14px; color: var(--muted); }
.pricing-price b { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); font-weight: 700; margin: 0 4px; }
.pricing-price span { display: block; font-size: .85rem; }
.pricing-card p { color: var(--muted); font-size: .97rem; }
.pricing-for { font-weight: 700; color: var(--navy) !important; margin: 0; font-size: .9rem !important; }

/* Couverture */
.cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cities h3 { font-size: 1.05rem; padding-bottom: 8px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.cities p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Articles (teasers) */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .12s ease; }
.post:hover { border-color: var(--navy); color: var(--ink); }
.post-cat { display: inline-block; align-self: flex-start; font-size: .78rem; font-weight: 800; color: var(--navy); background: var(--yellow-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.post h2, .post h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 800; line-height: 1.3; }
.post p { color: var(--muted); font-size: .95rem; margin: 0; }
.post-meta { margin-top: auto; padding-top: 14px; font-size: .82rem; color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; font-weight: 700; position: relative; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--bg); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; background: var(--yellow); }
.faq-body { padding: 0 20px 18px; color: var(--muted); }
.faq-body p { margin: 0; }

/* Bandeau CTA */
.cta-band { background: var(--navy); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 56px 0; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0A1F2D; color: rgba(255,255,255,.8); font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; padding: 56px 0 36px; }
.footer-brand p { margin: 12px 0 16px; color: rgba(255,255,255,.65); }
.footer-phone { display: block; font-size: 1.35rem; font-weight: 800; color: var(--yellow) !important; text-decoration: none; }
.footer-hours { font-size: .85rem; color: rgba(255,255,255,.55); }
.site-footer h3 { color: var(--white); font-size: .95rem; margin: 0 0 12px; }
.site-footer h3 + ul + h3 { margin-top: 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- Pages internes ---------- */
.page-hero { background: var(--navy); color: var(--white); padding: 52px 0 48px; }
.page-hero--small { padding: 36px 0; }
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 40rem; margin: 0; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.6) !important; margin-bottom: 14px !important; }
.crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.article-meta { font-size: .9rem !important; color: rgba(255,255,255,.6) !important; margin-top: 12px !important; }

.prose { font-size: 1.05rem; }
.prose h2 { font-size: 1.65rem; margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose p, .prose li { color: #2E3E49; }
.prose .lead { font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.prose ul li, .prose ol li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--bg); font-weight: 700; }
.prose .note { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--line); padding-left: 14px; }
.about-cta { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }

.notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; }
.notice-success { background: var(--green-soft); color: #155F3F; border: 1px solid #BFE6D2; }
.notice-error { background: var(--red-soft); color: #8A2323; border: 1px solid #F1C3C3; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: 48px; align-items: start; }
.contact-block { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-block h2 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; color: var(--muted); }
.contact-big { display: inline-block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.contact-big--email { font-family: var(--font-body); font-size: 1.15rem; font-weight: 800; word-break: break-all; }
.contact-block p { color: var(--muted); margin: 6px 0 0; }
.contact-block--pro { border: 0; background: var(--yellow-soft); padding: 20px; border-radius: 12px; }
.contact-block--pro h2 { color: var(--navy); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.contact-form .hint { margin-top: 14px; }

/* Outils */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tool-card { display: block; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.tool-card:hover { border-color: var(--navy); color: var(--ink); }
.tool-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--navy); color: var(--yellow); margin-bottom: 18px; }
.tool-card h2 { font-size: 1.5rem; }
.tool-card p { color: var(--muted); }
.tool-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.tool-inputs { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.tool-inputs h2, .tool-results h2 { font-size: 1.4rem; margin-bottom: 20px; }
.range-row { display: flex; align-items: center; gap: 16px; }
.range-row input[type="range"] { flex: 1; accent-color: var(--navy); height: 32px; }
.range-row output { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--navy); min-width: 90px; text-align: right; }
.result-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.result-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.result-card h3 { font-size: 1rem; }
.result-price { margin: 0; color: var(--muted); font-size: .85rem; }
.result-price b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); font-weight: 700; line-height: 1.1; }
.result-range { font-size: .82rem; color: var(--red); margin: 6px 0 10px; font-weight: 600; }
.result-desc { font-size: .85rem; color: var(--muted); margin: 0; }
.result-saving { margin-top: 22px; background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 28px; }
.result-saving-label { color: rgba(255,255,255,.75); margin: 0 0 4px; font-size: .95rem; }
.result-saving-value { font-size: 1.15rem; margin: 0 0 12px; }
.result-saving-value b { font-family: var(--font-display); font-size: 2.4rem; color: var(--yellow); }
.result-saving p:not(.result-saving-label):not(.result-saving-value) { color: rgba(255,255,255,.8); }
.tool-disclaimer { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.sim-table { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sim-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.sim-row:last-child { border-bottom: 0; }
.sim-row span { color: var(--muted); }
.sim-row--big b, .sim-row--net b { font-family: var(--font-display); font-size: 1.5rem; }
.sim-row--net { background: var(--yellow-soft); }
.sim-row--net span { color: var(--navy); font-weight: 700; }
.sim-row--net b { color: var(--navy); }
.sim-row--month { background: var(--yellow-soft); padding-top: 0; }

/* Article */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.article-body { max-width: 720px; }
.article-cta { margin-top: 48px; background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 32px; }
.article-cta h2 { color: var(--white); font-size: 1.5rem; margin-top: 0; }
.article-cta p { color: rgba(255,255,255,.8); }
.article-side { position: sticky; top: 90px; display: grid; gap: 20px; }
.side-cta { background: var(--yellow-soft); border-radius: var(--radius); padding: 24px; border: 1px solid #F4DF9A; }
.side-cta-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.side-cta p { color: var(--muted); font-size: .92rem; }
.side-cta .btn { width: 100%; }
.side-phone { display: block; text-align: center; margin-top: 12px; font-weight: 800; color: var(--navy); text-decoration: none; }
.side-list { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.side-list h3 { font-size: .95rem; margin-bottom: 12px; }
.side-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .9rem; }
.side-list a { text-decoration: none; }

/* Merci */
.merci { padding: 64px 0 80px; background: var(--bg); }
.merci-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); text-align: center; }
.merci-check { width: 72px; height: 72px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 20px; }
.merci-card h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.merci-ref { color: var(--muted); font-size: .95rem; }
.merci-lead { font-size: 1.1rem; max-width: 36rem; margin: 0 auto 28px; }
.merci-next { display: flex; gap: 22px; text-align: left; background: var(--yellow-soft); border-radius: var(--radius); padding: 26px; margin-bottom: 28px; border: 1px solid #F4DF9A; }
.merci-next-icon { font-size: 2.4rem; line-height: 1; flex: none; }
.merci-next h2 { font-family: var(--font-body); font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.merci-next p:last-child { margin: 0; }
.merci-warning { font-weight: 700; color: var(--navy); padding: 10px 14px; background: var(--white); border-radius: 8px; border-left: 4px solid var(--red); }
.merci-after { text-align: left; background: var(--bg); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 24px; }
.merci-after h3 { font-size: 1rem; }
.merci-after ol { margin: 0; padding-left: 1.2em; color: var(--muted); }
.merci-after li { margin-bottom: 6px; }
.merci-help { color: var(--muted); }
.merci-help a { font-weight: 800; color: var(--navy); text-decoration: none; }
.merci-links { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 40px 0 56px; }
  .hero-copy { max-width: 640px; }
  .compare-grid { grid-template-columns: 1fr; gap: 36px; }
  .services, .pricing, .posts, .steps { grid-template-columns: 1fr 1fr; }
  .cities { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tool-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav { position: absolute; left: 0; right: 0; top: 72px; background: var(--white); flex-direction: column; align-items: stretch; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav.is-open { display: flex; }
  .nav-link { padding: 12px 8px; }
  .nav-link.is-active { box-shadow: inset 4px 0 0 var(--yellow); border-radius: 0; }
  .nav-phone { margin: 6px 0; padding: 12px 8px; }
  .nav-cta { margin-top: 6px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .services, .pricing, .posts, .steps, .cities, .footer-grid, .tools-grid, .result-cards { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; gap: 10px; }
  .row-cp { grid-template-columns: 120px 1fr; gap: 10px; }
  .devis { padding: 20px 16px 22px; border-radius: 16px; }
  .devis-title { font-size: 1.2rem; }
  .pills span { padding: 11px 14px; min-height: 44px; display: inline-flex; align-items: center; }
  input[type="text"], input[type="tel"], input[type="email"], select { padding: 14px 14px; font-size: 16px; }
  .field { margin-bottom: 14px; }
  .devis-head { flex-direction: column; gap: 10px; }
  .devis-progress { text-align: left; width: 100%; }
  .hero-proof { flex-direction: column; gap: 12px; }
  .compare-row { grid-template-columns: 1fr auto; }
  .compare-row .compare-eur { grid-column: 1 / -1; text-align: right; margin-top: -8px; }
  .merci-card { padding: 28px 20px; }
  .merci-next { flex-direction: column; gap: 10px; }
  .cta-band-inner { padding: 44px 0; }
  .footer-bottom { flex-direction: column; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }
  .range-row output { min-width: 70px; font-size: 1.15rem; }
}
