/* Transports Mahier — maquette 2026. Mobile first. Couleurs injectées par le générateur (:root inline). */

:root {
  --primary: #154189;
  --primary-dark: #0d2c5e;
  --accent: #4887ef;
  --accent-light: #e8f0fe;
  --ink: #12203a;
  --text: #2b3446;
  --muted: #5b6472;
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
  --border: #e2e6ef;
  --success: #1c8a4b;
  --danger: #c23434;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
  --shadow-s: 0 2px 10px rgba(18, 32, 58, 0.06);
  --shadow-m: 0 10px 30px rgba(18, 32, 58, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
}
@media (min-width: 900px) {
  body { padding-bottom: 0; padding-right: 78px; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; margin: 0 0 0.6em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5.2vw, 3.3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 3.75rem 0; }
.section-alt { background: var(--bg-alt); }
.section-lead { max-width: 60ch; color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.6em;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95rem 1.5rem; border-radius: var(--radius-s); font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-s); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-m); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(72, 135, 239, 0.35); }
.btn-accent:hover { background: #3a76dc; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { background: var(--accent-light); color: var(--primary); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 1.75rem; font-size: 1.05rem; }
.cta-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.6em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.logo { display: flex; align-items: baseline; gap: 0.35em; text-decoration: none; white-space: nowrap; }
.logo strong { font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.logo span { font-size: 0.8rem; font-weight: 700; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 1.6rem; }
.nav-desktop a { font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--text); padding: 0.4em 0; border-bottom: 2px solid transparent; }
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--primary); border-color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-tel { display: none; font-weight: 700; color: var(--primary); text-decoration: none; font-size: 0.95rem; align-items: center; gap: 0.4em; }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-s); border: 1px solid var(--border); background: #fff; cursor: pointer; }
.nav-mobile { display: none; position: fixed; inset: 64px 0 0 0; background: #fff; z-index: 49; padding: 1.5rem 22px; overflow-y: auto; }
.nav-mobile.is-open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a:not(.btn) { display: block; padding: 0.9rem 0.2rem; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--border); }
.nav-mobile .btn { margin-top: 1rem; }
@media (min-width: 1100px) {
  .nav-desktop { display: block; }
  .header-tel { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; font-size: 0.85rem; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding: 0.55rem 22px; justify-content: center; }
.trust-strip strong { color: #fff; font-weight: 700; }
.trust-strip span { opacity: 0.92; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 70%); color: #fff; padding: 3rem 0 3.25rem; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -20% -60% auto; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.35; pointer-events: none; }
.hero .container { position: relative; }
.hero-grid { display: grid; gap: 2.25rem; }
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero-sub { font-size: 1.12rem; color: #dce6fb; max-width: 50ch; margin-bottom: 1.6rem; line-height: 1.6; }
.hero-chip { display: inline-flex; align-items: center; gap: 0.5em; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 0.5em 0.9em; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; }
.hero-call { margin: 1.2rem 0 0; color: #dce6fb; font-size: 0.98rem; }
.hero-call a { color: #fff; font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--accent); }
.hero-call-note { color: #b9c9ec; font-size: 0.9rem; }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.4rem; }
.hero-actions .btn { width: 100%; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } .hero-actions .btn { width: auto; } }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; } .hero { padding: 3.75rem 0 4rem; } }

.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-l); padding: 1.6rem; }
.hero-card h3 { color: #fff; margin-bottom: 0.8em; }
.hero-facts { display: flex; flex-direction: column; gap: 0.9rem; }
.hero-fact { display: flex; gap: 0.7em; align-items: flex-start; }
.hero-fact svg { flex: none; color: var(--accent); }
.hero-fact strong { display: block; color: #fff; font-size: 0.95rem; }
.hero-fact span { color: #d7e2f9; font-size: 0.85rem; }
.hero-media { margin: 0; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 4 / 3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 960px) { .hero-media-slot, .hero-media { position: sticky; top: 84px; } }

/* ---------- QuoteWidget ---------- */
.quote-widget { background: #fff; color: var(--text); border-radius: var(--radius-l); padding: 1.25rem; box-shadow: var(--shadow-m); margin-top: 0.4rem; }
.qw-title { display: flex; align-items: center; gap: 0.5em; font-weight: 800; color: var(--ink); font-size: 1.05rem; margin-bottom: 0.9rem; }
.qw-title svg { color: var(--primary); }
.qw-fields { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .qw-fields { grid-template-columns: 1fr 1fr 1fr; } }
.qw-field { display: flex; flex-direction: column; gap: 0.3em; font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.qw-field input { width: 100%; padding: 0.8rem 0.85rem; border: 1.5px solid var(--border); border-radius: var(--radius-s); font: inherit; font-size: 1rem; font-weight: 500; min-height: 46px; background: #fff; }
.qw-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-light); }
.qw-check { display: flex; align-items: center; gap: 0.5em; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin: 0.6rem 0 0.9rem; cursor: pointer; min-height: 32px; }
.qw-check input { width: 18px; height: 18px; accent-color: var(--primary); }
.quote-widget .btn { margin-top: 0.2rem; padding: 1rem 1rem; font-size: 1rem; white-space: nowrap; }
.quote-widget .cta-note { margin-bottom: 0; }

/* ---------- Proof strip ---------- */
.proof-strip { background: #fff; border-bottom: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (min-width: 900px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-cell { padding: 1.4rem 1rem; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-cell:nth-child(2n) { border-right: 0; }
@media (min-width: 900px) { .proof-cell { border-bottom: 0; } .proof-cell:nth-child(2n) { border-right: 1px solid var(--border); } .proof-cell:last-child { border-right: 0; } }
.proof-cell strong { display: block; font-size: clamp(1.35rem, 2.6vw, 1.8rem); font-weight: 800; color: var(--primary); letter-spacing: -0.02em; line-height: 1.15; }
.proof-cell span { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.25em; }

/* ---------- Credentials ---------- */
.cred-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cred-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.cred-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); padding: 1.5rem; box-shadow: var(--shadow-s); }
.cred-icon { color: var(--primary); background: var(--accent-light); border-radius: 12px; padding: 10px; width: 46px; height: 46px; margin-bottom: 0.9rem; }
.cred-card h3 { margin-bottom: 0.35em; }
.cred-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Services ---------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; gap: 0.8rem; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.icon-badge { width: 52px; height: 52px; border-radius: var(--radius-m); background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.icon-badge svg { color: var(--primary); }
.service-card a.card-link { font-weight: 700; color: var(--primary); text-decoration: none; margin-top: auto; }
.service-card a.card-link:hover { text-decoration: underline; }

.service-hero { display: grid; gap: 1.5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border-radius: var(--radius-l); padding: 2rem; margin: 0 0 2.5rem; box-shadow: var(--shadow-m); position: relative; overflow: hidden; }
@media (min-width: 900px) { .service-hero { grid-template-columns: 1.3fr 0.7fr; align-items: center; padding: 2.5rem; } }
.service-hero h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.5rem 0 0.4em; }
.service-hero-tag { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #cfe0ff; }
.service-hero-lead { color: #dce6fb; font-size: 1.05rem; max-width: 52ch; }
.service-hero-points { display: grid; gap: 0.5rem; margin: 1rem 0 1.5rem; }
.service-hero-points li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.95rem; color: #eef3fd; }
.service-hero-points svg { flex: none; margin-top: 4px; color: var(--accent); }
.service-hero .btn-primary { background: #fff; color: var(--primary); }
.service-hero .btn-primary:hover { background: var(--accent-light); }
.service-hero-visual { display: none; justify-content: center; align-items: center; color: rgba(255,255,255,0.22); }
@media (min-width: 900px) { .service-hero-visual { display: flex; } }
.other-services-title { font-size: 1.05rem; color: var(--muted); font-weight: 700; margin: 0 0 1rem; }

/* ---------- Étapes ---------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); }
.step-num { font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.7rem; }
.step h3 { margin-bottom: 0.3em; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Avis ---------- */
.reviews-google { font-size: 0.95rem; color: var(--muted); margin: -0.5rem 0 1.2rem; }
.reviews-track { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.review-card { position: relative; scroll-snap-align: start; flex: 0 0 min(340px, 84vw); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); padding: 1.5rem; box-shadow: var(--shadow-s); }
.review-mark { position: absolute; top: 1rem; right: 1.1rem; color: var(--accent-light); }
.review-top { display: flex; align-items: center; gap: 0.7em; margin-bottom: 0.8em; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-source { font-size: 0.78rem; color: var(--muted); }
.review-source a { color: var(--primary); }
.stars { display: flex; gap: 2px; margin-bottom: 0.6em; }
.star-on { color: #c99400; fill: #c99400; }
.review-text { font-size: 0.95rem; color: var(--text); margin: 0; }

/* ---------- Route visuelle + zones ---------- */
.route-visual { position: relative; margin: 1.6rem 0 0.6rem; padding: 1.4rem 0 0.6rem; }
.route-line { display: flex; justify-content: space-between; align-items: flex-start; position: relative; }
.route-line::before { content: ""; position: absolute; left: 6px; right: 6px; top: 9px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; }
.route-node { position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex: 1; }
.route-node:first-child { align-items: flex-start; } .route-node:last-child { align-items: flex-end; }
.route-dot { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid var(--primary); box-shadow: 0 0 0 4px var(--bg-alt); z-index: 1; }
.route-node:last-child .route-dot { border-color: var(--accent); }
.route-label { font-weight: 800; color: var(--ink); font-size: clamp(1rem, 2.4vw, 1.3rem); letter-spacing: 0.02em; text-transform: uppercase; }
.route-truck { position: absolute; top: -4px; left: 0; color: var(--primary); background: var(--bg-alt); padding: 0 4px; transform: translateX(0); }
@media (prefers-reduced-motion: no-preference) {
  .route-truck { animation: route-drive 7s ease-in-out infinite; }
  @keyframes route-drive { 0%, 8% { left: 0; } 46%, 54% { left: 50%; transform: translateX(-50%); } 92%, 100% { left: 100%; transform: translateX(-100%); } }
}
@media (prefers-reduced-motion: reduce) { .route-truck { left: 50%; transform: translateX(-50%); } }
.route-caption { font-size: 1.05rem; font-weight: 600; color: var(--ink); max-width: 60ch; margin: 1.2rem 0 0.6rem; }
.zone-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.zone-chip { background: var(--accent-light); color: var(--primary); font-weight: 700; font-size: 0.9rem; padding: 0.5em 1em; border-radius: 999px; }
.zone-chip-alt { background: var(--primary); color: #fff; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.1rem 0; font-weight: 700; font-size: 1rem; color: var(--ink); font-family: inherit; display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 44px; }
.faq-q svg { flex: none; transition: transform 0.2s ease; color: var(--primary); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 0 1.1rem; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta-final { background: var(--primary); color: #fff; }
.cta-final h2 { color: #fff; }
.cta-final > .container > p { color: #dce6fb; }
.cta-channels { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 720px) { .cta-channels { grid-template-columns: repeat(2, 1fr); } }
.cta-channel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-m); padding: 1.3rem; display: flex; gap: 1rem; align-items: flex-start; }
.cta-channel svg { color: var(--accent); flex: none; }
.cta-channel a { font-weight: 700; text-decoration: none; color: #fff; font-size: 1.05rem; }
.cta-channel p { margin: 0.3em 0 0; font-size: 0.88rem; color: #dbe6fb; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfd7e8; font-size: 0.9rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding: 2.75rem 0 1.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.9em; }
.footer-grid a { color: #cfd7e8; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-grid li { margin-bottom: 0.55em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.1rem 0; font-size: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between; }

/* ---------- Rail / barre mobile ---------- */
.rail { display: none; }
@media (min-width: 900px) {
  .rail { display: flex; flex-direction: column; gap: 0.6rem; position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 40; }
  .rail-btn { display: flex; align-items: center; gap: 0.6em; height: 56px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-m); border: 1px solid var(--border); overflow: hidden; width: 56px; padding: 0 17px; transition: width 0.25s ease; text-decoration: none; color: var(--ink); white-space: nowrap; }
  .rail-btn svg { flex: none; }
  .rail-btn span { opacity: 0; transition: opacity 0.15s ease; font-weight: 700; font-size: 0.9rem; }
  .rail-btn:hover, .rail-btn:focus-visible { width: auto; }
  .rail-btn:hover span, .rail-btn:focus-visible span { opacity: 1; }
  .rail-btn.rail-tel svg { color: var(--primary); }
  .rail-btn.rail-devis { background: var(--accent); color: #fff; border-color: var(--accent); }
}
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: #fff; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1.4fr; padding-bottom: env(safe-area-inset-bottom, 0); }
@media (min-width: 900px) { .mobile-bar { display: none; } }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; padding: 0.6rem 0; text-decoration: none; color: var(--ink); font-size: 0.74rem; font-weight: 700; min-height: 58px; }
.mobile-bar .bar-devis { background: var(--primary); color: #fff; }

/* ---------- Formulaires ---------- */
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4em; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.85rem 0.9rem; border: 1.5px solid var(--border); border-radius: var(--radius-s); font-size: 1rem; font-family: inherit; background: #fff; min-height: 46px; color: var(--text); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-light); }
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-color: var(--danger); }
.form-error { display: none; color: var(--danger); font-size: 0.8rem; margin-top: 0.3em; }
.form-field.is-invalid .form-error { display: block; }
.form-status { padding: 1rem; border-radius: var(--radius-s); font-weight: 700; display: none; margin-bottom: 1rem; }
.form-status.is-visible { display: block; }
.form-status.is-ok { background: #e7f5ec; color: var(--success); }
.form-status.is-error { background: #fbeaea; color: var(--danger); }
.form-row-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.qf-check-field { display: flex; align-items: flex-end; }
.qf-check-field .qw-check { margin: 0 0 0.6rem; color: var(--ink); }

.qf fieldset { border: 0; padding: 0; margin: 0; }
.qf-legend { font-weight: 800; font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; padding: 0; }
.qf-step { display: none; }
.qf-step.is-active { display: block; }
.qf-progress { display: flex; gap: 0.5rem; margin-bottom: 1.6rem; counter-reset: none; }
.qf-progress li { flex: 1; display: flex; align-items: center; gap: 0.5em; font-size: 0.8rem; font-weight: 700; color: var(--muted); padding-bottom: 0.6rem; border-bottom: 3px solid var(--border); }
.qf-progress li span { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--border); color: var(--ink); font-size: 0.75rem; }
.qf-progress li.is-active { color: var(--primary); border-color: var(--primary); }
.qf-progress li.is-active span { background: var(--primary); color: #fff; }
.qf-progress li.is-done { color: var(--success); border-color: var(--success); }
.qf-progress li.is-done span { background: var(--success); color: #fff; }
.qf-progress li[hidden] { display: none; }
.qf-nav { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-top: 0.5rem; }
.qf-nav .btn-block { flex: 1 1 100%; }
@media (min-width: 560px) { .qf-nav .btn-block { flex: 1 1 auto; } }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 1100px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; } }
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.4rem; }
.contact-block h3 { margin-bottom: 0.6em; }
.contact-block ul li { display: flex; gap: 0.6em; margin-bottom: 0.6em; align-items: flex-start; font-size: 0.94rem; }
.contact-block svg { color: var(--primary); flex: none; margin-top: 2px; }
.map-frame { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }
.reviews-compact { display: flex; flex-direction: column; gap: 0.6rem; }
.reviews-compact .rc-line { font-size: 0.92rem; color: var(--text); border-left: 3px solid var(--accent); padding-left: 0.7em; margin: 0; }

/* ---------- Page métier chrome ---------- */
.page-hero { background: var(--bg-alt); padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { margin-bottom: 0.3em; }
.page-hero p { max-width: 70ch; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8em; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.legal-block { max-width: 68ch; }
.legal-block dl { display: grid; grid-template-columns: 1fr; gap: 0.3rem 1rem; }
.legal-block dt { font-weight: 700; color: var(--ink); margin-top: 0.8em; }
.legal-block dd { margin: 0; color: var(--text); }

/* ---------- Reveal / a11y ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 0.8em 1.2em; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
