/* ============================================================
   Broussillon Mécanique Auto — Design "épuré clair premium"
   Refonte complète · structure HTML conservée
   ============================================================ */

/* ---------- Reset & Cross-browser ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font: inherit;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button { cursor: pointer; background: none; border: none; padding: 0; }

:root {
  --ink: #16181c;          /* titres, boutons primaires */
  --ink-soft: #2b2f36;
  --text: #3a3f47;         /* corps de texte */
  --muted: #767c85;        /* texte secondaire */
  --paper: #ffffff;
  --cream: #f7f4ee;        /* fond chaud */
  --cream-2: #efe9e0;
  --line: #e7e1d7;
  --accent: #d2232a;       /* rouge du logo — accent unique */
  --accent-soft: #f7d4d5;
  --cta-heading: #ffffff;  /* titre du CTA final sur fond photo sombre */
  --green: #25c065;        /* réservé WhatsApp */
  --green-2: #16a34a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(22, 24, 28, .06);
  --shadow: 0 18px 50px rgba(22, 24, 28, .10);
  --shadow-lg: 0 30px 80px rgba(22, 24, 28, .14);
  --ease: cubic-bezier(.22, .8, .2, 1);
  --display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: 1rem;
  z-index: 1000;
  padding: .65rem .9rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.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;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(210, 35, 42, .5);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; }

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.55rem, 6vw, 4.6rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: -.01em; }
p { margin: 0; }

/* ---------- Boutons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), color .18s var(--ease);
}
.button svg { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}
.button-primary:hover { background: #000; box-shadow: var(--shadow); }

.button-green {
  color: var(--paper);
  background: var(--green);
  box-shadow: var(--shadow-sm);
}
.button-green:hover { background: var(--green-2); box-shadow: var(--shadow); }

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}
.button-secondary:hover { background: var(--cream); border-color: var(--ink); }

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: 1rem 1.6rem;
  color: var(--paper);
  background: var(--green);
  background-color: var(--green);
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), color .18s var(--ease);
}
.button-whatsapp svg { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
.button-whatsapp:hover { transform: translateY(-2px); background: var(--green-2); box-shadow: var(--shadow); color: var(--paper); }

/* ============================================================
   En-tête
   ============================================================ */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 244, 238, .82);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 244, 238, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(22, 24, 28, .05);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 44px));
  min-height: 78px;
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  display: grid;
  width: 56px; height: 56px;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.site-header .brand-mark img { transform: translateY(-10px); }
.footer .footer-brand .brand-mark { width: var(--brand-logo-w, 56px); height: auto; }
.footer .footer-brand .brand-mark img { width: 100%; height: auto; object-fit: contain; transform: translateY(-8px); }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; text-transform: uppercase; }
.brand-text em {
  display: block;
  width: 100%;
  color: var(--muted);
  font-style: normal;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 600;
}
.menu a { position: relative; padding: 8px 0; opacity: .82; white-space: nowrap; transition: opacity .18s var(--ease); }
.menu a:hover { opacity: 1; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-action, .whatsapp-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: .55rem .95rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease);
}
.phone-action {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}
.phone-action:hover { transform: translateY(-2px); border-color: var(--ink); }
.whatsapp-action { color: var(--paper); background: var(--green); }
.whatsapp-action:hover { transform: translateY(-2px); background: var(--green-2); }
.phone-action svg, .whatsapp-action svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px; height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Héro
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  min-height: min(86vh, 760px);
  background: var(--cream);
}
.hero-photo, .hero-overlay { position: absolute; inset: 0; }
.hero-photo { z-index: -2; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, var(--cream) 6%, rgba(247, 244, 238, .92) 34%, rgba(247, 244, 238, .35) 60%, rgba(247, 244, 238, 0) 80%);
}
.hero-grid { display: grid; padding: 80px 0; }
.hero-copy { max-width: 640px; }
.hero-copy h1 span {
  display: block;
  color: var(--accent);
}
.hero-copy p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0; margin: 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .55rem .95rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero-points svg { width: 20px; height: 20px; color: var(--accent); fill: currentColor; flex: 0 0 auto; }

/* ============================================================
   Bandeau urgence
   ============================================================ */
.urgent-strip {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hazard {
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: repeating-linear-gradient(60deg, var(--accent) 0 16px, var(--ink) 16px 32px);
  opacity: .25;
}
.urgent-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 104px;
  padding: 18px 0;
}
.urgent-grid > * { min-width: 0; }
.urgent-title { display: flex; align-items: center; gap: 16px; min-width: 0; }
.urgent-title > div { min-width: 0; }
.urgent-title svg { width: 44px; height: 44px; color: var(--accent); fill: currentColor; flex: 0 0 auto; }
.urgent-title strong, .urgent-title span { display: block; }
.urgent-title strong { color: var(--paper); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.urgent-title span { color: var(--accent); font-size: 1rem; font-weight: 600; }
.urgent-desc { margin: 6px 0 12px; color: rgba(255, 255, 255, .86); font-size: .95rem; font-weight: 500; }
.urgent-grid ul {
  display: flex; flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0; margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  font-weight: 500;
}
.urgent-grid li { display: inline-flex; align-items: center; gap: 8px; }
.urgent-grid li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.urgent-strip .button-primary {
  color: var(--ink);
  background: var(--paper);
  max-width: 100%;
  text-align: center;
  white-space: normal;
}
.urgent-strip .button-primary:hover { background: var(--accent); }

/* ============================================================
   Chiffres clés
   ============================================================ */
.proof { background: var(--cream); padding: 64px 0 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card {
  transform: translateY(-10px);
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.proof-card:hover { transform: translateY(-14px); box-shadow: var(--shadow); }
.proof-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-value {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.proof-value span[data-count] { color: var(--accent); }
.proof-note { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============================================================
   Titres de section
   ============================================================ */
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p,
.section-heading.dark p {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading p::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.section-heading h2, .section-heading.dark h2 { color: var(--ink); margin: 0; }
.section-heading .section-sub {
  display: block;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.section-heading .section-sub::before { display: none; }

/* ============================================================
   Réalisations
   ============================================================ */
.work { background: var(--paper); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.work-card picture { display: block; overflow: hidden; }
.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.work-card:hover img { transform: scale(1.05); }
.work-card figcaption { display: grid; gap: 4px; padding: 20px 22px 24px; }
.work-tag {
  justify-self: start;
  margin-bottom: 6px;
  padding: 4px 11px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.work-card strong { color: var(--ink); font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.work-note { color: var(--muted); font-size: .94rem; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.service-card svg {
  width: 28px; height: 28px;
  padding: 13px;
  margin-bottom: 20px;
  box-sizing: content-box;
  border-radius: 14px;
  background: var(--cream);
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.service-card:hover svg { background: var(--accent-soft); transform: rotate(-4deg); }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Méthode
   ============================================================ */
.method { background: var(--cream); }
.method-grid { display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: 56px; }
.method .section-heading { margin-bottom: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
  padding: 0; margin: 0;
  list-style: none;
}
.steps li { position: relative; }
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.steps strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 1.2rem; font-weight: 700; }
.steps p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Flotte / pros
   ============================================================ */
.fleet { background: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fleet-copy > p { max-width: 540px; margin-bottom: 24px; color: var(--text); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-soft); font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: .42em;
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.fleet-copy .button { margin-top: 28px; }
.fleet-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.fleet-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 44% 52%; }

/* ============================================================
   Tarifs
   ============================================================ */
.pricing { background: var(--cream); overflow: hidden; }
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  grid-template-areas:
    "heading panel"
    "main panel"
    "note note"
    "table table";
  gap: 32px 40px;
  align-items: start;
}
.pricing-heading { grid-area: heading; margin-bottom: 12px; min-width: 0; }
.pricing-main { grid-area: main; min-width: 0; }
.pricing-panel { grid-area: panel; width: 100%; max-width: 260px; align-self: stretch; min-width: 0; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; min-width: 0; }
.price-cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-width: 0;
}
.price-cards article:first-child { border-color: var(--accent); box-shadow: var(--shadow); }
.price-cards article:first-child::before {
  content: "Le plus demandé";
  position: absolute;
  top: -11px; left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-cards h3 { color: var(--ink); white-space: nowrap; font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.price-cards strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.price-sub { margin: 0 0 14px; color: var(--muted); font-size: .95rem; font-weight: 600; }
.price-points { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.price-points li { position: relative; padding-left: 24px; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.price-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 10px; height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.tariff-note { grid-area: note; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); min-width: 0; }
.tariff-note p { color: var(--ink-soft); font-size: .98rem; }
.tariff-note p + p { margin-top: 10px; }

.tariff-table { grid-area: table; overflow-x: auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); min-width: 0; }
.tariff-table table { width: 100%; min-width: 720px; border-collapse: collapse; }
.tariff-table thead th { text-align: left; padding: 14px 16px; color: var(--ink); background: var(--cream); border-bottom: 1px solid var(--line); font-weight: 800; font-size: 1.045rem; }
.tariff-table tbody th, .tariff-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.tariff-table tbody th { color: var(--ink); font-weight: 800; }

.pricing-panel {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pricing-panel .check-list { margin-bottom: 28px; }
.pricing-panel .check-list li { color: rgba(255, 255, 255, .9); }
.pricing-panel .check-list li::before { background: rgba(224, 161, 22, .25); }
.pricing-panel .check-list li::after { border-color: var(--accent); }
.pricing-panel .button { width: 100%; margin-top: auto; color: var(--paper); background: var(--accent); }

/* ============================================================
   Zones
   ============================================================ */
.zones { background: var(--paper); }
.zones-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.zone-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; padding: 0; margin: 0; list-style: none; }
.zone-list li { position: relative; padding-left: 24px; color: var(--ink-soft); font-weight: 600; }
.zone-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; border: 2px solid var(--accent); border-radius: 50%; }
.map-card {
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
}
.map-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 866 / 810;
  background: transparent;
  box-shadow: none;
  filter: none;
}
.map-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 12px 16px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  font-size: .82rem;
}
.map-credit a {
  color: var(--ink-soft);
  font-weight: 600;
}
.map-credit a:hover { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: rgb(247, 244, 238); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.faq-item { overflow: hidden; background: rgb(255, 255, 255); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s var(--ease); }
.faq-item.is-open { border-color: var(--accent); background: var(--paper); }
.faq-trigger { display: flex; justify-content: space-between; gap: 14px; width: 100%; padding: 20px 22px; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 700; cursor: pointer; }
.faq-trigger::after { content: ""; width: 11px; height: 11px; margin-top: 5px; flex: 0 0 auto; border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: rotate(45deg); transition: transform .22s var(--ease); }
.faq-item.is-open .faq-trigger::after { transform: rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ============================================================
   CTA final
   ============================================================ */
.final-cta { color: var(--paper); background: linear-gradient(90deg, rgba(15, 16, 19, .92), rgba(15, 16, 19, .68) 60%, rgba(15, 16, 19, .45)), url("assets/mecanicien-itinerant-guadeloupe.jpg") center / cover; }
@supports (background: image-set(url("assets/mecanicien-itinerant-guadeloupe-1200.webp") 1x)) {
  .final-cta { background: linear-gradient(90deg, rgba(15, 16, 19, .92), rgba(15, 16, 19, .68) 60%, rgba(15, 16, 19, .45)), image-set(url("assets/mecanicien-itinerant-guadeloupe-1200.webp") 1x, url("assets/mecanicien-itinerant-guadeloupe.jpg") 1x) center / cover; }
}
.final-cta h2 {
  color: var(--cta-heading);
  text-shadow: 0 2px 12px rgba(15, 16, 19, .28);
}
.final-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 80px 0; }
.final-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Pied de page
   ============================================================ */
.footer { padding: 72px 0 90px; color: var(--muted); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer h2 { position: relative; margin-bottom: 18px; padding-bottom: 10px; color: var(--paper); font-size: 1rem; }
.footer h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; border-radius: 2px; background: var(--accent); }
.footer a, .footer span { display: block; margin-bottom: 10px; color: rgba(255, 255, 255, .6); font-weight: 500; white-space: nowrap; }
.footer a:hover { color: var(--accent); }
.footer .cookie-settings-link { display: block; margin-bottom: 10px; color: rgba(255, 255, 255, .6); font-weight: 500; white-space: nowrap; }
.footer .cookie-settings-link:hover { color: var(--accent); }
.footer a.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: fit-content;
  margin-top: 6px;
  padding: .85rem 1.1rem;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-weight: 800;
}
.footer a.button-whatsapp:hover { color: var(--paper); background: var(--green-2); }

.payments {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.payments-label {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  padding: 0 10px;
  background: var(--paper);
  border: 1px solid rgba(22, 24, 28, .08);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}
.pay img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 18px;
  object-fit: contain;
}
.pay--mastercard img { height: 20px; }
.pay--sumup {
  min-width: 76px;
  padding-inline: 12px;
}
.pay--sumup img { height: 16px; }

.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .9rem; flex-wrap: wrap; }
.footer-bottom a { white-space: normal; overflow-wrap: anywhere; }
.mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 100; display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: rgba(247, 244, 238, .96); border-top: 1px solid var(--line); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .55rem; min-width: 0; min-height: 52px; padding: 12px 10px; border-radius: 12px; text-align: center; font-size: .9rem; font-weight: 700; line-height: 1.2; white-space: normal; overflow-wrap: anywhere; }
.mobile-cta a svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.mobile-cta a:first-child { color: var(--paper); background: var(--ink); }
.mobile-cta a.button-whatsapp { color: var(--paper); background: var(--green); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 32px;
  }
  .pricing-heading, .pricing-main, .pricing-panel, .tariff-note, .tariff-table {
    grid-area: auto;
    grid-column: 1;
  }
  .pricing-panel { max-width: 100%; }
}

@media (max-width: 940px) {
  .section { padding: 80px 0; }
  .nav-shell { grid-template-columns: auto auto; min-height: 68px; }
  .menu-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; justify-self: end; }
  .menu { position: fixed; top: 68px; right: 0; left: 0; display: grid; gap: 0; justify-content: stretch; padding: 14px 24px 24px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .24s var(--ease); }
  .menu.is-open { transform: translateY(0); }
  .nav-actions { display: none; }
  .hazard { width: 92px; }
  .urgent-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title button"
      "content content";
    align-items: start;
    gap: 18px 20px;
    padding: 20px 0;
  }
  .urgent-grid .urgent-title { grid-area: title; }
  .urgent-grid > div:not(.urgent-title) { grid-area: content; }
  .urgent-grid > .button { grid-area: button; align-self: center; justify-self: end; }
  .proof-grid, .method-grid, .fleet-grid, .zones-grid, .final-grid, .footer-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .payments { flex-direction: column; align-items: flex-start; }

  .pricing .price-cards { display: flex; flex-wrap: nowrap; gap: 16px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .pricing .price-cards article { flex: 0 0 clamp(260px, 78vw, 360px); scroll-snap-align: start; }
  .pricing .price-cards h3,
  .pricing .price-cards strong { white-space: normal; text-wrap: balance; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { width: calc(100% - 36px); }
  h1 { font-size: clamp(2.3rem, 9.5vw, 3.15rem); line-height: 1.08; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.3rem); line-height: 1.1; }
  .section { padding: 72px 0; }
  .hero-grid { padding: 64px 0 56px; }
  .hero-copy p {
    margin-bottom: 24px;
    font-size: 1.03rem;
    line-height: 1.62;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 26px;
  }
  .hero-points {
    gap: 8px;
  }
  .hero-points li {
    width: 100%;
    padding: .7rem .9rem;
    font-size: .9rem;
  }
  .section-heading .section-sub {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.65;
  }
  .hazard { width: 100%; height: 12px; inset: 0 0 auto 0; }
  .urgent-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "content"
      "button";
    gap: 16px;
    min-height: 0;
    padding: 26px 0 22px;
  }
  .urgent-title {
    align-items: flex-start;
    gap: 14px;
  }
  .urgent-title svg {
    width: 36px;
    height: 36px;
  }
  .urgent-title strong { font-size: 1.15rem; }
  .urgent-title span { font-size: .95rem; }
  .urgent-grid ul { gap: 8px 14px; }
  .urgent-grid > .button {
    width: 100%;
    justify-self: stretch;
  }
  .service-grid, .steps, .zone-list, .faq-grid, .work-grid { grid-template-columns: 1fr; }
  .steps {
    gap: 24px;
  }
  .steps span {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    font-size: 1.7rem;
  }
  .steps strong {
    margin-bottom: 6px;
    font-size: 1.08rem;
  }
  .steps p,
  .faq-a p {
    font-size: .96rem;
    line-height: 1.6;
  }
  .final-actions {
    flex-direction: column;
    width: 100%;
  }
  .final-actions .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .mobile-cta { display: grid; }
}

@media (max-width: 360px) {
  body { padding-bottom: calc(132px + env(safe-area-inset-bottom)); }
  .mobile-cta { grid-template-columns: 1fr; }
}

@media (max-width: 680px) and (orientation: portrait) {
  .phone-action, .whatsapp-action { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .phone-action span, .whatsapp-action span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
}

/* ============================================================
   Modal & Toast
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 220; display: none; }
.modal.is-open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(22, 24, 28, .62); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.modal-dialog { position: relative; width: min(920px, calc(100% - 36px)); max-height: calc(100vh - 48px); margin: 24px auto; padding: 26px; overflow: auto; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-close { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin-top: 18px; }
.modal-field label { display: block; margin-bottom: 6px; font-weight: 800; font-size: .92rem; }
.modal-field input, .modal-field textarea { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: var(--cream); font: inherit; }
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 18px; }
.cookie-dialog { width: min(760px, calc(100% - 36px)); }
.cookie-header h2 { margin-bottom: 10px; font-size: clamp(1.55rem, 3.2vw, 2.1rem); }
.cookie-header p { margin: 0; color: var(--muted); font-size: .98rem; max-width: 66ch; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; margin-top: 18px; }
.cookie-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.cookie-links a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-links a:hover { color: var(--accent); }
.cookie-categories { display: grid; gap: 12px; margin-top: 18px; }
.cookie-category { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 14px 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; }
.cookie-category strong { display: block; margin: 0 0 4px; color: var(--ink); font-size: 1rem; font-weight: 900; }
.cookie-category p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.cookie-switch { display: inline-flex; align-items: center; flex: 0 0 auto; }
.cookie-switch input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.cookie-switch span { position: relative; width: 50px; height: 30px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6); transition: background .18s var(--ease), border-color .18s var(--ease); }
.cookie-switch span::after { content: ""; position: absolute; top: 50%; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); transform: translateY(-50%); transition: transform .18s var(--ease), background .18s var(--ease); }
.cookie-switch input:checked + span { background: rgba(37, 192, 101, .14); border-color: rgba(37, 192, 101, .45); }
.cookie-switch input:checked + span::after { transform: translateY(-50%) translateX(20px); background: var(--green); }
.cookie-switch input:disabled + span { opacity: .6; }
.cookie-switch input:focus-visible + span { outline: 3px solid rgba(210, 35, 42, .5); outline-offset: 3px; }
.toast { position: fixed; left: 50%; bottom: 18px; z-index: 230; transform: translateX(-50%) translateY(16px); opacity: 0; padding: 12px 16px; border-radius: 999px; background: var(--ink); color: var(--paper); font-weight: 700; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 620px) {
  .modal-grid { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .button { width: 100%; }
  .cookie-category { align-items: center; }
}
