/* ============================================================
   AZ PLOMBERIE — Plugin CSS v1.1.0
   Identique a index.html — Elementor Canvas
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

/* ─── ELEMENTOR OVERRIDES ───────────────────────────────────── */

/* Supprimer les paddings Elementor */
.elementor-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.elementor-widget-container {
  padding: 0 !important;
  line-height: normal;
}

/*
 * PROBLEME PRINCIPAL : Elementor limite la largeur du container
 * (ex. 1140px centr​é) meme quand la section est "full_width".
 * On force le container ET la colonne a etre 100% larges
 * pour que notre .container HTML (max-width:1200px) prenne le controle.
 */
.elementor-section > .elementor-container,
.elementor-section.elementor-section-full_width > .elementor-container,
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elementor-column {
  width: 100% !important;
  max-width: 100% !important;
}

.elementor-widget-wrap {
  width: 100% !important;
  padding: 0 !important;
}

.elementor-widget.elementor-widget-html {
  width: 100% !important;
}

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

:root {
  --blue:        #1a6bff;
  --blue-dark:   #0d4fd6;
  --blue-light:  #4d8dff;
  --orange:      #ff6b1a;
  --orange-dark: #e05500;
  --dark:        #050d1a;
  --dark2:       #0a1628;
  --dark3:       #0e1f38;
  --gray:        #8898aa;
  --light:       #e8eef8;
  --white:       #ffffff;
  --glass:       rgba(255,255,255,0.04);
  --glass-border:rgba(255,255,255,0.08);
  --radius:      16px;
  --shadow:      0 20px 60px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* bloque le scroll horizontal sur html */
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

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

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(26,107,255,0.1);
  border: 1px solid rgba(26,107,255,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--blue-light), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255,107,26,0.45);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,107,26,0.6); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 32px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.pulse-btn { position: relative; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  background: var(--orange);
  animation: pulse-ring 1.8s ease-out infinite;
  z-index: -1;
}

/* ─── HEADER ────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), #a78bfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--blue-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,26,0.4);
}
.header-phone:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,107,26,0.6); }
.urgence-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  color: #ffaa6b;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.dot-live {
  width: 7px;
  height: 7px;
  background: #ff6b1a;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* contient le scale(1.05) du hero-bg */
  padding: 80px 0;
  max-width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.8);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5,13,26,0.97) 0%,
    rgba(5,13,26,0.80) 50%,
    rgba(13,32,64,0.60) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,255,0.18), transparent 70%);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.12), transparent 70%);
  bottom: -100px; left: 200px;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,255,0.12);
  border: 1px solid rgba(26,107,255,0.3);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), #ffd56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .blue {
  background: linear-gradient(135deg, var(--blue-light), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 19px; color: #b0c0d8; margin-bottom: 40px; line-height: 1.7; max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--orange), #ff4500);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  padding: 20px 40px;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(255,107,26,0.5);
  position: relative;
  overflow: hidden;
}
.hero-phone-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: rgba(255,107,26,0.3);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}
.hero-phone-cta:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 60px rgba(255,107,26,0.7); }
.phone-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stats-row { display: flex; flex-wrap: wrap; gap: 32px; }
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-number span { color: var(--orange); }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); align-self: center; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─── URGENCE BANNER ────────────────────────────────────────── */
.urgence-banner {
  background: linear-gradient(135deg, rgba(255,107,26,0.15), rgba(255,69,0,0.08));
  border-top: 1px solid rgba(255,107,26,0.2);
  border-bottom: 1px solid rgba(255,107,26,0.2);
  padding: 20px 0;
}
.urgence-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.urgence-text { display: flex; align-items: center; gap: 14px; }
.urgence-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), #ff4500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.urgence-text strong { font-size: 18px; font-weight: 800; display: block; }
.urgence-text p { font-size: 14px; color: var(--gray); }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26,107,255,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,107,255,0.15);
}
.service-img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,22,40,0.95) 100%);
}
.service-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-tag.blue { background: var(--blue); }
.service-tag.purple { background: #7c3aed; }
.service-body { padding: 24px; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.service-icon.orange { background: rgba(255,107,26,0.12); border: 1px solid rgba(255,107,26,0.2); }
.service-icon.blue { background: rgba(26,107,255,0.12); border: 1px solid rgba(26,107,255,0.2); }
.service-icon.purple { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); }
.service-icon.green { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.service-icon.cyan { background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.2); }
.service-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-desc { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9cb0c8;
}
.feature-item::before {
  content: '\2713';
  width: 18px; height: 18px;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ─── REALISATIONS ──────────────────────────────────────────── */
.realisations { padding: 100px 0; background: var(--dark2); }
.realisations-header { text-align: center; margin-bottom: 60px; }
.real-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.real-card { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
.real-card:first-child { grid-row: span 2; }
.real-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.real-card:hover img { transform: scale(1.06); }
.real-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.real-card:hover .real-card-overlay { opacity: 1; }
.real-card-label { color: white; font-weight: 700; font-size: 14px; }

/* ─── WHY US ────────────────────────────────────────────────── */
.why-us { padding: 100px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: 24px; object-fit: cover; height: 520px; }
.why-image-overlay { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, rgba(26,107,255,0.15), transparent); }
.why-badge-float {
  position: absolute;
  bottom: 32px; left: -24px;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.why-badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), #ff4500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-badge-num { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 900; color: var(--white); }
.why-badge-text { font-size: 12px; color: var(--gray); }
.why-badge-float2 {
  position: absolute;
  top: 32px; right: -24px;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.why-badge-float2 .why-badge-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
}
.why-feature:hover { background: rgba(255,255,255,0.06); border-color: rgba(26,107,255,0.25); transform: translateX(4px); }
.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-feature h4 { font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.why-feature p { font-size: 13px; color: var(--gray); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--dark2); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(26,107,255,0.3); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: #fbbf24; font-size: 18px; }
.testi-text { color: #c8d8ec; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-location { font-size: 12px; color: var(--gray); }
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.google-rating { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 900; color: var(--white); }
.google-info { display: flex; flex-direction: column; gap: 4px; }
.google-stars { display: flex; gap: 4px; }
.google-label { font-size: 12px; color: var(--gray); }

/* ─── ZONES ─────────────────────────────────────────────────── */
.zones { padding: 80px 0; }
.zones-inner { text-align: center; }
.zones-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.zone-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s;
}
.zone-tag:hover { background: rgba(26,107,255,0.1); border-color: rgba(26,107,255,0.3); color: var(--blue-light); }

/* ─── CTA FINAL ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark3), var(--dark2)); }
.cta-orb {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,107,255,0.12), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-subtitle { font-size: 19px; color: var(--gray); margin-bottom: 48px; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  padding: 28px 56px;
  border-radius: 100px;
  box-shadow: 0 20px 60px rgba(255,107,26,0.5);
  transition: all 0.3s;
  position: relative;
}
.cta-phone-big::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 100px;
  background: rgba(255,107,26,0.25);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}
.cta-phone-big:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 32px 80px rgba(255,107,26,0.7); }
.cta-reassurance { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.reassurance-item { display: flex; align-items: center; gap: 8px; color: var(--gray); font-size: 14px; }
.reassurance-item span { color: #10b981; font-size: 16px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #020810;
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: var(--gray); font-size: 14px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-title { font-weight: 700; font-size: 15px; margin-bottom: 20px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--gray); font-size: 13px; }
.footer-seo-text { color: #2a3a50; font-size: 11px; line-height: 1.5; margin-top: 20px; }

/* ─── FLOATING CTA ──────────────────────────────────────────── */
.floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.floating-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  color: white;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(255,107,26,0.6);
  transition: all 0.3s;
  position: relative;
}
.floating-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  background: rgba(255,107,26,0.3);
  animation: pulse-ring 1.8s ease-out infinite;
  z-index: -1;
}
.floating-btn:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 16px 48px rgba(255,107,26,0.8); }
.floating-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .real-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .real-card:first-child { grid-row: span 1; grid-column: span 2; height: 250px; }
  .real-card { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-badge-float, .why-badge-float2 { display: none; }
}

/* ─── HEADER MOBILE : telephone sur UNE LIGNE ──────────────── */

/* Empecher le flex du header de wrapper (aller a la ligne) */
.header-inner {
  flex-wrap: nowrap;
}
.header-cta {
  flex-shrink: 0; /* empecher le cta de retrecir */
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* Cacher le badge "Disponible 24h/7j" */
  .urgence-badge { display: none !important; }

  /* Telephone : taille reduite mais SUR UNE SEULE LIGNE */
  .header-phone {
    font-size: 14px !important;
    padding: 9px 16px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: hidden;
    max-width: none !important;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  /* Tres petit ecran : numero court visible */
  header { padding: 10px 0; }
  .header-phone {
    font-size: 13px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
    letter-spacing: 0;
  }
  .logo-text { font-size: 16px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-phone-cta { font-size: 17px; padding: 16px 28px; }
  .stats-row { gap: 20px; }
  .stat-divider { display: none; }
  .real-grid { grid-template-columns: 1fr; }
  .real-card:first-child { grid-column: span 1; }
  .real-card { height: 220px; }
  .floating-label { display: none; }
  .floating-btn { padding: 16px; border-radius: 50%; }
  .floating-icon { margin: 0; }
  /* Urgence banner : empiler sur mobile */
  .urgence-inner { flex-direction: column; text-align: center; }
  /* CTA reassurance : 2 colonnes sur mobile */
  .cta-reassurance { gap: 16px; }
  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
}
