/*!
Theme Name: Serrurier Nice V2
Theme URI: https://www.serrurier-a-nice.fr/
Description: Thème dark premium avec glassmorphism, animations, et design orienté conversion.
Version: 2.0.9
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: sv2
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Palette */
  --navy:        #080e1c;
  --navy-2:      #0d1528;
  --navy-3:      #131d35;
  --navy-4:      #1a2644;
  --navy-card:   rgba(13,21,40,.85);
  --gold:        #f59e0b;
  --gold-light:  #fcd34d;
  --gold-dim:    rgba(245,158,11,.15);
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-dim:   rgba(34,197,94,.15);
  --white:       #ffffff;
  --text:        #e2e8f0;
  --muted:       #94a3b8;
  --border:      rgba(255,255,255,.07);
  --border-gold: rgba(245,158,11,.25);

  /* Typography */
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing / Layout */
  --max-w:   1220px;
  --pad:     clamp(1rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);

  /* Radii */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(245,158,11,.20);
  --shadow-card: 0 8px 40px rgba(0,0,0,.4);
  --shadow-btn:  0 4px 20px rgba(34,197,94,.35);

  /* Transitions */
  --t: 250ms cubic-bezier(.4,0,.2,1);
  --t-slow: 500ms cubic-bezier(.4,0,.2,1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

svg { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: 820px; }

.accent { color: var(--gold); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HELPERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding-block: var(--section); }
.section--light { background: var(--navy-2); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-block: .75rem 1rem; }
.section-header p   { color: var(--muted); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: .35em .85em;
  border-radius: var(--r-pill);
}
.section-tag--light { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Primary green CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.75em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: filter var(--t), transform var(--t);
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Call button (gold/phone) */
.btn-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .85em;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: 700;
  padding: 1em 2em;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 30px rgba(245,158,11,.4);
  transition: filter var(--t), transform var(--t);
}
.btn-call:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-call svg { width: 1.4em; height: 1.4em; }
.btn-call span strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.btn-call span small  { font-size: .75rem; font-weight: 500; opacity: .75; }

.btn-call--lg { padding: 1.2em 2.5em; font-size: 1.05rem; }

.btn-call__pulse {
  position: absolute;
  inset: -6px;
  border-radius: var(--r-pill);
  border: 2px solid var(--gold);
  animation: pulse-ring 2s ease infinite;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
  padding: .85em 1.75em;
  border-radius: var(--r-pill);
  transition: border-color var(--t), background var(--t), color var(--t);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-ghost--light { border-color: rgba(255,255,255,.3); color: #fff; }
.btn-ghost--light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOPBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.topbar {
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  font-size: .8125rem;
  color: var(--muted);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .6rem;
  flex-wrap: wrap;
}
.topbar__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  min-width: 0;
}
.topbar__info span { white-space: nowrap; }
.topbar__info span {
  display: flex;
  align-items: center;
  gap: .35em;
}
.topbar__info svg { color: var(--gold); width: .9em; height: .9em; }
.topbar__phone {
  display: flex;
  align-items: center;
  gap: .5em;
  color: var(--white);
  font-weight: 600;
  font-size: .875rem;
}
.topbar__phone svg { color: var(--green); }
.topbar__pill {
  background: var(--green-dim);
  color: var(--green);
  font-size: .7rem;
  font-weight: 600;
  padding: .2em .6em;
  border-radius: var(--r-pill);
  border: 1px solid rgba(34,197,94,.25);
}
@media (max-width: 640px) {
  .topbar__hide-sm { display: none; }
  .topbar__info { gap: .6rem; font-size: .7rem; width: 100%; justify-content: center; }
  .topbar__inner { gap: .4rem; justify-content: center; }
  .topbar__phone { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  /* Sur très petit écran on masque aussi les heures pour éviter le chevauchement */
  .topbar__info span:nth-child(2) { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,14,28,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.logo-text  { display: flex; align-items: center; gap: .6em; }
.logo-icon  { color: var(--gold); width: 2rem; height: 2rem; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-name  { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--white); white-space: nowrap; }
.logo-name em { color: var(--gold); font-style: normal; }

/* Nav */
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
/* Top-level menu only */
.site-nav > ul,
.nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Sub-menus stay hidden until triggered */
.site-nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li { position: relative; }
.site-nav li a,
.nav-list li a {
  display: block;
  padding: .5em .9em;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.site-nav li a:hover,
.nav-list li a:hover,
.site-nav li.current-menu-item > a,
.nav-list li.current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

/* Dropdown submenus */
.site-nav li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: .45em;
  vertical-align: middle;
  opacity: .6;
  transition: transform var(--t);
}
.site-nav li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .5rem;
  padding-top: calc(.5rem + .5rem); /* espace visuel haut */
  margin-top: 0; /* pas de gap entre le parent et le submenu */
  box-shadow: var(--shadow-card);
  z-index: 500;
  list-style: none;
  flex-direction: column !important;
  gap: .1rem;
  max-height: 60vh;
  overflow-y: auto;
}
/* Zone invisible pour garder le hover entre le lien parent et le dropdown */
.site-nav li.menu-item-has-children::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: .5rem;
}
.site-nav li.menu-item-has-children:hover > .sub-menu,
.site-nav li.menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}
.site-nav .sub-menu li a {
  display: block;
  padding: .6em 1em !important;
  font-size: .875rem !important;
  color: var(--muted);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.site-nav .sub-menu li a:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* Mobile submenus */
@media (max-width: 900px) {
  .site-nav li.menu-item-has-children > a::after { float: right; margin-top: .4em; }
  .site-nav .sub-menu {
    position: static;
    transform: none;
    min-width: auto;
    background: rgba(255,255,255,.04);
    border: none;
    border-left: 2px solid var(--border-gold);
    border-radius: 0;
    padding: .25rem 0 .25rem .75rem;
    margin: .25rem 0 .5rem;
    box-shadow: none;
  }
  .site-nav li.menu-item-has-children > .sub-menu { display: none; }
  .site-nav li.menu-item-has-children.open > .sub-menu { display: flex; }
  /* Permettre le retour à la ligne pour les libellés longs (sinon ça sort du drawer) */
  .site-nav .sub-menu li a {
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.3;
  }
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: .5em;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .6em 1.25em;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  transition: filter var(--t);
}
.header__cta:hover { filter: brightness(1.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav-backdrop.active { opacity: 1; pointer-events: auto; }

@media (min-width: 901px) {
  .site-nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .site-nav > ul { flex-direction: row !important; }
  /* Sub-menus are absolutely positioned dropdowns, not flex rows */
  .site-nav .sub-menu { flex-direction: column !important; }
}

@media (max-width: 900px) {
  .hamburger   { display: flex; }
  .header__cta { display: none; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: min(320px, 92vw);
    max-width: 100vw;
    height: 100dvh;
    background: var(--navy-3);
    border-left: 1px solid var(--border);
    padding: 5rem 1.5rem 2rem;
    z-index: 300;
    transition: right var(--t-slow);
    overflow-y: auto;
  }
  .site-nav.open { right: 0; }
  .site-nav > ul,
  .nav-list { flex-direction: column !important; align-items: stretch; gap: .25rem; }
  .site-nav li a,
  .nav-list li a { padding: .75em 1em; font-size: 1rem; }
  .nav-backdrop { display: block; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy);
}

/* Background decorations */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}
.hero__orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.10) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  padding-block: clamp(4rem, 7vw, 6rem);
}

/* Hero content */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: .4em 1em;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
  animation: blink 1.8s ease infinite;
}

.hero__title {
  margin-bottom: 1.25rem;
}
.hero__title .accent { color: var(--gold); }

.hero__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: .35em .8em;
  border-radius: var(--r-pill);
}
.trust-chip svg { color: var(--green); width: .9em; height: .9em; }

/* Hero card */
.hero__card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(245,158,11,.06);
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.hero__card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__card-icon svg { width: 1.4em; height: 1.4em; }
.hero__card-header h2 { font-size: 1.05rem; margin: 0 0 .2rem; }
.hero__card-header p  { font-size: .8rem; color: var(--muted); margin: 0; }

.tarif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.tarif-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  text-align: center;
}
.tarif-val {
  display: block;
  font-family: 'Poppins', var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.tarif-lbl {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .3rem;
}

.hero__card-note {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .85rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}

@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__card { max-width: 480px; }
  .hero { min-height: auto; }
}
@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn-call { width: 100%; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-strip {
  background: var(--navy-2);
  border-block: 1px solid var(--border);
  padding-block: 1.25rem;
}
.trust-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .9rem;
  color: var(--muted);
}
.trust-strip__item svg { color: var(--gold); }
.trust-strip__item strong { color: var(--white); }
.trust-strip__sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}
@media (max-width: 640px) {
  .trust-strip__sep { display: none; }
  .trust-strip__grid { gap: .5rem 1.25rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES GRID
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

a.service-card { text-decoration: none; }

.service-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }
.service-card--accent { border-color: var(--border-gold); }

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  position: relative;
  transition: box-shadow var(--t);
}
.service-card:hover .service-card__icon-wrap { box-shadow: 0 0 20px rgba(245,158,11,.25); }
.service-card__icon { width: 1.6em; height: 1.6em; }
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: .6rem; color: var(--white); }
.service-card p   { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t);
}
.service-card:hover .service-card__cta { gap: .7em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border-block: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1.5rem 2rem;
  position: relative;
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat__sup, .stat__unit {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  vertical-align: super;
}
.stat__lbl {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin-top: .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat { min-width: 0; padding: 1.25rem .75rem; }
  .stat__num { font-size: clamp(2rem, 10vw, 2.8rem); }
  .stat__sup, .stat__unit { font-size: 1.1rem; }
  .stat__lbl { font-size: .75rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY US
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* Visual block */
.why-visual {
  position: relative;
}
.why-visual__card {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.why-visual__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(245,158,11,.12) 0%, transparent 60%);
}
.why-visual__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(245,158,11,.15);
  width: 4rem;
  height: 4rem;
}
.why-visual__icon svg { width: 100%; height: 100%; }
.why-visual__inner { position: relative; }
.why-visual__big {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.why-visual__big sup { font-size: .4em; vertical-align: super; }
.why-visual__inner > span:last-child { color: var(--muted); font-size: 1rem; display: block; margin-top: .5rem; }

/* Floating badges */
.why-visual__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5em;
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-pill);
  padding: .65em 1.1em;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.why-visual__float--1 { top: 1rem;   left: -1.5rem; }
.why-visual__float--2 { bottom: 1rem; right: -1.5rem; }
@media (max-width: 900px) {
  .why-visual__float--1 { left: 0; }
  .why-visual__float--2 { right: 0; }
}

/* Why content */
.why-content .section-tag { margin-bottom: 1rem; }
.why-content h2 { margin-bottom: 1rem; }
.why-content > p { color: var(--muted); margin-bottom: 2rem; }

.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.why-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: .1rem;
}
.why-item h4 { margin-bottom: .25rem; font-size: .95rem; }
.why-item p  { font-size: .875rem; color: var(--muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING TABLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-table {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-size: .9375rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:not(.pricing-row--head):hover { background: rgba(255,255,255,.03); }
.pricing-row span:first-child { display: flex; align-items: center; gap: .6em; color: var(--text); }
.pricing-row span:first-child svg { color: var(--muted); width: 1em; height: 1em; }

.pricing-row--head {
  background: var(--navy-3);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-val {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-row--free { background: var(--green-dim); }
.pricing-row--free span:first-child svg { color: var(--green); }
.pricing-val--free { color: var(--green) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reviews-section { background: var(--navy-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--t), transform var(--t);
}
.review-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }

.review-stars { display: flex; gap: .15em; color: var(--gold); }
.review-stars svg { width: 1rem; height: 1rem; }

.review-card blockquote {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
}
.review-card blockquote svg {
  color: var(--gold);
  opacity: .4;
  width: 1.2em;
  height: 1.2em;
  margin-right: .3em;
  vertical-align: top;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-author strong { display: block; font-size: .9rem; color: var(--white); }
.review-author span   { font-size: .8rem; color: var(--muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--navy);
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-section__orb {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,158,11,.09) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section__inner .section-tag { margin-bottom: 1.25rem; }
.cta-section__inner h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-section__inner p  { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--navy-2); border-top: 1px solid var(--border); }

.footer-body { padding-block: clamp(3rem, 6vw, 5rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo svg { color: var(--gold); width: 1.5em; height: 1.5em; }
.footer-logo em { color: var(--gold); font-style: normal; }

.footer-col--brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-phone {
  display: flex;
  align-items: center;
  gap: .5em;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  transition: color var(--t);
}
.footer-phone:hover { color: var(--gold-light); }

.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .3em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: .3em .75em;
  border-radius: var(--r-pill);
}
.footer-badge svg { width: .9em; height: .9em; color: var(--gold); }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-links li a {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .875rem;
  color: var(--muted);
  padding: .2em 0;
  transition: color var(--t), gap var(--t);
}
.footer-links li a svg { width: .8em; height: .8em; color: var(--gold); transition: transform var(--t); }
.footer-links li a:hover { color: var(--white); gap: .7em; }

.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75em;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.4;
}
.footer-contact-list li svg { color: var(--gold); margin-top: .15em; flex-shrink: 0; }
.footer-contact-list li strong { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8125rem; color: var(--muted); }
.footer-bottom-nav { display: flex; gap: 1.25rem; }
.footer-bottom-nav a { font-size: .8125rem; color: var(--muted); transition: color var(--t); }
.footer-bottom-nav a:hover { color: var(--white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE STICKY CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--navy) 0%, rgba(8,14,28,.95) 100%);
  border-top: 1px solid var(--border);
}
.mobile-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: .85em;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: 700;
  padding: 1em 1.5em;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 25px rgba(245,158,11,.4);
  width: 100%;
}
.mobile-cta__btn strong { display: block; font-size: .95rem; line-height: 1.1; }
.mobile-cta__btn small  { font-size: .75rem; font-weight: 500; opacity: .75; }
.mobile-cta__pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill);
  border: 2px solid var(--gold);
  animation: pulse-ring 2s ease infinite;
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  /* Évite que la sticky CTA recouvre le contenu / les boutons en bas de page */
  body { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE INTERVENTIONS (/problemes/)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Hero */
.interv-hero {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.interv-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.interv-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .interv-hero__inner { grid-template-columns: 1fr; } }

.interv-hero__live {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.25);
  padding: .4em 1em;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
  animation: blink 1.8s ease infinite;
}
.interv-hero__content h1 { margin-bottom: 1rem; }
.interv-hero__content p  { color: var(--muted); max-width: 580px; margin-bottom: 2rem; line-height: 1.7; }
.interv-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.interv-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-width: 260px;
}
.istat {
  background: var(--navy-2);
  padding: 1.5rem;
  text-align: center;
}
.istat__val {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.istat__lbl {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Process strip */
.process-strip {
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.process-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}
.process-step__num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.process-step__body h4 { font-size: .95rem; margin-bottom: .3rem; display: flex; align-items: center; gap: .4em; }
.process-step__body h4 svg { color: var(--gold); }
.process-step__body p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.process-arrow {
  color: var(--border-gold);
  flex-shrink: 0;
}
.process-arrow svg { width: 1.5em; height: 1.5em; }
@media (max-width: 640px) { .process-arrow { display: none; } }

/* Category blocks */
.cat-block { margin-bottom: 4rem; }
.cat-block:last-child { margin-bottom: 0; }
.cat-block__header { margin-bottom: 1.75rem; }
.cat-block__header h2 { margin-top: .6rem; font-size: clamp(1.4rem, 3vw, 2rem); }

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em .9em;
  border-radius: var(--r-pill);
  border: 1px solid;
}
.cat-tag--urgence     { color: #f87171; background: rgba(248,113,113,.12); border-color: rgba(248,113,113,.3); }
.cat-tag--changement  { color: var(--gold); background: var(--gold-dim); border-color: var(--border-gold); }
.cat-tag--installation{ color: var(--green); background: var(--green-dim); border-color: rgba(34,197,94,.25); }

/* Intervention cards grid */
.interv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .interv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .interv-grid { grid-template-columns: 1fr; } }

.interv-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.interv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--t);
}
.interv-card--urgence::after     { background: linear-gradient(90deg, #f87171, #ef4444); }
.interv-card--changement::after  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.interv-card--installation::after{ background: linear-gradient(90deg, var(--green), #4ade80); }

.interv-card:hover { transform: translateY(-4px); }
.interv-card--urgence:hover     { border-color: rgba(248,113,113,.4);  box-shadow: 0 8px 30px rgba(248,113,113,.12); }
.interv-card--changement:hover  { border-color: var(--border-gold);    box-shadow: var(--shadow-gold); }
.interv-card--installation:hover{ border-color: rgba(34,197,94,.3);    box-shadow: 0 8px 30px rgba(34,197,94,.12); }
.interv-card:hover::after { opacity: 1; }

.interv-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.interv-card--urgence     .interv-card__icon { background: rgba(248,113,113,.12); color: #f87171; }
.interv-card--changement  .interv-card__icon { background: var(--gold-dim);       color: var(--gold); }
.interv-card--installation .interv-card__icon{ background: var(--green-dim);      color: var(--green); }
.interv-card__icon svg { width: 1.5em; height: 1.5em; }

.interv-card__body h3 { font-size: .95rem; color: var(--white); margin-bottom: .35rem; }
.interv-card__body p  { font-size: .825rem; color: var(--muted); line-height: 1.55; }

.interv-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .8rem;
  font-weight: 600;
  transition: gap var(--t);
}
.interv-card--urgence     .interv-card__cta { color: #f87171; }
.interv-card--changement  .interv-card__cta { color: var(--gold); }
.interv-card--installation .interv-card__cta{ color: var(--green); }
.interv-card:hover .interv-card__cta { gap: .6em; }

/* FAQ */
.faq-section { }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 1rem;
}
.faq-body strong { color: var(--text); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE MARQUES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero--marques { padding-bottom: clamp(2.5rem, 5vw, 4rem); }

.marques-count-chip {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: .6em 1.1em;
  font-size: .875rem;
  color: var(--muted);
}
.marques-count-chip strong { color: var(--gold); font-size: 1.1em; }

.cat-tag--premium { color: #a78bfa; background: rgba(167,139,250,.12); border-color: rgba(167,139,250,.3); }

.marques-block { margin-bottom: 4rem; }
.marques-block__header { margin-bottom: 1.75rem; }
.marques-block__header h2 { margin: .6rem 0 .6rem; font-size: clamp(1.4rem,3vw,2rem); }
.marques-block__header p  { color: var(--muted); font-size: .9rem; }

.marques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .marques-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .marques-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .marques-grid { grid-template-columns: 1fr; } }

.marque-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.marque-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.marque-card--premium { border-color: rgba(167,139,250,.2); }
.marque-card--premium:hover { border-color: rgba(167,139,250,.5); box-shadow: var(--shadow-card), 0 0 30px rgba(167,139,250,.15); }

.marque-card__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.marque-card__logo--img {
  background: #fff !important;
  border-color: rgba(255,255,255,.12) !important;
  padding: 6px;
}
.marque-card__logo--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.marque-card__body { flex: 1; }
.marque-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .35rem;
  flex-wrap: wrap;
}
.marque-card__top h3 { font-size: .95rem; color: var(--white); }
.marque-origin {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: .15em .6em;
  white-space: nowrap;
}
.marque-card__body p { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.marque-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--t);
}
.marque-card:hover .marque-card__cta { gap: .6em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VILLES PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .villes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .villes-grid { grid-template-columns: 1fr; } }

.ville-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.ville-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.ville-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ville-card__body h3 { font-size: 1rem; color: var(--white); margin-bottom: .35rem; }
.ville-card__body p  { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.ville-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t);
}
.ville-card:hover .ville-card__cta { gap: .6em; }

/* SEO text block */
.seo-block { margin-top: 4rem; }
.seo-block__inner {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
}
.seo-block__inner h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.seo-block__inner h3 { font-size: 1.1rem; margin: 2rem 0 .75rem; color: var(--gold); }
.seo-block__inner p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.seo-block__inner strong { color: var(--text); }
.seo-block__inner ul { display: flex; flex-direction: column; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.seo-block__inner ul li { display: flex; align-items: baseline; gap: .6em; color: var(--muted); line-height: 1.6; }
.seo-block__inner ul li svg { color: var(--green); flex-shrink: 0; width: .9em; height: .9em; margin-top: .2em; }
@media (max-width: 640px) { .seo-block__inner { padding: 1.75rem 1.25rem; } }

.villes-cta { margin-top: 1rem; }
.villes-cta__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.villes-cta__inner > svg { color: var(--gold); width: 2rem; height: 2rem; flex-shrink: 0; }
.villes-cta__inner > div { flex: 1; min-width: 200px; }
.villes-cta__inner h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.villes-cta__inner p  { color: var(--muted); font-size: .875rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BREADCRUMB
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv2-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3em;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sv2-breadcrumb a { color: var(--muted); transition: color var(--t); }
.sv2-breadcrumb a:hover { color: var(--gold); }
.sv2-breadcrumb span[aria-current] { color: var(--text); }
.sv2-breadcrumb__sep { color: var(--border-gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INNER PAGES (page, single, archive…)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

.post-content {
  padding-block: var(--section);
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--pad);
}
.post-content h2, .post-content h3 { margin-block: 2rem .75rem; }
.post-content p  { margin-bottom: 1.25rem; color: var(--muted); line-height: 1.8; }
.post-content ul, .post-content ol { margin: 1rem 0 1.25rem 1.5rem; color: var(--muted); }
.post-content li { margin-bottom: .5rem; }
.post-content a  { color: var(--gold); text-decoration: underline; }
.post-content img { border-radius: var(--r-md); margin-block: 2rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes pulse-ring {
  0%   { transform: scale(.98); opacity: .8; }
  60%  { transform: scale(1.06); opacity: 0; }
  100% { transform: scale(1.06); opacity: 0; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes scroll-dot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%  { transform: translateX(-50%) translateY(12px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAGGER DELAY FOR GRIDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .40s; }
.reviews-grid .reveal:nth-child(2) { transition-delay: .1s; }
.reviews-grid .reveal:nth-child(3) { transition-delay: .2s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HUB NAV CARDS – cross-links entre pages
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hub-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.hub-nav-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.hub-nav-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hub-nav-card:hover {
  border-color: rgba(245,158,11,.4);
  box-shadow: var(--shadow-card), 0 0 24px rgba(245,158,11,.1);
  transform: translateY(-3px);
}
.hub-nav-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-nav-card__icon svg { width: 24px; height: 24px; }
.hub-nav-card__icon--red   { background: rgba(248,113,113,.15); color: #f87171; }
.hub-nav-card__icon--blue  { background: rgba(56,189,248,.12);  color: #38bdf8; }
.hub-nav-card__icon--gold  { background: rgba(245,158,11,.15);  color: #f59e0b; }
.hub-nav-card__icon--green { background: rgba(34,197,94,.12);   color: #22c55e; }
.hub-nav-card__body { flex: 1; }
.hub-nav-card__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--fg); }
.hub-nav-card__body p  { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0; }
.hub-nav-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}
.hub-nav-card__cta svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .hub-nav-grid { grid-template-columns: 1fr; }
  .hub-nav-grid--2col { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PLAN DU SITE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sitemap-section {
  margin-bottom: 3.5rem;
}
.sitemap-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sitemap-section__head h2 {
  font-size: 1.25rem;
  margin: 0;
}
.sitemap-section__head h2 a {
  color: var(--fg);
  text-decoration: none;
}
.sitemap-section__head h2 a:hover { color: var(--gold); }
.sitemap-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .5rem 1.5rem;
  margin: 0; padding: 0;
}
.sitemap-list__item > a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  padding: .3rem 0;
  transition: color .15s;
}
.sitemap-list__item > a svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }
.sitemap-list__item > a:hover { color: var(--fg); }
.sitemap-list__item--has-children > a { color: var(--fg); font-weight: 600; }
.sitemap-sublist {
  list-style: none;
  margin: .25rem 0 .75rem 1.2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .2rem;
}
.sitemap-sublist li a {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: .15rem 0;
  transition: color .15s;
}
.sitemap-sublist li a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE – CORRECTIONS GLOBALES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {

  /* Topbar : allégé */
  .topbar__info { gap: .5rem; font-size: .75rem; }
  .topbar__phone { font-size: .8rem; }
  .topbar__pill  { display: none; }

  /* Hero : réduit le padding & la card */
  .hero__container { padding-block: 2.5rem 2rem; gap: 2rem; }
  .hero__card      { padding: 1.25rem; border-radius: var(--r-lg); }
  .hero__card-header { gap: .75rem; margin-bottom: 1rem; padding-bottom: 1rem; }
  .tarif-grid      { gap: .5rem; margin-bottom: 1.25rem; }
  .tarif-val       { font-size: 1.3rem; }
  .hero__eyebrow   { font-size: .72rem; margin-bottom: 1rem; }
  .hero__subtitle  { font-size: .9rem; }

  /* Trust chips : 2 par ligne max */
  .hero__trust     { gap: .4rem; }
  .trust-chip      { font-size: .74rem; padding: .3em .65em; }

  /* Boutons : pleine largeur */
  .hero__actions   { flex-direction: column; width: 100%; }
  .btn-call,
  .btn-ghost       { width: 100%; justify-content: center; }
  .cta-section__actions { flex-direction: column; align-items: stretch; }
  .cta-section__actions .btn-call,
  .cta-section__actions .btn-ghost { width: 100%; justify-content: center; }

  /* Sections : moins d'espace vertical */
  .section { padding-block: 2.5rem; }
  .section-header { margin-bottom: 2rem; }

  /* Stats homepage */
  .stat { padding: .85rem .5rem; min-width: 80px; }
  .stat__num { font-size: 2rem; }
  .stat__lbl { font-size: .7rem; }

  /* Why section : badges flottants */
  .why-visual__float { font-size: .72rem; padding: .45em .75em; }
  .why-visual__float--1 { top: .5rem; left: .25rem; }
  .why-visual__float--2 { bottom: .5rem; right: .25rem; }
  .why-visual__card { padding: 2.5rem 1rem; }
  .why-item { gap: .75rem; }
  .why-item__icon { width: 36px; height: 36px; min-width: 36px; }

  /* Pricing */
  .pricing-row { padding: .75rem 1rem; font-size: .85rem; }

  /* Page hero */
  .page-hero { padding-block: 2rem 1.5rem; }
  .page-hero h1 { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Villes / interv cards */
  .ville-card,
  .interv-card { padding: 1.1rem; }
  .villes-cta__inner { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .villes-cta__inner .btn-call { width: 100%; justify-content: center; }

  /* Interv hero */
  .interv-hero__stats { grid-template-columns: 1fr 1fr; min-width: unset; }
  .istat { padding: 1rem .75rem; }
  .istat__val { font-size: 1.6rem; }
  .interv-hero__actions { flex-direction: column; width: 100%; }

  /* Process */
  .process-step { min-width: unset; max-width: 100%; }

  /* FAQ */
  .faq-item summary { padding: 1rem; font-size: .875rem; }
  .faq-body         { padding: 0 1rem 1rem; }

  /* SEO block */
  .seo-block__inner { padding: 1.5rem 1rem; }

  /* Reviews */
  .review-card { padding: 1.25rem; }

  /* Footer */
  .footer-body { padding-block: 2rem; }

  /* Mobile CTA */
  .mobile-cta { padding: .65rem .75rem calc(.65rem + env(safe-area-inset-bottom)); }

  /* Section tag */
  .section-tag { font-size: .68rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WP ADMIN BAR FIX
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
