/* ════════════════════════════════════════════════════════════
   Dépannage Jacquet — Design system v2
   ════════════════════════════════════════════════════════════ */

:root {
  /* ─── Couleurs ─── */
  --c-bg:        #f7f8fb;
  --c-bg-soft:   #f1f3f9;
  --c-surface:   #ffffff;
  --c-ink:       #0b1320;
  --c-ink-2:     #1f2a3d;
  --c-muted:     #5d6678;
  --c-muted-2:   #8c93a3;
  --c-line:      #e6e9f0;
  --c-line-2:    #d6dbe5;

  --c-primary:        #e63946;
  --c-primary-2:      #b8232f;
  --c-primary-3:      #8e1822;
  --c-primary-soft:   #fde8ea;
  --c-primary-soft-2: #fdd2d6;

  --c-accent:    #f4a261;
  --c-success:   #1f9d55;
  --c-success-soft: #ddf6e8;

  --c-night:     #0b1320;
  --c-night-2:   #131c2f;
  --c-night-3:   #1d2740;

  /* ─── Radius ─── */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ─── Espacement ─── */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 72px;
  --s-9: 96px;

  /* ─── Ombres ─── */
  --shadow-xs: 0 1px 2px rgba(11,19,32,.05);
  --shadow-sm: 0 2px 6px rgba(11,19,32,.06);
  --shadow-md: 0 8px 24px rgba(11,19,32,.08);
  --shadow-lg: 0 24px 48px rgba(11,19,32,.14);
  --shadow-xl: 0 32px 64px rgba(11,19,32,.18);
  --shadow-cta: 0 10px 22px rgba(230,57,70,.32);

  /* ─── Typo ─── */
  --maxw: 1200px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-disp: 'Space Grotesk', var(--font-sans);

  /* ─── Transitions ─── */
  --t-fast: .15s ease;
  --t-normal: .25s ease;
  --t-slow: .4s ease;
}

/* ════════════════ Reset ════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-primary-2); }
button { font-family: inherit; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-disp);
  color: var(--c-ink);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.3rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 var(--s-4); }
ul { padding-left: 1.2em; }
ul.clean { list-style: none; padding: 0; margin: 0; }
hr { border: none; border-top: 1px solid var(--c-line); margin: var(--s-4) 0; }

::selection { background: var(--c-primary); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-ink); color: #fff; padding: 8px 12px; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; z-index: 9999; }

/* ════════════════ Layout ════════════════ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
section { padding: var(--s-8) 0; }
section.tight { padding: var(--s-7) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-7);
}
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-primary); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 var(--s-3);
}
.section-head .kicker::before {
  content: ''; width: 28px; height: 2px;
  background: var(--c-primary); border-radius: 2px;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; }

/* ════════════════ Icônes SVG ════════════════ */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  width: 1.1em;
  height: 1.1em;
}
.icon-lg  { width: 28px; height: 28px; }
.icon-xl  { width: 40px; height: 40px; }
.icon-2xl { width: 48px; height: 48px; }

/* ════════════════ Topbar ════════════════ */
.topbar {
  background: var(--c-night);
  color: #cbd5e1;
  font-size: .87rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  display: flex; align-items: center; gap: var(--s-5);
  padding: 9px var(--s-5);
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: #cbd5e1; }
.topbar__item .icon { color: var(--c-primary); width: 16px; height: 16px; }
.topbar__sep { opacity: .25; }
.topbar__call { margin-left: auto; color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.topbar__call .icon { color: var(--c-primary); width: 16px; height: 16px; }
.topbar__call:hover { color: var(--c-primary); }
@media (max-width: 760px){
  .topbar__sep { display: none; }
  .topbar__item { font-size: .8rem; }
  .topbar__inner { gap: var(--s-3); padding: 7px var(--s-4); }
}

/* ════════════════ Header ════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--t-normal);
}
.header.scrolled { box-shadow: 0 6px 16px rgba(11,19,32,.06); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); padding: 14px var(--s-5);
}
.brand { display: inline-flex; align-items: center; gap: var(--s-3); color: var(--c-ink); }
.brand:hover { color: var(--c-ink); }
.brand__mark { display: grid; place-items: center; }
.brand__name { font-family: var(--font-disp); font-weight: 700; font-size: 1.16rem; line-height: 1; }
.brand__sub  { display: block; font-size: .76rem; color: var(--c-muted); margin-top: 4px; letter-spacing: .02em; }

/* ─── Nav desktop (dans le header) ─── */
.nav--desktop { display: flex; align-items: center; gap: var(--s-3); }
.nav__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2px; align-items: center;
}
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-ink-2);
  padding: 9px 14px; border-radius: var(--r-pill);
  font-weight: 500; font-size: .94rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__link:hover, .nav__link.active {
  background: var(--c-primary-soft);
  color: var(--c-primary-2);
}
.nav__link .icon { width: 14px; height: 14px; }
.nav__has-sub { position: relative; }
.nav__sub {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 6px;
  box-shadow: var(--shadow-md);
  min-width: 280px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all .2s ease;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub li a {
  display: block; padding: 10px 12px; border-radius: var(--r-sm);
  color: var(--c-ink-2); font-size: .92rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__sub li a:hover { background: var(--c-bg-soft); color: var(--c-primary-2); }
.nav__cta { white-space: nowrap; margin-left: var(--s-2); }

/* ─── Burger (visible mobile uniquement) ─── */
.burger {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
  border-radius: var(--r-sm);
}
.burger:hover { background: var(--c-bg-soft); }
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-ink); margin: 5px 0;
  transition: var(--t-normal); border-radius: 1px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Backdrop derrière le drawer ─── */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,19,32,.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

body.menu-open { overflow: hidden; }

/* ─── Drawer mobile (frère du header dans le DOM, donc PAS contraint par son stacking-context) ─── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  z-index: 999;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 30px rgba(11,19,32,.22);
  overscroll-behavior: contain;
  visibility: hidden; /* évite tab/focus quand fermé */
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--s-5);
  border-bottom: 1px solid var(--c-line);
  flex-shrink: 0;
}
.drawer__title {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 1.1rem; color: var(--c-ink);
}
.drawer__close {
  background: var(--c-bg-soft); border: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  color: var(--c-ink); transition: background var(--t-fast);
}
.drawer__close:hover { background: var(--c-primary-soft); color: var(--c-primary-2); }
.drawer__close .icon { width: 22px; height: 22px; }
.drawer__body {
  flex: 1; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--s-3) var(--s-3);
}
.drawer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.drawer__link {
  display: block; padding: 14px 16px;
  border-radius: var(--r-md);
  color: var(--c-ink-2);
  font-weight: 500; font-size: 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer__link:hover, .drawer__link.active {
  background: var(--c-primary-soft); color: var(--c-primary-2);
}
.drawer__group { display: flex; flex-direction: column; }
.drawer__group-toggle {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border: 0; background: transparent;
  border-radius: var(--r-md);
  color: var(--c-ink-2);
  font: inherit; font-weight: 500; font-size: 1rem;
  text-align: left; cursor: pointer;
  transition: background var(--t-fast);
}
.drawer__group-toggle:hover { background: var(--c-bg-soft); }
.drawer__group-toggle .icon {
  margin-left: auto;
  width: 18px; height: 18px;
  transition: transform var(--t-fast);
}
.drawer__group.open .drawer__group-toggle { background: var(--c-primary-soft); color: var(--c-primary-2); }
.drawer__group.open .drawer__group-toggle .icon { transform: rotate(180deg); }
.drawer__sub {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.drawer__group.open .drawer__sub { max-height: 700px; }
.drawer__sub li a {
  display: block;
  padding: 11px 16px 11px 32px;
  font-size: .94rem;
  color: var(--c-muted);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer__sub li a:hover { background: var(--c-bg-soft); color: var(--c-primary-2); }
.drawer__foot {
  border-top: 1px solid var(--c-line);
  padding: var(--s-4) var(--s-4) calc(env(safe-area-inset-bottom, 0) + var(--s-4));
  flex-shrink: 0;
}
.drawer__foot .btn { width: 100%; justify-content: center; }
.drawer__hours {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: var(--s-3) 0 0;
  color: var(--c-muted); font-size: .85rem;
}
.drawer__hours .icon { color: var(--c-primary); width: 14px; height: 14px; }

/* ─── Bascule desktop / mobile ─── */
@media (max-width: 1000px) {
  .nav--desktop { display: none; }
  .burger { display: block; }
  body.menu-open .float-call { opacity: 0; pointer-events: none; transition: opacity .2s; }
}
@media (min-width: 1001px) {
  .drawer, .nav-backdrop { display: none !important; }
}

/* ════════════════ Boutons ════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  border: 1px solid transparent; font-weight: 600; cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-normal), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  font-size: .95rem;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }
.btn--cta {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--cta:hover { color: #fff; box-shadow: 0 14px 28px rgba(230,57,70,.45); }
.btn--ghost {
  background: transparent; color: var(--c-ink); border-color: var(--c-line-2);
}
.btn--ghost:hover { background: var(--c-night); color: #fff; border-color: var(--c-night); }
.btn--light {
  background: rgba(255,255,255,.95);
  color: var(--c-ink);
  border-color: rgba(255,255,255,.3);
}
.btn--light:hover { background: #fff; color: var(--c-primary-2); border-color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--lg .icon { width: 20px; height: 20px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ════════════════ Hero ════════════════ */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(230,57,70,.32) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(244,162,97,.16) 0%, transparent 45%),
    linear-gradient(135deg, #0b1320 0%, #1a2640 60%, #2a1a26 100%);
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 10vw, 130px);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: .4;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; gap: var(--s-7);
  grid-template-columns: 1.1fr 1fr; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  font-size: .85rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--c-success); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31,157,85,.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,157,85,.3); }
  50% { box-shadow: 0 0 0 8px rgba(31,157,85,.0); }
}
.hero h1 { color: #fff; margin: var(--s-4) 0 var(--s-3); }
.hero__lead { font-size: 1.13rem; color: #cbd5e1; max-width: 580px; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.65rem; color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  color: #94a3b8; font-size: .82rem;
  line-height: 1.4;
  display: block;
}
.hero__visual {
  position: relative; aspect-ratio: 5/4;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(900px) rotateY(-3deg) rotateX(2deg);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(11,19,32,.88); color: #fff; padding: 12px 18px;
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  font-size: .9rem;
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.hero__badge .icon { color: var(--c-primary); width: 26px; height: 26px; }
.hero__badge strong { display: block; color: #fff; font-size: 1rem; line-height: 1.2; }
.hero__badge small { color: #cbd5e1; font-size: .82rem; }
@media (max-width: 920px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { transform: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}

/* ════════════════ Trust strip ════════════════ */
.trust {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.trust__grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(4, 1fr);
  padding: var(--s-6) 0;
}
.trust__item { display: flex; gap: var(--s-3); align-items: center; }
.trust__ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-primary-soft-2));
  color: var(--c-primary);
  flex-shrink: 0;
}
.trust__ico .icon { width: 22px; height: 22px; }
.trust__item strong { display: block; font-family: var(--font-disp); font-size: 1.02rem; line-height: 1.2; }
.trust__item span { color: var(--c-muted); font-size: .85rem; line-height: 1.3; display: block; }
@media (max-width: 760px){
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}

/* ════════════════ Service cards ════════════════ */
.services-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  color: var(--c-ink);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-soft-2);
  color: var(--c-ink);
}
.service-card__media { aspect-ratio: 16/10; overflow: hidden; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: var(--s-5); flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: var(--s-2); font-size: 1.18rem; }
.service-card p { color: var(--c-muted); flex: 1; margin-bottom: var(--s-4); font-size: .95rem; }
.service-card__more {
  margin-top: auto;
  font-weight: 600;
  color: var(--c-primary);
  display: inline-flex; gap: 6px; align-items: center;
  font-size: .92rem;
}
.service-card__more .icon { transition: transform var(--t-fast); width: 16px; height: 16px; }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }
@media (max-width: 920px){ .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .services-grid { grid-template-columns: 1fr; } }

/* ════════════════ Steps ════════════════ */
.steps {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(4, 1fr);
}
.step {
  background: #fff; border: 1px solid var(--c-line);
  padding: var(--s-5); border-radius: var(--r-md);
  position: relative;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.step:hover { border-color: var(--c-primary-soft-2); box-shadow: var(--shadow-sm); }
.step__num {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff; box-shadow: 0 6px 14px rgba(230,57,70,.3);
  font-family: var(--font-disp); font-weight: 700;
  margin-bottom: var(--s-3);
}
.step h3 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.step p { color: var(--c-muted); margin: 0; font-size: .94rem; line-height: 1.55; }
@media (max-width: 920px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* ════════════════ Zones / city cards ════════════════ */
.zones-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(4, 1fr);
}
.zone-card {
  display: block; background: #fff;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md); border: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: all var(--t-fast);
  position: relative;
}
.zone-card::after {
  content: ''; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-bg);
  display: grid; place-items: center;
  color: var(--c-muted-2);
  transition: all var(--t-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d6678' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='9,6 15,12 9,18'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.zone-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-2px);
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}
.zone-card:hover::after {
  background-color: var(--c-primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e63946' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='9,6 15,12 9,18'/%3E%3C/svg%3E");
}
.zone-card strong { display: block; font-family: var(--font-disp); font-size: 1.02rem; padding-right: 22px; }
.zone-card span { color: var(--c-muted); font-size: .84rem; }
@media (max-width: 920px){ .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .zones-grid { grid-template-columns: 1fr; } }

/* ════════════════ Split section ════════════════ */
.split {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child  { order: 1; }
.split__media {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,19,32,.05) 100%);
  pointer-events: none;
}
ul.checks { list-style: none; padding: 0; }
ul.checks li {
  padding: 8px 0 8px 36px;
  position: relative;
  line-height: 1.55;
}
ul.checks li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background-color: var(--c-success-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d55' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 920px){
  .split { grid-template-columns: 1fr; gap: var(--s-6); }
  .split--reverse > :first-child { order: 1; }
  .split--reverse > :last-child  { order: 2; }
}

/* ════════════════ Testimonials ════════════════ */
.testimonials {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(3, 1fr);
}
.testimonial {
  background: #fff; padding: var(--s-5);
  border-radius: var(--r-md); border: 1px solid var(--c-line);
  position: relative;
}
.testimonial__stars {
  color: var(--c-accent);
  margin-bottom: var(--s-2);
  display: inline-flex; gap: 2px;
}
.testimonial__stars .icon { fill: var(--c-accent); stroke: var(--c-accent); width: 16px; height: 16px; }
.testimonial p { font-style: italic; color: var(--c-ink-2); line-height: 1.6; }
.testimonial cite { font-style: normal; color: var(--c-muted); font-size: .88rem; display: block; margin-top: var(--s-3); }
@media (max-width: 920px){ .testimonials { grid-template-columns: 1fr; } }

/* ════════════════ FAQ ════════════════ */
.faq { display: flex; flex-direction: column; gap: 10px; }
details.faq__item {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-5);
  transition: border-color var(--t-fast);
}
details.faq__item[open] { border-color: var(--c-primary-soft-2); }
details.faq__item summary {
  cursor: pointer; font-weight: 600;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  padding: 6px 0;
}
details.faq__item summary::-webkit-details-marker { display: none; }
details.faq__item summary::after {
  content: '';
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e63946' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
details.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e63946' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
details.faq__item p { margin: var(--s-2) 0 var(--s-3); color: var(--c-muted); line-height: 1.6; }

/* ════════════════ Form ════════════════ */
.form-card {
  background: #fff; border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.form-row { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.form-field { margin-bottom: var(--s-3); }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .88rem;
  color: var(--c-ink-2);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-2);
  font: inherit;
  background: #fafbfd;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 0;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(230,57,70,.12);
  background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-msg { padding: 12px 16px; border-radius: var(--r-md); margin-bottom: var(--s-4); font-size: .94rem; }
.form-msg.success { background: var(--c-success-soft); color: var(--c-success); border: 1px solid #b8eccd; }
.form-msg.error { background: #fff0f1; color: var(--c-primary-2); border: 1px solid #ffd1d6; }
@media (max-width: 600px){ .form-row { grid-template-columns: 1fr; } }

/* ════════════════ Google Business band ════════════════ */
.gbp-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,162,97,.12), transparent 40%),
    linear-gradient(135deg, #fff 0%, #f1f3f9 100%);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.gbp-band__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.gbp-band__rating {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.gbp-band__stars {
  display: inline-flex; gap: 2px;
}
.icon--star { fill: #f4a261; stroke: #f4a261; }
.gbp-band__score { font-size: .9rem; color: var(--c-muted); }
.gbp-band__score strong { color: var(--c-ink); font-weight: 700; }
.gbp-band__content h2 { margin-bottom: var(--s-3); }
.gbp-band__content p { color: var(--c-muted); margin-bottom: var(--s-4); }
.gbp-band__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.gbp-band__btn-light { background: #fff; }

.gbp-band__visual { display: flex; justify-content: center; }
.gbp-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-normal);
}
.gbp-card:hover { transform: translateY(-3px); }
.gbp-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--s-4);
}
.gbp-card__head strong {
  display: block; font-family: var(--font-disp);
  font-size: 1.05rem; color: var(--c-ink);
}
.gbp-card__head span {
  display: block; font-size: .85rem; color: var(--c-muted);
}
.gbp-card__rating {
  display: flex; align-items: center; gap: 8px;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--s-3);
}
.gbp-card__score {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 1.5rem; color: var(--c-ink);
}
.gbp-card__stars {
  display: inline-flex; gap: 1px;
}
.gbp-card__count {
  margin-left: auto; color: var(--c-muted); font-size: .82rem;
}
.gbp-card__meta {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.gbp-card__pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: var(--c-bg-soft);
  border-radius: var(--r-pill);
  font-size: .8rem; color: var(--c-ink-2);
  font-weight: 500;
}
.gbp-card__pill .icon { width: 13px; height: 13px; color: var(--c-primary); }
@media (max-width: 880px){
  .gbp-band__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .gbp-band__visual { order: -1; }
  .gbp-card { max-width: 100%; }
}

/* ════════════════ CTA Band ════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--c-night) 0%, var(--c-night-2) 60%, var(--c-night-3) 100%);
  color: #fff; padding: var(--s-7) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(230,57,70,.18), transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band__kicker {
  color: var(--c-primary); margin: 0;
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .8rem; font-weight: 700;
}
.cta-band__title { color: #fff; margin: 4px 0 6px; }
.cta-band__text { color: #cbd5e1; margin: 0; }

/* ════════════════ Footer ════════════════ */
.footer {
  background: var(--c-night); color: #cbd5e1;
  padding: var(--s-8) 0 0;
}
.footer h3 {
  color: #fff; font-size: .98rem; margin: 0 0 var(--s-3);
  font-family: var(--font-disp);
  letter-spacing: .02em;
}
.footer__grid {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-disp); font-size: 1.4rem;
  color: #fff; font-weight: 700;
  margin: 0 0 var(--s-3);
}
.footer__about { color: #94a3b8; font-size: .92rem; line-height: 1.65; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; font-size: .92rem; }
.footer a {
  color: #cbd5e1;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer a:hover { color: #fff; }
.footer a .icon { color: var(--c-primary); width: 14px; height: 14px; }
.footer__contact li {
  display: flex; gap: 10px; margin-bottom: 12px;
  align-items: flex-start;
  color: #cbd5e1; font-size: .92rem;
  line-height: 1.5;
}
.footer__contact li > .icon {
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px; height: 16px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--s-7);
  padding-top: var(--s-4); padding-bottom: var(--s-4);
  display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
  font-size: .85rem; color: #64748b;
}
.footer__bottom a { color: #94a3b8; }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 920px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .footer__grid { grid-template-columns: 1fr; gap: var(--s-5); } }

/* ════════════════ Floating call ════════════════ */
.float-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(230,57,70,.4);
  animation: pulse-call 2.4s infinite;
  transition: transform var(--t-fast), background var(--t-fast), opacity .2s;
}
.float-call:hover { color: #fff; background: var(--c-primary-2); transform: scale(1.05); }
.float-call .icon { width: 24px; height: 24px; }
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 12px 24px rgba(230,57,70,.4), 0 0 0 0 rgba(230,57,70,.6); }
  50% { box-shadow: 0 12px 24px rgba(230,57,70,.4), 0 0 0 16px rgba(230,57,70,0); }
}

/* ════════════════ Page hero (sub-pages) ════════════════ */
.page-hero {
  position: relative; color: #fff;
  background-image:
    linear-gradient(120deg, rgba(11,19,32,.85), rgba(184,35,47,.55)),
    var(--page-hero-bg, none);
  background-size: cover; background-position: center;
  background-color: #0b1320;
  padding: var(--s-8) 0 calc(var(--s-8) + 24px);
}
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .breadcrumb {
  font-size: .88rem;
  color: #cbd5e1;
  margin-bottom: var(--s-4);
  display: inline-flex; align-items: center;
}
.page-hero .breadcrumb a { color: #cbd5e1; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .lead {
  color: #d8def0;
  max-width: 780px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.page-hero__actions { display: flex; gap: var(--s-3); margin-top: var(--s-5); flex-wrap: wrap; }

/* ════════════════ Content grid (article + aside) ════════════════ */
.content-grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
}
.content-grid h2 { margin-top: var(--s-6); }
.content-grid h2:first-child, .content-grid article > h2:first-child { margin-top: 0; }
.aside-card {
  position: sticky; top: 92px;
  background: #fff; padding: var(--s-5);
  border: 1px solid var(--c-line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.aside-card h3 { margin-top: 0; }
.aside-card .price {
  font-family: var(--font-disp);
  font-size: 1.55rem;
  color: var(--c-primary);
  font-weight: 700;
  margin: var(--s-3) 0;
}
.aside-card ul { padding-left: 1.1em; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: var(--s-3); }
@media (max-width: 920px){
  .content-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}

/* ════════════════ Price table ════════════════ */
.price-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.price-table th {
  background: var(--c-night); color: #fff;
  font-family: var(--font-disp); font-weight: 600;
  font-size: .92rem; letter-spacing: .02em;
}
.price-table tbody tr:hover { background: var(--c-bg-soft); }
.price-table td:last-child { font-weight: 700; color: var(--c-primary); white-space: nowrap; }

/* ════════════════ Tags ════════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--c-primary-soft); color: var(--c-primary-2);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .02em;
}
.tag--dark { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.tag--success { background: var(--c-success-soft); color: var(--c-success); }
.tag .icon { width: 13px; height: 13px; }

/* ════════════════ Use cases ════════════════ */
.use-cases {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(3, 1fr);
}
.use-case {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-fast);
}
.use-case:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary-soft-2); }
.use-case__img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.use-case__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.use-case:hover .use-case__img img { transform: scale(1.05); }
.use-case__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,19,32,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.15);
}
.use-case__body { padding: var(--s-4) var(--s-5) var(--s-5); }
.use-case__body h3 { margin-bottom: 6px; font-size: 1.08rem; }
.use-case__body p { color: var(--c-muted); margin: 0; font-size: .94rem; line-height: 1.55; }
@media (max-width: 920px){ .use-cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .use-cases { grid-template-columns: 1fr; } }

/* ════════════════ Image band ════════════════ */
.image-band {
  position: relative;
  min-height: 380px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.image-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(11,19,32,.88) 0%, rgba(11,19,32,.6) 50%, rgba(184,35,47,.4) 100%);
}
.image-band__inner {
  position: relative; padding: var(--s-7) 0;
  max-width: 720px;
}
.image-band h2 { color: #fff; }
.image-band p { color: #d8def0; font-size: 1.05rem; line-height: 1.6; }
.image-band .btn { margin-top: var(--s-3); }

/* ════════════════ Photo strip ════════════════ */
.photo-strip {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(4, 1fr);
}
.photo-strip__item {
  aspect-ratio: 1/1;
  overflow: hidden; border-radius: var(--r-md);
  position: relative;
}
.photo-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-slow);
  filter: saturate(.95);
}
.photo-strip__item:hover img { transform: scale(1.07); filter: saturate(1.1); }
@media (max-width: 760px){ .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════ Pill list ════════════════ */
.pill-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0; list-style: none; margin: 0;
}
.pill-list li {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--c-ink-2);
}
.pill-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
}

/* ════════════════ Info cards (urgences) ════════════════ */
.info-cards {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(3, 1fr);
}
.info-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.info-card:hover { border-color: var(--c-primary-soft-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.info-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-primary-soft-2));
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: var(--s-4);
}
.info-card__icon .icon { width: 22px; height: 22px; }
.info-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.info-card p { color: var(--c-muted); margin: 0; font-size: .94rem; line-height: 1.55; }
@media (max-width: 920px){ .info-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .info-cards { grid-template-columns: 1fr; } }

/* ════════════════ Numbered timeline ════════════════ */
.timeline {
  position: relative; padding: 0; margin: 0;
  list-style: none;
  counter-reset: t-step;
}
.timeline::before {
  content: '';
  position: absolute; left: 19px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-primary-soft) 90%);
}
.timeline li {
  position: relative; padding-left: 56px; margin-bottom: var(--s-5);
}
.timeline li::before {
  content: counter(t-step); counter-increment: t-step;
  position: absolute; left: 0; top: -2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-disp); font-weight: 700;
  box-shadow: 0 0 0 6px #fff, 0 4px 10px rgba(230,57,70,.25);
}
.timeline li h4 { margin: 0 0 4px; font-size: 1.05rem; font-family: var(--font-disp); }
.timeline li p { margin: 0; color: var(--c-muted); line-height: 1.55; }

/* ════════════════ Reveal animation ════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════ Utilitaires ════════════════ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.muted       { color: var(--c-muted); }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0 !important; }
.bg-soft { background: var(--c-bg-soft) !important; }
.bg-white { background: #fff !important; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.flex-center { display: flex; align-items: center; gap: var(--s-2); }

/* ════════════════ Print ════════════════ */
@media print {
  .topbar, .header, .float-call, .cta-band, .footer { display: none; }
  body { background: #fff; }
}
