/* ============================================================
   Serrurier d'Urgence Perpignan (SUP)
   Palette : bleu marine + or sur fond blanc
   ============================================================ */

:root {
  --navy: #17264a;
  --navy-2: #1f3b6e;
  --navy-soft: #2c4a82;
  --gold: #c1994b;
  --gold-2: #e0be74;
  --gold-deep: #a67c2e;
  --urgent: #e63946;
  --urgent-deep: #c1121f;
  --ink: #1c2536;
  --muted: #5b667a;
  --line: #e7ebf2;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-navy: #12203f;
  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(23, 38, 74, .06);
  --shadow: 0 14px 40px rgba(23, 38, 74, .12);
  --shadow-lg: 0 26px 70px rgba(23, 38, 74, .18);
  --maxw: 1200px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 { line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }

.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }

.btn-call {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #2a2205;
  box-shadow: 0 10px 26px rgba(193, 153, 75, .45);
  position: relative;
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(193, 153, 75, .55); }

.btn-urgent {
  background: linear-gradient(135deg, #ff5964, var(--urgent) 55%, var(--urgent-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(230, 57, 70, .4);
}
.btn-urgent:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(230, 57, 70, .5); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-3px); }

.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* Pulsing ring around call buttons */
.pulse { position: relative; }
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(193, 153, 75, .55);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(193, 153, 75, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(193, 153, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 153, 75, 0); }
}

/* ============================================================
   Top emergency bar
   ============================================================ */
.topbar {
  background: var(--navy);
  color: #eaf0ff;
  font-size: .9rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.topbar strong { color: #fff; }
.topbar .dot { color: var(--gold-2); }
.topbar .live {
  display: inline-flex; align-items: center; gap: 8px;
}
.topbar .live::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #35d07f; box-shadow: 0 0 0 0 rgba(53,208,127,.7);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%   { box-shadow: 0 0 0 0 rgba(53,208,127,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(53,208,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,208,127,0); }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: padding .3s ease;
}
.header.scrolled .container { padding-top: 8px; padding-bottom: 8px; }

.brand { display: flex; align-items: center; gap: 12px; }
/* Le logo est carré avec beaucoup de marge : on recadre sur le lettrage via object-fit */
.brand img { height: 66px; width: 182px; object-fit: cover; object-position: center; transition: height .3s ease, width .3s ease; }
.header.scrolled .brand img { height: 56px; width: 156px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 600; font-size: .96rem; color: var(--navy);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
}
.header-phone span { font-size: .72rem; color: var(--muted); font-weight: 600; }
.header-phone b { font-size: 1.15rem; color: var(--navy); letter-spacing: .01em; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 40px 0 20px;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(193,153,75,.12), transparent 60%),
    radial-gradient(700px 500px at -10% 20%, rgba(31,59,110,.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}
/* Fond flou : halos de couleur qui flottent derrière le hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Photo métier floutée en fond (serrurier ouvrant une porte) */
.hero-photo {
  position: absolute;
  inset: -40px;
  background: url("assets/hero-locksmith.jpg") center right / cover no-repeat;
  filter: blur(7px) saturate(1.05) brightness(1.04);
  transform: scale(1.05);
  opacity: .58;
}
/* Voile clair : garde le texte lisible à gauche, laisse voir la photo à droite */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.9) 32%,
    rgba(255,255,255,.62) 60%,
    rgba(245,248,252,.42) 100%);
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero-bg .blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(31,59,110,.55), transparent 70%);
  top: -150px; right: -70px;
  animation: floatBlob 15s ease-in-out infinite;
}
.hero-bg .blob-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(193,153,75,.50), transparent 70%);
  bottom: -170px; left: -80px;
  animation: floatBlob 19s ease-in-out infinite reverse;
}
.hero-bg .blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(120,170,255,.38), transparent 70%);
  top: 34%; left: 46%;
  animation: floatBlob 17s ease-in-out infinite;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(34px, -26px) scale(1.09); }
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 820px; }
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  margin-bottom: 14px;
}
.hero h1 .hl {
  color: var(--gold-deep);
  position: relative;
  white-space: nowrap;
}
.hero p.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 20px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 12px;
  font-weight: 600; font-size: .92rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* Hero visual card */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy), var(--bg-navy));
  color: #fff;
  border-radius: 26px;
  padding: 36px 34px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,153,75,.35), transparent 70%);
}
.hero-card .kh {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  display: grid; place-items: center; margin-bottom: 18px;
  animation: float 4s ease-in-out infinite;
}
.hero-card .kh svg { width: 32px; height: 32px; color: #2a2205; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; text-wrap: balance; }
.hero-card p { color: #c6d2ee; font-size: .95rem; margin-bottom: 22px; }
.hero-card .big-phone {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 14px 16px; border-radius: 14px; margin-bottom: 16px;
}
.hero-card .big-phone svg { width: 24px; height: 24px; color: var(--gold-2); }
.hero-card .big-phone b { font-size: clamp(1.2rem, 1.05rem + 1.4vw, 1.5rem); letter-spacing: .02em; white-space: nowrap; }
.hero-card .big-phone small { display: block; font-size: .72rem; color: #9fb2dc; font-weight: 600; }
.hero-card .btn { width: 100%; }
.hero-card ul { margin-top: 18px; display: grid; gap: 10px; }
.hero-card li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #dbe4f7; }
.hero-card li svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; }

/* ============================================================
   Insurance marquee
   ============================================================ */
.marquee-section { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.marquee-title { text-align: center; color: var(--muted); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.marquee-title b { color: var(--navy); }

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 46px;
  animation: scroll-x 20s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ins-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 90px;
  padding: 0 6px;
  flex: 0 0 auto;
}
.ins-logo img {
  height: 100%;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  transition: transform .3s ease;
}
.ins-logo:hover img { transform: scale(1.08); }

/* ============================================================
   Stats band
   ============================================================ */
.stats { background: var(--navy); color: #fff; padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--gold-2); line-height: 1; }
.stat .lbl { margin-top: 8px; font-size: .95rem; color: #c6d2ee; font-weight: 500; }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(var(--gold-2), var(--gold-deep));
  transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-soft);
  display: grid; place-items: center; margin-bottom: 18px;
  transition: background .3s ease;
}
.service-card:hover .ico { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); }
.service-card .ico svg { width: 28px; height: 28px; color: var(--navy); transition: color .3s ease; }
.service-card:hover .ico svg { color: #2a2205; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .96rem; }

/* ============================================================
   Recurring CTA banner
   ============================================================ */
.cta-band {
  background:
    radial-gradient(600px 300px at 85% 120%, rgba(193,153,75,.25), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--bg-navy));
  color: #fff;
  border-radius: 24px;
  padding: 46px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.cta-band p { color: #c6d2ee; margin-top: 6px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-band .phone-inline { font-size: 1.5rem; font-weight: 800; color: var(--gold-2); display: flex; align-items: center; gap: 10px; }
.cta-band .phone-inline svg { width: 26px; height: 26px; }

/* ============================================================
   Why / values
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 46px; }
.why-card { text-align: center; padding: 26px 20px; }
.why-card .ico {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center; margin: 0 auto 16px;
  color: var(--gold-deep);
}
.why-card .ico svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: .93rem; }

/* ============================================================
   Process steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; position: relative;
}
.step .n {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--gold-2); font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ============================================================
   Zones
   ============================================================ */
.zones-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.zones-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.zone-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 600; font-size: .92rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s ease, border-color .2s ease;
}
.zone-chip:hover { transform: translateY(-2px); border-color: var(--gold); }
.zone-chip svg { width: 15px; height: 15px; color: var(--gold-deep); }
.zones-visual {
  background: linear-gradient(160deg, var(--navy), var(--bg-navy));
  border-radius: 22px; padding: 40px; color: #fff; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.zones-visual .big { font-size: 3.4rem; font-weight: 800; color: var(--gold-2); line-height: 1; }
.zones-visual p { color: #c6d2ee; margin-top: 10px; }

/* --- Carte des zones d'intervention (SVG) --- */
.zones-map {
  background: none;
  box-shadow: none;
  border: 0;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-wrap {
  position: relative;
  z-index: 0;            /* contient les z-index internes de Leaflet sous le header sticky */
  isolation: isolate;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #eef2f8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
#zonesMap {
  width: 100%;
  height: 460px;
  background: #eef2f8;
}
/* Tooltips des communes (Leaflet) aux couleurs du site */
.zone-tip {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .82rem;
  padding: 4px 9px;
  box-shadow: 0 6px 18px rgba(23,38,74,.25);
}
.zone-tip::before { border-top-color: var(--navy); }
.zone-tip-main {
  background: var(--gold-deep);
  font-weight: 700;
  font-size: .9rem;
}
.zone-tip-main::before { border-top-color: var(--gold-deep); }
.leaflet-container { font-family: var(--font); }
.globe-caption b { display: block; color: var(--navy); font-size: 1.15rem; }
.globe-caption span { color: var(--muted); font-size: .9rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review p { color: var(--ink); font-size: .98rem; margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--gold-2); display: grid; place-items: center; font-weight: 700;
}
.review .who b { display: block; font-size: .95rem; color: var(--navy); }
.review .who span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 46px auto 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 1.05rem; color: var(--navy);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .chev { transition: transform .3s ease; color: var(--gold-deep); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ============================================================
   Final CTA + contact
   ============================================================ */
.final {
  background:
    radial-gradient(700px 400px at 80% -20%, rgba(193,153,75,.16), transparent 60%),
    var(--bg-navy);
  color: #fff; text-align: center; padding: 90px 0;
}
.final h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.final p { color: #c6d2ee; font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.final .final-phone {
  font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; color: var(--gold-2);
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 8px;
}
.final .final-phone svg { width: 40px; height: 40px; }
.final small { display: block; color: #9fb2dc; margin-bottom: 26px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #fff; color: var(--muted); padding: 60px 0 26px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer .fbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .fbrand img { height: 60px; width: 170px; object-fit: cover; object-position: center; }
.footer p { font-size: .92rem; color: var(--muted); }
.footer h4 { color: var(--navy); font-size: 1rem; margin-bottom: 16px; }
.footer a { display: block; padding: 6px 0; font-size: .92rem; color: var(--muted); transition: color .2s; }
.footer a:hover { color: var(--gold-deep); }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .92rem; color: var(--ink); }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted);
}

/* ============================================================
   Floating call button (mobile-first)
   ============================================================ */
.float-call {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #2a2205; font-weight: 800; font-size: 1rem;
  padding: 15px 22px; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(193,153,75,.5);
  transition: transform .2s ease;
}
.float-call svg { width: 22px; height: 22px; }
.float-call:hover { transform: scale(1.05); }
.float-call::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(193,153,75,.6); animation: pulse-ring 2s infinite;
}
.float-call .txt-full { }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   Mobile menu panel
   ============================================================ */
.mobile-panel {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
  background: #fff; z-index: 150; transform: translateX(100%);
  transition: transform .32s ease; box-shadow: var(--shadow-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-panel.open { transform: none; }
.mobile-panel a { padding: 14px 6px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-panel .btn { margin-top: 18px; }
.overlay {
  position: fixed; inset: 0; background: rgba(18,32,63,.5); z-index: 140;
  opacity: 0; visibility: hidden; transition: .3s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-text, .hero-visual { min-width: 0; }
  .hero h1 .hl { white-space: normal; }
  .hero-visual { order: -1; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav, .header-phone { display: none; }
  .burger { display: block; }
  .services-grid, .reviews-grid, .why-grid, .steps, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; align-items: center; }
  .cta-band .cta-actions { justify-content: center; }
  .float-call .txt-full { display: none; }
  .float-call { padding: 16px; }

  /* Bandeau du haut compact : un seul message, une ligne */
  .topbar { font-size: .72rem; }
  .topbar .container { gap: 12px; flex-wrap: nowrap; padding-top: 7px; padding-bottom: 7px; }
  .topbar .dot, .topbar > .container > span:not(.live) { display: none; }

  /* Hero raccourci pour faire entrer le marquee des assurances dans le cadre */
  .hero { padding: 12px 0 6px; }
  .hero h1 { font-size: clamp(1.85rem, 7.4vw, 2.2rem); margin-bottom: 10px; }
  .hero p.lead { font-size: .98rem; margin-bottom: 12px; }
  .hero-actions { margin-bottom: 12px; }
  .hero-badges { display: none; }

  /* Photo de fond plus visible sur mobile (voile plus léger et uniforme) */
  .hero-photo {
    opacity: .72;
    background-position: center center;
    filter: blur(5px) saturate(1.08) brightness(1.02);
  }
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(255,255,255,.72) 0%,
      rgba(255,255,255,.6) 50%,
      rgba(255,255,255,.55) 100%);
  }

  /* Marquee resserré pour que les logos apparaissent tout de suite */
  .marquee-section { padding: 10px 0 14px; }
  .marquee-title { margin-bottom: 8px; font-size: .78rem; }
  /* Logos d'assurances plus rapprochés et défilement plus rapide sur mobile */
  .marquee-track { gap: 22px; animation-duration: 12s; }
  .ins-logo { padding: 0 2px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
