/* =========================================================================
   MAXAUTO · style.css · Feuille de style principale
   Site pièces & outils. Structure modulaire, prête WordPress.
   Design industriel centré — distinct de ZAUTO.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0; font-weight: var(--fw-bold); letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--alt { background: var(--off-white); }

/* Titres de section — CENTRÉS */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); margin-bottom: 0.7rem;
}
.section--dark .eyebrow { color: var(--orange-400); }
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
  text-align: center;
}
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--text-muted); font-size: var(--fs-lead); margin-top: 0.8rem; }
.section--dark .section-head p { color: var(--text-on-dark); opacity: 0.78; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold); font-size: 0.92rem; border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(244,121,32,.38); }
.btn--dark { background: var(--ink-700); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-600); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--grey-300); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--on-dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--on-dark:hover { background: #fff; color: var(--ink-900); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-weight: var(--fw-semibold); transition: gap var(--dur) var(--ease); font-size: 0.9rem; }
.link-arrow svg { width: 17px; height: 17px; }
.link-arrow:hover { gap: 0.85rem; }

/* ========================================================================
   HEADER — barre sombre
   ======================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(17,19,24,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.header__inner { width: min(100% - 2*var(--gutter), var(--container)); margin-inline: auto; display: flex; align-items: center; gap: var(--space-lg); }
.header__logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: 0; margin-right: auto; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem; height: var(--header-h);
  padding: 0 0.85rem; background: none; border: 0; color: rgba(255,255,255,.7);
  font-size: 0.9rem; font-weight: var(--fw-medium); position: relative;
  transition: color var(--dur) var(--ease);
}
.nav__link:hover, .nav__item:hover .nav__link { color: #fff; }
.nav__link .chev { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav__link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 16px;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav__item:hover .nav__link::after { transform: scaleX(1); }
.nav__item:hover .nav__link .chev { transform: rotate(180deg); }

/* Dropdown */
.megamenu {
  position: absolute; top: calc(var(--header-h) - 8px); left: 50%; transform: translate(-50%, 10px);
  width: min(480px, 88vw); background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 1rem;
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__item:hover .megamenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.megamenu__grid { display: grid; gap: 0.6rem; }
.mm-brand { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--grey-100); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.mm-brand:hover { border-color: var(--accent); background: rgba(244,121,32,.03); }
.mm-brand__logo { height: 30px; width: 60px; display: flex; align-items: center; flex-shrink: 0; }
.mm-brand__logo img { height: 100%; width: auto; object-fit: contain; }
.mm-brand__info { flex: 1; min-width: 0; }
.mm-brand__name { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 0.9rem; display: block; }
.mm-brand__desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.35; margin-top: 0.1rem; }

.header__actions { display: flex; align-items: center; gap: 0.7rem; }
.header__actions .btn { padding: 0.6rem 1rem; font-size: 0.82rem; }
.icon-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: var(--fw-medium); color: rgba(255,255,255,.7); }
.icon-link svg { width: 17px; height: 17px; }
.icon-link:hover { color: #fff; }

.burger { display: none; width: 42px; height: 42px; border: 0; background: none; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; transition: var(--dur) var(--ease); }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--ink-900); color: #fff;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  overflow-y: auto; padding: 1.5rem var(--gutter) 3rem;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 1.05rem; color: rgba(255,255,255,.85); }
.mobile-nav .m-sub { padding-left: 1rem; }
.mobile-nav .m-sub a { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,.55); }
.mobile-nav .m-cta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }

/* ========================================================================
   HERO — plein écran, texte CENTRÉ, motif géo
   ======================================================================== */
.hero {
  position: relative; margin-top: var(--header-h);
  min-height: min(72vh, 600px); display: flex; align-items: center; justify-content: center;
  color: #fff; overflow: hidden;
  background: var(--ink-900); text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(244,121,32,.08) 0%, transparent 60%),
              linear-gradient(180deg, rgba(17,19,24,.85) 0%, rgba(17,19,24,.95) 100%);
}
/* Motif lignes diagonales */
.hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .06;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px
  );
}
.hero__inner { position: relative; z-index: 2; padding-block: 3.5rem 5rem; }
.hero__content { max-width: 960px; margin-inline: auto; }
.hero h1 { font-size: var(--fs-hero); letter-spacing: -0.03em; line-height: 1.08; }
.hero h1 .accent { color: var(--orange-400); }
.hero__lead { font-size: var(--fs-lead); opacity: .72; margin: 1.2rem auto 2rem; max-width: 680px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* Logos franchises — flottants sous le hero */
.trust-bar {
  position: relative; z-index: 3;
  margin-top: -3rem;
}
.trust-bar__inner {
  width: min(100% - 2*var(--gutter), 600px); margin-inline: auto;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
}
.trust-bar__logo { height: 38px; opacity: 1; }
.trust-bar__sep { width: 1px; height: 30px; background: var(--grey-200); }

/* ========================================================================
   STATS — bandeau horizontal compact (pas une section complète)
   ======================================================================== */
.stats-band { padding: clamp(2rem, 4vw, 3rem) 0; background: var(--off-white); border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100); }
.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; /* les séparateurs sont intégrés */
}
.stat {
  text-align: center; padding: 0.8rem 2.5rem;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--grey-300);
}
.stat__num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: var(--fw-bold); color: var(--accent); line-height: 1;
}
.stat__label { margin-top: 0.35rem; font-size: 0.82rem; color: var(--text-muted); }

/* ========================================================================
   FRANCHISES — grandes cartes côte-à-côte avec bordure colorée en haut
   ======================================================================== */
.franchise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.8rem; }
.franchise-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: #fff; border: 1px solid var(--grey-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.franchise-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 4px; background: var(--grad-orange);
}
.franchise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.franchise-card__header {
  padding: 2rem 2rem 0; display: flex; align-items: center; gap: 1.2rem;
}
.franchise-card__logo { height: 44px; width: auto; max-width: 140px; object-fit: contain; }
.franchise-card__badge {
  margin-left: auto; font-size: 0.68rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm); background: var(--off-white); color: var(--grey-500);
}
.franchise-card__body { padding: 1.2rem 2rem 2rem; }
.franchise-card__body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.franchise-card__body p { color: var(--text-muted); font-size: 0.9rem; }
.franchise-card__services {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.8rem 0 1.2rem; padding: 0; list-style: none;
}
.franchise-card__services li {
  font-size: 0.75rem; padding: 0.25rem 0.65rem; border-radius: var(--radius-sm);
  background: var(--off-white); color: var(--grey-700); font-weight: var(--fw-medium);
}

/* ========================================================================
   SERVICES — grille BENTO asymétrique (différent de Zauto)
   ======================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.2rem;
}
.bento-card {
  padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--border);
  background: #fff;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bento-card__ic {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--grad-orange); display: grid; place-items: center; margin-bottom: 1rem;
  flex-shrink: 0;
}
.bento-card__ic svg { width: 24px; height: 24px; color: #fff; }
.bento-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.bento-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 0.8rem; }
.bento-card .link-arrow { margin-top: auto; }

/* ========================================================================
   BANDEAU CTA — centré, pas de grille, pleine largeur
   ======================================================================== */
.cta-section { background: var(--ink-900); position: relative; overflow: hidden; }
.cta-section::before {
  content: ""; position: absolute; inset: 0; opacity: .03;
  background: radial-gradient(circle at 70% 50%, var(--orange-500) 0%, transparent 60%);
}
.cta-section .container { position: relative; text-align: center; }
.cta-section h2 { font-size: var(--fs-h2); color: #fff; }
.cta-section p { color: rgba(255,255,255,.65); font-size: var(--fs-lead); max-width: 560px; margin: 0.8rem auto 2rem; }
.cta-section__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ========================================================================
   « POURQUOI MAXAUTO » — grille 2×2 avec numéros
   ======================================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin-inline: auto;
}
.why-card { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-card__num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent);
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1rem;
  display: grid; place-items: center; line-height: 1;
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ========================================================================
   CONTACT — infos en ligne + map pleine largeur
   ======================================================================== */
.contact-section { position: relative; }
.contact-info-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.5rem; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-item svg { width: 28px; height: 28px; color: var(--accent); margin: 0 auto 0.8rem; }
.contact-info-item strong {
  display: block; font-family: var(--font-display); font-size: 0.88rem;
  color: var(--ink); margin-bottom: 0.3rem;
}
.contact-info-item span { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.contact-map-wrap {
  width: 100%; height: 400px; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: var(--off-white);
}
.contact-map-wrap #map { width: 100%; height: 100%; }

/* ---------- Formulaires ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: var(--fw-semibold); color: var(--grey-700); }
.field input, .field select, .field textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font: inherit; font-size: 0.92rem; background: #fff; transition: border-color var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer { background: var(--ink-900); color: var(--text-on-dark); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer__brand p { opacity: .6; font-size: 0.88rem; max-width: 260px; }
.footer__socials { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; transition: var(--dur) var(--ease);
}
.footer__socials a:hover { background: var(--accent); border-color: var(--accent); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange-400); margin-bottom: 1rem; }
.footer__col a { display: block; padding: 0.3rem 0; font-size: 0.88rem; opacity: .65; }
.footer__col a:hover { opacity: 1; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; padding: 1.2rem 0; font-size: 0.78rem; opacity: .55;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { margin-top: var(--header-h); background: var(--off-white); border-bottom: 1px solid var(--border); }
.breadcrumb .container { padding: 0.85rem 0; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb strong { color: var(--ink-900); font-weight: var(--fw-semibold); }
.breadcrumb + .page-hero { margin-top: 0; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; width: 44px; height: 44px;
  border-radius: var(--radius-sm); background: var(--ink-800); color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--dur) var(--ease); z-index: 90; box-shadow: var(--shadow-md);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); border-color: var(--accent); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Bandeau cookies ---------- */
.cookie-bar {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 95; max-width: 520px;
  background: var(--ink-900); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 1.2rem 1.4rem; display: none;
  color: var(--text-on-dark);
}
.cookie-bar.is-visible { display: block; }
.cookie-bar p { font-size: 0.85rem; opacity: .8; }
.cookie-bar__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.cookie-bar__actions .btn { padding: 0.55rem 1rem; font-size: 0.82rem; }

/* ========================================================================
   PAGE HERO (sous-pages)
   ======================================================================== */
.page-hero {
  margin-top: var(--header-h); padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--grad-dark); color: #fff; text-align: center;
}
.page-hero__content { max-width: 680px; margin-inline: auto; }
.page-hero h1 { font-size: var(--fs-h2); }
.page-hero h1 .accent { color: var(--orange-400); }
.page-hero__lead { font-size: var(--fs-lead); opacity: .72; margin: 1rem auto 0; max-width: 560px; }

/* ========================================================================
   PROSE
   ======================================================================== */
.prose { max-width: 780px; margin-inline: auto; }
.prose p { color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.75; }
.prose h3 { font-size: 1.1rem; margin: 2rem 0 0.6rem; color: var(--ink); }
.prose ul, .prose ol { color: var(--text-muted); padding-left: 1.4rem; margin-bottom: 1.2rem; line-height: 1.75; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent-hover); }

/* ========================================================================
   SERVICE BLOCKS (page Services)
   ======================================================================== */
.service-block {
  display: flex; align-items: flex-start; gap: 2.5rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { flex-direction: row-reverse; }
.service-block__icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--grad-orange); display: grid; place-items: center;
}
.service-block__icon svg { width: 28px; height: 28px; color: #fff; }
.service-block__body { flex: 1; }
.service-block__body h2 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-block__body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }

.check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem;
}
.check-list li {
  position: relative; padding-left: 1.6rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.4rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); opacity: 0.15;
}
.check-list li::after {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 8px; height: 5px; border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}

/* ========================================================================
   FORM CARD (formulaires)
   ======================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.consent {
  flex-direction: row !important; align-items: flex-start; gap: 0.6rem;
}
.consent input[type="checkbox"] {
  margin-top: 0.3rem; accent-color: var(--accent); flex-shrink: 0;
}
.consent label {
  font-size: 0.82rem; color: var(--text-muted); font-weight: var(--fw-regular, 400);
  line-height: 1.5;
}
.consent a { color: var(--accent); text-decoration: underline; }

/* ========================================================================
   BRAND DETAIL (page Nos enseignes)
   ======================================================================== */
.brand-detail {
  display: flex; align-items: center; gap: 3rem;
  padding: 3rem 0; border-bottom: 1px solid var(--border);
}
.brand-detail:last-child { border-bottom: none; }
.brand-detail--reverse { flex-direction: row-reverse; }
.brand-detail__visual {
  flex: 1; border-radius: var(--radius-md); overflow: hidden;
  background: var(--off-white); min-height: 280px; display: flex;
  align-items: center; justify-content: center;
}
.brand-detail__visual img { width: 100%; height: 100%; object-fit: cover; }
.brand-detail__visual.no-img {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--grey-100) 100%);
}
.brand-detail__visual.no-img::after {
  content: "Image à venir"; font-size: 0.85rem; color: var(--grey-400);
}
.brand-detail__body { flex: 1; }
.brand-detail__logo { margin-bottom: 0.8rem; }
.brand-detail__logo img { height: 40px; width: auto; }
.brand-detail__body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.brand-detail__body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.brand-detail__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.brand-detail__tags span {
  font-size: 0.75rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-sm);
  background: var(--off-white); color: var(--grey-700); font-weight: var(--fw-medium);
}

/* ========================================================================
   FEATURES / VALUES (page À propos)
   ======================================================================== */
.features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin-inline: auto;
}
.feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.feature__ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--grad-orange); display: grid; place-items: center;
}
.feature__ic svg { width: 22px; height: 22px; color: #fff; }
.feature__ic--img { background: var(--off-white); }
.feature__ic--img img { width: 28px; height: 28px; }
.feature h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.feature p { color: var(--text-muted); font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* ========================================================================
   TILES (pages À propos, Professionnels)
   ======================================================================== */
.tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tile {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.8rem; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile__ic {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--grad-orange); display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.tile__ic svg { width: 24px; height: 24px; color: #fff; }
.tile__ic--img { background: var(--off-white); }
.tile__ic--img img { width: 28px; height: 28px; }
.tile h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.tile p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* ========================================================================
   CTA BAND (bande call-to-action sombre)
   ======================================================================== */
.cta-band {
  background: var(--ink-900); border-radius: var(--radius-md);
  padding: 3rem 3.5rem; display: flex; align-items: center; gap: 3rem;
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .04;
  background: radial-gradient(circle at 80% 50%, var(--orange-500) 0%, transparent 60%);
}
.cta-band > div { position: relative; }
.cta-band h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.cta-band p { opacity: .7; font-size: 0.92rem; margin: 0; max-width: 440px; }
.cta-band .eyebrow { color: var(--orange-400); }
.cta-band__actions { flex-shrink: 0; display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ========================================================================
   COOKIE TABLE (page Gestion des cookies)
   ======================================================================== */
.cookie-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
}
.cookie-table th, .cookie-table td {
  padding: 0.7rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.cookie-table th {
  font-weight: var(--fw-semibold); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--off-white); color: var(--grey-600);
}
.cookie-table td { color: var(--text-muted); }

/* ========================================================================
   CONTACT FORM SPLIT (page Contact dédiée)
   ======================================================================== */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-aside h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.contact-aside__item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-aside__item svg {
  width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 0.15rem;
}
.contact-aside__item strong {
  display: block; font-family: var(--font-display); font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.contact-aside__item span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ========================================================================
   FRANCHISE PAGE HERO (pages Point S / Boutique Bosch)
   ======================================================================== */
.franchise-hero {
  margin-top: var(--header-h); padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--grad-dark); color: #fff; overflow: hidden; position: relative;
}
.franchise-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .04;
  background: radial-gradient(ellipse at 30% 60%, var(--orange-500) 0%, transparent 55%);
}
.franchise-hero .container { position: relative; display: flex; align-items: center; gap: 3rem; }
.franchise-hero__body { flex: 1; }
.franchise-hero__logo { height: 56px; width: auto; margin-bottom: 1.2rem; }
.franchise-hero__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1); color: var(--orange-400); margin-bottom: 1rem;
}
.franchise-hero h1 { font-size: var(--fs-h2); line-height: 1.1; }
.franchise-hero h1 .accent { color: var(--orange-400); }
.franchise-hero__lead { font-size: var(--fs-lead); opacity: .72; margin: 1rem 0 1.8rem; max-width: 560px; line-height: 1.7; }
.franchise-hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.franchise-hero__visual {
  flex: 0 0 380px; height: 300px; border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center;
}
.franchise-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.franchise-hero__visual.no-img::after {
  content: "Image à venir"; font-size: 0.85rem; color: rgba(255,255,255,.3);
}

/* ---- Franchise key figures ---- */
.franchise-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 900px; margin: -2rem auto 0; position: relative; z-index: 2;
}
.franchise-stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.4rem; text-align: center; box-shadow: var(--shadow-sm);
}
.franchise-stat__num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: var(--fw-bold);
  color: var(--accent); line-height: 1;
}
.franchise-stat__label { margin-top: 0.3rem; font-size: 0.8rem; color: var(--text-muted); }

/* ---- Franchise services grid ---- */
.franchise-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.franchise-svc {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.6rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.franchise-svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.franchise-svc__ic {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--grad-orange); display: grid; place-items: center; margin-bottom: 0.9rem;
}
.franchise-svc__ic svg { width: 22px; height: 22px; color: #fff; }
.franchise-svc h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.franchise-svc p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* ---- Franchise strengths ---- */
.strengths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin-inline: auto;
}
.strength { display: flex; gap: 1rem; align-items: flex-start; }
.strength__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent);
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 0.95rem;
  display: grid; place-items: center; line-height: 1;
}
.strength h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.strength p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
