/* ==========================================================
   Remorquage Joliette — feuille de style
   Palette : charbon « asphalte » (sérieux, nuit, route),
   jaune sécurité (signalisation, appels à l'action),
   rouge feux d'urgence (accents ponctuels). Coins droits.
   ========================================================== */

@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-condensed-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 800; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-condensed-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 400; font-style: normal; font-display: swap; src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-style: normal; font-display: swap; src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 700; font-style: normal; font-display: swap; src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2"); }

:root {
  --ink: #121417;
  --asphalt: #1B1F24;
  --steel: #2A3038;
  --slate: #3A424D;
  --yellow: #FFC20E;
  --yellow-dark: #E0A500;
  --yellow-soft: #FFF4CC;
  --red: #D7261E;
  --body: #2E343B;
  --muted: #5B636D;
  --line: #DCDFE3;
  --soft: #F3F4F6;
  --bg: #FFFFFF;
  --on-dark: #D5DAE1;
  --success: #15803D;
  --error: #B91C1C;

  --font-heading: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-h1: clamp(2.4rem, 5.4vw, 4.1rem);
  --fs-h2: clamp(1.85rem, 3.6vw, 2.75rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.55rem);

  --s-1: .5rem; --s-2: 1rem; --s-3: 1.5rem; --s-4: 2rem; --s-5: 3rem; --s-6: 4rem; --s-7: 6rem;
  --container: 1200px;
  --narrow: 820px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65; color: var(--body); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
a { color: var(--ink); text-decoration-color: var(--yellow-dark); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 600; }
a:hover { background: var(--yellow-soft); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 200; }
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.05; color: var(--ink); letter-spacing: -.005em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.12; }
h4 { font-size: 1.15rem; font-weight: 700; }
p + p { margin-top: 1rem; }
.overline { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.overline::before { content: ""; width: 26px; height: 6px; background: repeating-linear-gradient(-45deg, var(--yellow) 0 6px, var(--ink) 6px 12px); }
.lead { font-size: 1.2rem; color: var(--body); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 768px) { .container { padding-inline: 24px; } }
.narrow { max-width: var(--narrow); }
section { padding-block: var(--s-6); }
@media (min-width: 768px) { section { padding-block: var(--s-7); } }
.bg-soft { background: var(--soft); }
.bg-dark { background: var(--asphalt); color: var(--on-dark); }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .overline { color: var(--yellow); }
.center { text-align: center; }
.mb-2 { margin-bottom: var(--s-2); } .mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); }
.section-head { max-width: 760px; margin-bottom: var(--s-4); }
.section-head.center { margin-inline: auto; }

/* Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .9rem 1.5rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s; line-height: 1.15; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-dark); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--steel); color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Bandeau d'annonce */
.announce { background: var(--yellow); color: var(--ink); font-size: .9rem; font-weight: 700; text-align: center; padding: .45rem 16px; }
.announce a { color: var(--ink); font-weight: 800; white-space: nowrap; }
.announce a:hover { background: transparent; }
.announce .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--red); margin-right: .5rem; vertical-align: 1px; animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .announce .dot { animation: none; } html { scroll-behavior: auto; } }

/* En-tête */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); height: var(--header-h); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 100%; }
.logo:hover { background: transparent; }
.logo img { width: 205px; height: auto; }
@media (max-width: 420px) { .logo img { width: 158px; } }
.main-nav { display: none; }
.main-nav ul { list-style: none; padding: 0; display: flex; gap: 1.4rem; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; padding-block: .3rem; border-bottom: 3px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: transparent; border-bottom-color: var(--yellow); }
@media (min-width: 1024px) { .main-nav { display: block; } }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-call { display: inline-flex; align-items: center; gap: .55rem; background: var(--yellow); color: var(--ink); text-decoration: none; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; padding: .45rem .95rem; white-space: nowrap; line-height: 1.05; }
.header-call:hover { background: var(--yellow-dark); color: var(--ink); }
.header-call svg { width: 20px; height: 20px; flex: none; }
.header-call span { display: flex; flex-direction: column; }
.header-call small { font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .08em; color: var(--red); }
@media (max-width: 480px) { .announce .hide-sm { display: none; } .header-call { padding: .45rem .65rem; font-size: 1.1rem; } }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: var(--ink); color: #fff; border: 0; cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-nav { display: none; position: fixed; inset: var(--header-h) 0 0 0; background: #fff; z-index: 55; overflow-y: auto; padding: 1rem 16px 6rem; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav li a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; text-decoration: none; font-size: 1.1rem; }
.mobile-nav .sub a { font-weight: 500; font-size: 1rem; padding-left: 1rem; }

/* Héros */
.hero { position: relative; background: var(--asphalt); color: var(--on-dark); padding-block: var(--s-5) 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 10%, rgba(255,194,14,.13), transparent 55%), radial-gradient(ellipse at 5% 90%, rgba(215,38,30,.10), transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: var(--s-4); align-items: start; padding-bottom: var(--s-4); }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: var(--s-5); padding-bottom: var(--s-5); } }
.hero h1 { color: #fff; margin-bottom: var(--s-2); }
.hero h1 .accent { color: var(--yellow); }
.hero .overline { color: var(--yellow); }
.hero .lead { color: var(--on-dark); margin-bottom: var(--s-3); max-width: 58ch; }
.hero .checks { list-style: none; padding: 0; display: grid; gap: .55rem; margin-bottom: var(--s-3); }
@media (min-width: 560px) { .hero .checks { grid-template-columns: 1fr 1fr; } }
.checks li { display: flex; gap: .55rem; align-items: flex-start; font-weight: 600; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--yellow); margin-top: 2px; }
.hero a:not(.btn) { color: #fff; }
.hero a:not(.btn):hover { background: transparent; color: var(--yellow); }
.hero-road { position: relative; z-index: 0; height: 150px; background: url("/assets/img/route-depanneuse-joliette.svg") center bottom / auto 150px repeat-x; }
@media (min-width: 768px) { .hero-road { height: 190px; background-size: auto 190px; } }
.hero-sm .hero-road { height: 104px; background-size: auto 104px; }
.hero-phone { color: #fff; font-weight: 700; margin-top: .75rem; }
.hero-phone a { color: #fff; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--s-3); }
.hero-badges span { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); padding: .35rem .7rem; font-size: .88rem; font-weight: 700; color: #fff; }
.hero-badges svg { width: 16px; height: 16px; color: var(--yellow); }

/* Fil d'Ariane */
.breadcrumbs { font-size: .88rem; color: #AEB6C1; margin-bottom: var(--s-2); }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: .35rem; color: #8B95A2; }
.breadcrumbs a { color: var(--on-dark); font-weight: 500; }
.breadcrumbs [aria-current] { color: #fff; font-weight: 600; }

/* Formulaire */
.lead-card { background: #fff; color: var(--body); padding: var(--s-3); border-top: 8px solid var(--yellow); box-shadow: 0 18px 50px rgba(0, 0, 0, .35); }
@media (min-width: 768px) { .lead-card { padding: var(--s-4); } }
.lead-card h2, .lead-card .form-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.75rem; color: var(--ink); margin-bottom: .35rem; line-height: 1.05; }
.lead-card .form-sub { font-size: .95rem; color: var(--muted); margin-bottom: var(--s-2); }
.lead-form .field { margin-bottom: .85rem; }
.lead-form label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .3rem; }
.lead-form label .opt { font-weight: 400; color: var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: .8rem .85rem; border: 2px solid var(--line); background: #fff; color: var(--ink); font-size: 1rem; border-radius: 0; }
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121417' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px; padding-right: 2.4rem; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--ink); outline: 3px solid var(--yellow); outline-offset: 0; }
.lead-form textarea { min-height: 96px; resize: vertical; }
.lead-form .row-2 { display: grid; gap: 0 .85rem; }
@media (min-width: 520px) { .lead-form .row-2 { grid-template-columns: 1fr 1fr; } }
.lead-form .btn { width: 100%; margin-top: .25rem; }
.lead-form .hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .75rem; text-align: center; }
.form-note a { color: var(--muted); }
.form-error { background: #FEF2F2; color: var(--error); border-left: 4px solid var(--error); padding: .75rem 1rem; font-weight: 600; margin-bottom: 1rem; }
.form-error a { color: var(--error); }

/* Barre de confiance */
.trust-bar { background: var(--ink); color: #fff; padding-block: var(--s-3); border-top: 6px solid transparent; border-image: repeating-linear-gradient(-45deg, var(--yellow) 0 14px, var(--ink) 14px 28px) 6; }
.trust-bar ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 900px) { .trust-bar ul { grid-template-columns: repeat(5, 1fr); } }
.trust-bar li { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .95rem; line-height: 1.3; }
.trust-bar svg { width: 30px; height: 30px; flex: none; color: var(--yellow); }

/* Grilles et cartes */
.grid-3 { display: grid; gap: var(--s-3); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: var(--s-3); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-2 { display: grid; gap: var(--s-4); }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: start; } }
.card { display: block; background: #fff; border: 2px solid var(--line); padding: var(--s-3); text-decoration: none; color: var(--body); font-weight: 400; transition: border-color .15s, background .15s, transform .15s; }
a.card:hover { border-color: var(--ink); background: #fff; color: var(--body); transform: translateY(-2px); }
.card h3 { margin-bottom: .5rem; }
.card .icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); margin-bottom: 1rem; }
.card .icon svg { width: 30px; height: 30px; }
.card .more { display: inline-block; margin-top: .9rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--ink); border-bottom: 3px solid var(--yellow); }
.card-dark { background: var(--ink) !important; border-color: var(--ink) !important; color: var(--on-dark) !important; }
.card-dark h3 { color: #fff; }
.card-dark .more { color: var(--yellow); }
.pillar { background: #fff; border-left: 6px solid var(--yellow); padding: var(--s-3); }
.pillar h3 { margin-bottom: .5rem; }
.pillar .fact { display: block; font-family: var(--font-heading); font-weight: 800; color: var(--red); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.bg-soft .pillar, .bg-soft .card { border-color: #fff; }
.bg-soft .pillar { border-left-color: var(--yellow); }

/* Contenu éditorial */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--s-5); margin-bottom: var(--s-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s-4); margin-bottom: .6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin-block: 1rem; }
.prose li { margin-bottom: .45rem; }
.prose li::marker { color: var(--yellow-dark); font-weight: 800; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.25rem; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: var(--ink); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.prose tbody tr:nth-child(even) { background: var(--soft); }
.table-wrap { overflow-x: auto; }
.callout { background: var(--yellow-soft); border-left: 6px solid var(--yellow); padding: 1.1rem 1.25rem; margin-block: 1.5rem; }
.callout strong { color: var(--ink); }
.callout-danger { background: #FDECEC; border-left-color: var(--red); }
.source { font-size: .85rem; color: var(--muted); }
.photo { margin-block: 1.5rem; }
.photo img { width: 100%; height: auto; }
.photo figcaption { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.layout-aside { display: grid; gap: var(--s-5); }
@media (min-width: 1024px) { .layout-aside { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; } }
.aside-sticky { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: var(--s-3); }
.aside-box { border: 2px solid var(--line); padding: var(--s-3); background: #fff; }
.aside-box h2, .aside-box h3 { font-size: 1.45rem; margin-bottom: .75rem; }
.aside-box ul { list-style: none; padding: 0; }
.aside-box li { border-bottom: 1px solid var(--line); }
.aside-box li a { display: block; padding: .55rem 0; text-decoration: none; font-weight: 600; color: var(--ink); }
.aside-box li a:hover { background: var(--yellow-soft); }
.aside-dark { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.aside-dark h2 { color: #fff; }

/* Étapes */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: var(--s-3); }
@media (min-width: 900px) { .steps.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.steps li { counter-increment: step; position: relative; padding: var(--s-3); padding-top: 4.4rem; background: #fff; border: 2px solid var(--line); }
.steps li::before { content: counter(step); position: absolute; top: 1.2rem; left: var(--s-3); width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; }
.steps h3 { margin-bottom: .4rem; font-size: 1.35rem; }
.prose .steps { padding-left: 0; }

/* Zones */
.zone-groups { display: grid; gap: var(--s-4); }
@media (min-width: 700px) { .zone-groups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .zone-groups { grid-template-columns: repeat(3, 1fr); } }
.zone-group h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: .75rem; }
.zone-list { list-style: none; padding: 0; display: grid; gap: .5rem; }
.zone-list a { display: flex; justify-content: space-between; align-items: center; gap: .5rem; padding: .8rem 1rem; background: #fff; border: 2px solid var(--line); text-decoration: none; font-weight: 700; color: var(--ink); }
.zone-list a:hover { border-color: var(--ink); background: #fff; }
.zone-list a::after { content: "→"; color: var(--yellow-dark); }
.bg-soft .zone-list a { border-color: #fff; }
.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips a { display: inline-block; padding: .45rem .8rem; background: #fff; border: 2px solid var(--line); font-weight: 600; text-decoration: none; color: var(--ink); font-size: .95rem; }
.chips a:hover { border-color: var(--ink); background: #fff; }

/* Prix */
.price-table td:last-child, .price-table th:last-child { white-space: nowrap; font-weight: 700; color: var(--ink); }

/* FAQ */
.faq details { border-bottom: 2px solid var(--line); }
.faq summary { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; line-height: 1.2; color: var(--ink); cursor: pointer; list-style: none; position: relative; padding: 1.1rem 2.5rem 1.1rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: .75rem; font-size: 1.8rem; color: var(--ink); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }
.faq details > div { padding-bottom: 1.2rem; }
.bg-soft .faq details { border-color: #D4D8DD; }

/* Bande d'appel à l'action */
.cta-band { background: var(--yellow); color: var(--ink); text-align: center; position: relative; }
.cta-band h2 { color: var(--ink); margin-bottom: .75rem; }
.cta-band p { font-size: 1.15rem; margin-bottom: var(--s-3); color: var(--ink); }
.cta-band .btn-row { justify-content: center; }

/* Section formulaire milieu de page */
.mid-form { background: var(--asphalt); color: var(--on-dark); position: relative; overflow: hidden; }
.mid-form::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 10% 20%, rgba(255,194,14,.10), transparent 55%); }
.mid-form .container { position: relative; }
.mid-form h2 { color: #fff; }
.mid-form .overline { color: var(--yellow); }
.mid-form a:not(.btn) { color: #fff; }

/* Pied de page */
.site-footer { background: var(--ink); color: #BFC6CF; padding-block: var(--s-5) var(--s-3); font-size: .95rem; }
.site-footer a { color: #E8ECF0; text-decoration: none; font-weight: 500; }
.site-footer a:hover { color: var(--yellow); background: transparent; text-decoration: underline; }
.footer-grid { display: grid; gap: var(--s-4); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h2 { font-size: 1.15rem; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-phone { display: inline-block; margin-top: .75rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem; color: var(--yellow) !important; }
.footer-bottom { margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #98A2AE; }
.hours dt { font-weight: 700; color: #fff; }
.hours dd { margin: 0 0 .5rem; }

/* Barre d'appel mobile */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: 1.4fr 1fr; padding-bottom: env(safe-area-inset-bottom); background: var(--ink); transform: translateY(110%); transition: transform .25s ease; }
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .45rem; min-height: 58px; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; text-decoration: none; }
.mobile-cta a:hover { background: inherit; }
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta .call { background: var(--yellow); color: var(--ink); }
.mobile-cta .quote { background: var(--ink); color: #fff; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 58px; } }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.merci-box { background: #fff; color: var(--body); padding: var(--s-4); border-top: 8px solid var(--success); max-width: 680px; }

/* Liens dans les formulaires posés sur fond sombre */
.lead-card a, .hero .lead-card a:not(.btn), .mid-form .lead-card a:not(.btn) { color: var(--muted); }
.hero h1 .accent { display: block; }
