/* ═══════════════════════════════════════════════════════════════
   COUVREUR MONTFERMEIL — CSS PRINCIPAL
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --accent: #007BFF;
  --accent-vif: #00D2FF;
  --accent-dark: #0056b3;
  --noir: #080808;
  --noir-2: #111111;
  --anthracite: #1E1E1E;
  --anthracite-2: #2C2C2C;
  --anthracite-3: #3D3D3D;
  --gris: #6B6B6B;
  --blanc: #F5F5F5;
  --blanc-pur: #ffffff;
  --gradient-accent: linear-gradient(135deg, #0056b3 0%, #007BFF 50%, #00D2FF 100%);
  --gradient-noir: linear-gradient(180deg, #080808 0%, #1E1E1E 100%);
  --shadow-accent: 0 0 30px rgba(0, 123, 255, 0.4);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.6);
  /* Spacing */
  --space-xs: 0.4rem;
  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: 3.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
  cursor: default;
  line-height: 1.6;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 123, 255, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.nav-links a:hover { color: var(--accent-vif); }

/* ─── Lien Google Maps dans la nav ─── */
.nav-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 123, 255, 0.15);
  border: 1.5px solid rgba(0, 123, 255, 0.5);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  color: #00D2FF !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-gmaps:hover {
  background: rgba(0, 123, 255, 0.2) !important;
  border-color: rgba(0, 123, 255, 0.6) !important;
  color: #007BFF !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--blanc-pur);
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 123, 255, 0.7);
}

/* ─── HAMBURGER MENU — Premium Style ─── */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0.8rem;
  z-index: 201;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle:hover {
  background: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blanc-pur);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--blanc-pur);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Menu Ouvert — Animation */
.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background: var(--accent);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
  background: var(--accent);
}

/* ─── MOBILE NAV — Premium Overlay ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(25px) saturate(180%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  display: flex; /* Conserve flex for centering but use visibility/opacity for animation */
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: var(--blanc-pur);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.mobile-nav a:hover::after {
  width: 30px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--blanc-pur);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent-vif); }

/* ─── MAIN CONTENT ─── */
main { padding-top: 70px; }

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--blanc-pur);
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2.5rem 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--noir);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
  filter: brightness(0.88) contrast(1.05);
}

@media (max-width: 991px) {
  .hero-video {
    width: 100%;
    opacity: 0.45;
    filter: brightness(0.7);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--noir) 42%,
      rgba(8, 8, 8, 0.5) 55%,
      transparent 70%),
    linear-gradient(to bottom, transparent 75%, var(--noir) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 123, 255, 0.15);
  border: 1px solid rgba(0, 123, 255, 0.4);
  border-radius: 30px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-vif);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 3px;
  color: var(--blanc-pur);
  margin-bottom: 0.3rem;
}

.hero-title .saumon { color: var(--accent-vif); }

.hero-location {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-accent);
  color: var(--blanc-pur);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 123, 255, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(245, 245, 245, 0.3);
  color: var(--blanc);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 123, 255, 0.1);
}

.btn { cursor: pointer; text-decoration: none; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent-vif);
  line-height: 1;
}

.stat-stars { letter-spacing: 2px; }

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris);
}

/* ─── REVIEWS BADGE (hero) ─── */
.reviews-badge {
  position: absolute;
  top: 90px;
  right: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(0, 123, 255, 0.4);
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

a.reviews-badge:hover {
  border-color: rgba(0, 123, 255, 0.85);
  background: rgba(8, 8, 8, 0.95);
  transform: translateY(-2px);
}

.badge-cta {
  font-size: 0.72rem;
  font-weight: 700;
  color: #007BFF;
  letter-spacing: 0.5px;
  margin-left: 0.15rem;
  opacity: 0.9;
}

.badge-stars {
  font-size: 0.85rem;
  color: #007BFF;
  letter-spacing: 1px;
}

.badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--blanc-pur);
}

.badge-count {
  font-size: 0.72rem;
  color: var(--gris);
}

/* ─── TICKER — bandeau infini sans fond jaune ─── */
.ticker-wrap {
  overflow: hidden;
  padding: 0.65rem 0;
  position: relative;
  z-index: 1;
  background: rgba(8, 8, 8, 0.95);
  border-top: 1px solid rgba(0, 123, 255, 0.15);
  border-bottom: 1px solid rgba(0, 123, 255, 0.15);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-infinite 35s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-item {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 3px;
  padding: 0 1.5rem;
  color: rgba(245, 245, 245, 0.8);
  white-space: nowrap;
}

.ticker-sep {
  flex-shrink: 0;
  color: #007BFF;
  font-size: 0.5rem;
  opacity: 0.7;
}

@keyframes ticker-infinite {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── GRID (services, matériaux, garantie) ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── CARD ─── */
.card {
  background: var(--anthracite);
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.card:hover::before { opacity: 0.05; }
.card:hover {
  border-color: rgba(0, 123, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--accent-vif);
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--blanc-pur);
  margin-bottom: 0.6rem;
  position: relative;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.55);
  position: relative;
}

.service-badge {
  display: inline-block;
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.4);
  color: var(--accent-vif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-top: 1rem;
  position: relative;
}

/* ─── SERVICES SECTION ─── */
#services { background: var(--noir-2); }

/* ─── RÉALISATIONS ─── */
#realisations { background: var(--noir); }

.real-card {
  background: var(--anthracite);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.real-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ─── Conteneur image réalisation ─── */
.real-visual {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--anthracite-2);
}

.real-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.real-card:hover .real-visual img {
  transform: scale(1.05);
}

/* ─── Placeholder pour vidéos manquantes (conservé en fallback) ─── */
.real-visual-placeholder {
  width: 100%;
  height: 200px;
  background: var(--anthracite-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 3rem;
  border-bottom: 1px solid rgba(0, 123, 255, 0.15);
}

.rvp-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(245, 245, 245, 0.4);
  text-transform: uppercase;
}

.real-info {
  padding: 1.25rem 1.5rem;
}

.real-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--blanc-pur);
  margin-bottom: 0.4rem;
}

.real-info p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.5;
}

/* ─── MATÉRIAUX ─── */
#materiaux { background: var(--anthracite); }

/* ─── ZONES D'INTERVENTION ─── */
#zones { background: var(--noir-2); }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.zone-card {
  background: var(--anthracite);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.zone-card:hover {
  border-color: rgba(0, 123, 255, 0.35);
  transform: translateY(-3px);
}

.zone-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.zone-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--blanc-pur);
  margin-bottom: 0.5rem;
}

.zone-card p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.5;
}

/* ─── GARANTIE ─── */
#garantie { background: var(--noir); }

/* ─── CONTACT ─── */
#contact { background: var(--anthracite); }

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-block {
  background: var(--anthracite-2);
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: var(--blanc-pur);
  margin-bottom: 0.75rem;
}

.contact-block a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-vif);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.contact-block a:hover { color: #fff; }

.contact-block p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.45);
}

/* ─── FOOTER ─── */
footer {
  background: var(--noir);
  border-top: 1px solid rgba(0, 123, 255, 0.15);
  padding: 60px 2.5rem 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-vif);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-vif); }

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HELP POPUP ─── */
#help-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(360px, calc(100vw - 48px));
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

#help-popup.open { display: flex; }

.help-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #f3f3f3;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-popup-avatar {
  font-size: 2rem;
  text-align: center;
}

.help-popup-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

.help-popup-sub {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

.help-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.help-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s;
  font-family: inherit;
}

.help-popup-btn.primary {
  background: var(--gradient-accent);
  color: #fff;
}

.help-popup-btn.secondary {
  background: #f5f5f5;
  color: #1a1a1a;
  border: 2px solid #ddd;
}

.help-popup-btn:hover { opacity: 0.9; }

/* ─── OPERATOR WIDGET (chat bubble) ─── */
.operator-widget {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.45);
  z-index: 998;
  transition: transform 0.2s, box-shadow 0.2s;
}

.operator-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.65);
}

.operator-widget svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ─── CHAT HEADER ─── */
.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gradient-accent);
  color: #fff;
  flex-shrink: 0;
}

.cw-avatar {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-text h4 {
  font-weight: 800;
  font-size: 0.95rem;
  color: inherit;
}

.chat-header-text p {
  font-size: 0.78rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
}

.chat-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}

.chat-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-close:hover { background: rgba(255, 255, 255, 0.35); }

/* ─── CHAT STEPS BAR ─── */
.chat-steps-bar {
  display: flex;
  gap: 6px;
  padding: 0.6rem 1.25rem;
  background: rgba(0, 123, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s;
}

.chat-step-dot.active { background: var(--accent); }

/* ─── CHAT INPUT ─── */
.chat-input-area { padding: 0.75rem 1rem; border-top: 1px solid #eee; }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#chat-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

#chat-input:focus { border-color: var(--accent); }

.chat-input-area button {
  background: var(--gradient-accent);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.chat-input-area button:hover { opacity: 0.85; }

.chat-input-area button svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ─── SCROLL TOP ─── */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(0, 123, 255, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 996;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--accent-vif);
  transform: translateY(-2px);
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav {
    height: 75px;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand toggle call";
    gap: 1.5rem;
    align-items: center;
  }

  .nav-logo { grid-area: brand; }
  .nav-actions { grid-area: call; justify-self: end; }
  .menu-toggle { grid-area: toggle; display: block; justify-self: end; }
  .nav-links { display: none; }

  .btn-call { padding: 0.5rem 1rem; font-size: 1rem; }
  .btn-call .btn-text { display: none; }
  .btn-call::after { content: 'Appeler'; margin-left: 0.3rem; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

  section { padding: 80px 1.25rem; }
  #hero { padding: 110px 1.25rem 60px; }

  .hero-stats { gap: 1.5rem; justify-content: center; }
  .stat-number { font-size: 2rem; }

  .reviews-badge {
    top: auto;
    bottom: calc(85px + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    left: 1.25rem;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .availability-badge { display: none; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-content { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   CONVERSION BOOST — Couvreur Montfermeil
   ═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────────────────────
   1. BADGE DISPONIBILITÉ DYNAMIQUE (dans le header)
   ─────────────────────────────────────────────────────────────── */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.availability-badge.online {
    background: rgba(46, 200, 102, 0.2);
    color: #4ade80;
    border: 1.5px solid rgba(46, 200, 102, 0.4);
}

.availability-badge.offline {
    background: rgba(0, 123, 255, 0.2);
    color: #fde047;
    border: 1.5px solid rgba(0, 123, 255, 0.5);
}

.availability-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.availability-badge.online .dot { background: #2ea043; }
.availability-badge.offline .dot { background: #007BFF; }

@media (max-width: 900px) {
    .availability-badge { display: none; }
}


/* ───────────────────────────────────────────────────────────────
   2. HERO TRUST BAR (sous les stats)
   ─────────────────────────────────────────────────────────────── */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.7);
}

.trust-item .tb-icon { font-size: 1.15rem; }
.trust-item strong { color: var(--blanc-pur); font-weight: 700; }

@media (max-width: 640px) {
    .hero-trust-bar { gap: 0.7rem 1rem; padding: 0.8rem 1rem; }
    .trust-item { font-size: 0.76rem; }
}


/* ───────────────────────────────────────────────────────────────
   3. STICKY CALL BAR MOBILE
   ─────────────────────────────────────────────────────────────── */
.sticky-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #1a1a1a;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-call-bar a, .sticky-call-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 0.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.sticky-call-bar .stk-call { background: var(--accent); color: #1a1a1a; }
.sticky-call-bar .stk-call:hover { background: var(--accent-dark); }
.sticky-call-bar .stk-wa { background: #25D366; color: #fff; }
.sticky-call-bar .stk-wa:hover { background: #1ca851; }
.sticky-call-bar .stk-icon { font-size: 1.1rem; }

@media (max-width: 900px) {
    .sticky-call-bar { display: grid; }
    body.has-sticky-bar { padding-bottom: 62px; }
}


/* ───────────────────────────────────────────────────────────────
   4. SECTION AVIS GOOGLE
   ─────────────────────────────────────────────────────────────── */
.reviews-section { padding: 4rem 1.5rem; background: #fafaf8; }

.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.reviews-header .rh-stars { font-size: 1.5rem; color: #007BFF; letter-spacing: 2px; margin-bottom: 0.5rem; }
.reviews-header .rh-score { font-size: 2.5rem; font-weight: 800; color: #1a1a1a; line-height: 1; }
.reviews-header .rh-label { font-size: 0.95rem; color: #666; margin-top: 0.5rem; }
.reviews-header .rh-google { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: #4285F4; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }

.review-card { background: #fff; border-radius: 10px; padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,.05); border: 1px solid #f0f0f0; transition: transform 0.2s, box-shadow 0.2s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.review-card .rc-stars { color: #007BFF; font-size: 1rem; letter-spacing: 1px; margin-bottom: 0.7rem; }
.review-card .rc-text { font-size: 0.92rem; line-height: 1.55; color: #333; margin-bottom: 1rem; font-style: italic; }
.review-card .rc-author { display: flex; align-items: center; gap: 0.7rem; padding-top: 0.8rem; border-top: 1px solid #f0f0f0; }
.review-card .rc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient-accent); color: #1a1a1a; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.review-card .rc-name { font-weight: 700; font-size: 0.88rem; color: #1a1a1a; }
.review-card .rc-city { font-size: 0.78rem; color: #888; }


/* ───────────────────────────────────────────────────────────────
   5. EXIT INTENT POPUP
   ─────────────────────────────────────────────────────────────── */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.exit-popup-overlay.visible { display: flex; }
.exit-popup { background: #fff; border-radius: 16px; max-width: 460px; width: 100%; padding: 2.5rem 2rem 2rem; text-align: center; position: relative; animation: popIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); box-shadow: 0 25px 60px rgba(0,0,0,.4); }
@keyframes popIn { from { opacity: 0; transform: scale(0.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.exit-popup-close { position: absolute; top: 0.8rem; right: 0.8rem; width: 32px; height: 32px; background: #f3f3f3; border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; color: #666; }
.exit-popup .ep-badge { display: inline-block; background: var(--gradient-accent); color: #1a1a1a; font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1rem; }
.exit-popup h3 { font-size: 1.65rem; font-weight: 800; color: #1a1a1a; line-height: 1.2; margin-bottom: 0.6rem; }
.exit-popup h3 span { color: var(--accent); }
.exit-popup .ep-sub { font-size: 0.95rem; color: #555; line-height: 1.5; margin-bottom: 1.5rem; }
.exit-popup .ep-form { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.exit-popup .ep-form input { flex: 1; padding: 0.85rem 1rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; font-family: inherit; outline: none; transition: border-color 0.2s; }
.exit-popup .ep-form input:focus { border-color: var(--accent); }
.exit-popup .ep-form button { background: #1a1a1a; color: #fff; border: none; padding: 0 1.5rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; white-space: nowrap; }
.exit-popup .ep-form button:hover { background: var(--accent); color: #1a1a1a; }
.exit-popup .ep-or { margin: 1.2rem 0 0.8rem; font-size: 0.78rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.exit-popup .ep-call-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #1a1a1a; padding: 0.85rem 1.5rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: background 0.2s; }
.exit-popup .ep-call-btn:hover { background: var(--accent-dark); }
.exit-popup .ep-tiny { margin-top: 1rem; font-size: 0.74rem; color: #888; line-height: 1.4; }
.exit-popup .ep-success { display: none; padding: 1rem 0; }
.exit-popup.submitted .ep-form, .exit-popup.submitted .ep-or, .exit-popup.submitted .ep-call-btn, .exit-popup.submitted .ep-tiny, .exit-popup.submitted h3, .exit-popup.submitted .ep-sub, .exit-popup.submitted .ep-badge { display: none; }
.exit-popup.submitted .ep-success { display: block; }
.exit-popup .ep-success .ep-check { width: 64px; height: 64px; background: #2ea043; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; }


/* ───────────────────────────────────────────────────────────────
   6. URGENCE MODE
   ─────────────────────────────────────────────────────────────── */
.urgency-override { display: none; background: var(--gradient-accent); color: #1a1a1a; padding: 1.25rem; border-radius: 10px; margin-top: 1rem; text-align: center; }
.urgency-override.visible { display: block; animation: pulseOnce 0.6s ease; }
@keyframes pulseOnce { 0% { transform: scale(0.92); opacity: 0; } 60% { transform: scale(1.03); opacity: 1; } 100% { transform: scale(1); } }
.urgency-override h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; }
.urgency-override p { font-size: 0.85rem; margin-bottom: 0.9rem; opacity: 0.95; }
.urgency-override a { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--accent); padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 800; font-size: 1.05rem; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,.2); transition: transform 0.15s; }
.urgency-override a:hover { transform: scale(1.04); }


/* ───────────────────────────────────────────────────────────────
   7. FAQ SECTION
   ─────────────────────────────────────────────────────────────── */
.faq-section { padding: 4rem 1.5rem; background: var(--anthracite-2, #2C2C2C); }
.faq-list { max-width: 780px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(0, 123, 255, 0.15); padding: 1rem 0; }
.faq-item summary { font-size: 1.05rem; font-weight: 700; color: var(--blanc-pur, #F5F5F5); cursor: pointer; padding: 0.6rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 300; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { font-size: 0.95rem; line-height: 1.65; color: rgba(245, 245, 245, 0.65); padding: 0.5rem 0 1rem; }


/* ───────────────────────────────────────────────────────────────
   8. SCARCITY BANNER
   ─────────────────────────────────────────────────────────────── */
.scarcity-banner { background: linear-gradient(90deg, rgba(245,184,0,0.12), rgba(255,255,255,0.04)); border: 1px solid rgba(245,184,0,0.35); border-radius: 10px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; max-width: 700px; margin: 1.5rem auto; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.scarcity-banner .sb-icon { font-size: 1.6rem; flex-shrink: 0; }
.scarcity-banner .sb-content { flex: 1; font-size: 0.88rem; color: rgba(245,245,245,0.7); line-height: 1.4; }
.scarcity-banner .sb-content strong { color: var(--blanc-pur, #F5F5F5); font-weight: 700; }
.scarcity-banner .sb-bar { height: 5px; background: rgba(245,184,0,0.2); border-radius: 3px; margin-top: 0.45rem; overflow: hidden; }

/* ─── CHAT WINDOW OVERRIDES ─── */
#chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: min(380px, calc(100vw - 40px));
  max-width: 380px;
  height: min(600px, calc(100vh - 120px));
  max-height: calc(100vh - 120px);
  z-index: 1000;
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#chat-window.open { display: flex; }

#chat-window .chat-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
}

#chat-window .chat-header,
#chat-window .chat-steps-bar,
#chat-window .chat-input-area {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  #chat-window {
    bottom: 80px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    height: calc(100vh - 160px);
  }
}

/* ─── UTILS & OVERRIDES ─── */
.card:hover, .zone-card:hover, .real-card:hover {
  border-color: rgba(0, 123, 255, 0.45) !important;
}

.faq-item summary { color: var(--blanc-pur) !important; }
.faq-item { border-bottom-color: rgba(0, 123, 255, 0.2) !important; }

#chat-input:focus { border-color: var(--accent) !important; }

.service-badge {
  background: rgba(0, 123, 255, 0.15) !important;
  border-color: rgba(0, 123, 255, 0.4) !important;
  color: var(--accent-dark) !important;
}

#scrollTop {
  background: rgba(0, 123, 255, 0.85) !important;
  color: #1a1a1a !important;
}

#scrollTop:hover {
  background: var(--accent-vif) !important;
}

/* ─── HELP POPUP PRE-QUALIF ─── */
.help-prequal-block {
  margin: 0.85rem 0;
  text-align: left;
}

.help-prequal-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.help-prequal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.help-chip {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #333;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.help-chip:hover {
  border-color: var(--accent);
  background: var(--accent-bg, #FFF9E5);
}

.help-chip.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.35);
}

.help-chip.need-urgent {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.help-chip.need-urgent.selected {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.4);
}

.help-popup-microcopy {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: #888;
  text-align: center;
  font-style: italic;
}

.help-popup-microcopy.ready {
  color: #2a8a2a;
  font-weight: 600;
  font-style: normal;
}


.scarcity-banner .sb-bar-fill { height: 100%; background: linear-gradient(90deg, #007BFF, #D99E00); border-radius: 3px; transition: width 0.5s ease; }

/* ─── BANDEAU APPEL MOBILE (CALL-FIXED) ─── */
.call-fixed-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.call-fixed-wrap .call-fixed-msg {
  font-size: 0.95rem;
  line-height: 1.2;
}

.call-fixed-wrap .btn-call {
  background: #1a1a1a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  text-decoration: none;
}

