/* ==========================================
   MANIAK
   Style : Pro / Dynamique / Bleu roi
   Couleurs : Bleu #1A35E8 + Gris anthracite + Blanc
   Typo : Poppins + Inter
   ========================================== */

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

:root {
  --primary: #1a1f2e;
  --primary-light: #252b3b;
  --secondary: #1A35E8;
  --secondary-light: #4d6ef5;
  --secondary-dark: #1228c4;
  --white: #ffffff;
  --gray-light: #f6f7f9;
  --gray: #e4e7ed;
  --gray-medium: #8e95a3;
  --text: #1a1f2e;
  --text-light: #5a6172;
  --shadow: 0 4px 24px rgba(26, 31, 46, 0.07);
  --shadow-hover: 0 12px 36px rgba(26, 31, 46, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
svg { overflow: hidden; flex-shrink: 0; }

/* Prevent SVG from taking unexpected large sizes */
.service-icon svg { width: 26px; height: 26px; max-width: 26px; }
.hero-card-icon svg { width: 22px; height: 22px; max-width: 22px; }
.about-feature-icon svg { width: 20px; height: 20px; max-width: 20px; }
.contact-detail-icon svg { width: 20px; height: 20px; max-width: 20px; }
.contact-social svg { width: 19px; height: 19px; max-width: 19px; }
.footer-social svg { width: 17px; height: 17px; max-width: 17px; }
.zone-item svg { width: 14px; height: 14px; max-width: 14px; }
.nav-btn svg { width: 16px; height: 16px; max-width: 16px; }
.hero-phone svg { width: 20px; height: 20px; max-width: 20px; }
.hero-trust-item svg { width: 20px; height: 20px; max-width: 20px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 24px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 53, 232, 0.35);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 53, 232, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 0;
  transition: max-width 0.4s ease, top 0.4s ease, border-radius 0.4s ease,
              background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  top: 16px;
  max-width: 1060px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(26,31,46,0.1);
  border-color: var(--gray);
}

.header.menu-open,
.header.scrolled.menu-open {
  top: 0;
  max-width: 100vw;
  border-radius: 0;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 20px;
  transition: height 0.4s ease, padding 0.4s ease;
}

.header.scrolled .header-nav {
  height: 50px;
  padding: 0 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}

.header.scrolled .logo-icon,
.header.menu-open .logo-icon {
  background: var(--secondary);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.3px;
  transition: color var(--transition);
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.header.scrolled .logo-name,
.header.menu-open .logo-name {
  color: var(--primary);
}

.header.scrolled .logo-sub,
.header.menu-open .logo-sub {
  color: var(--text-light);
}

/* Nav links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  padding: 6px 13px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  background: rgba(26,53,232,0.1);
  color: var(--secondary-dark);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav-btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.header.scrolled .nav-btn-outline {
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--text);
}

.header.scrolled .nav-btn-outline:hover {
  background: rgba(26,53,232,0.06);
  border-color: var(--secondary);
  color: var(--secondary-dark);
}

.nav-btn-primary {
  background: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
}

.nav-btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.2); }

.header.scrolled .hamburger,
.hamburger.active {
  border-color: var(--gray);
  background: var(--white);
  color: var(--text);
}

.hamburger-icon { width: 20px; height: 20px; transition: transform 0.3s ease; }
.hamburger.active .hamburger-icon { transform: rotate(-45deg); }

.hamburger-path {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 0.3s ease, stroke-dashoffset 0.3s ease;
}

.hamburger.active .hamburger-path {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

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

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
}

.mobile-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.mobile-link:hover {
  background: rgba(26,53,232,0.08);
  color: var(--secondary-dark);
}

.mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; }

.mobile-full {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.mobile-menu .nav-btn-outline {
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--text);
}

.mobile-menu .nav-btn-outline:hover {
  background: rgba(26,53,232,0.06);
  border-color: var(--secondary);
  color: var(--secondary-dark);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,31,46,0.5);
  z-index: 997;
}

.mobile-overlay.open { display: block; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,31,46,0.96) 0%, rgba(26,31,46,0.82) 50%, rgba(18,40,196,0.7) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 100px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content { max-width: 580px; flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,53,232,0.15);
  border: 1px solid rgba(26,53,232,0.5);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
  color: var(--secondary-light);
}

.hero-badge svg { fill: var(--secondary-light); }

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.hero h1 span {
  color: var(--secondary-light);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 7px;
  background: rgba(26,53,232,0.22);
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons-wrapper {
  position: relative;
  margin-bottom: 36px;
}

.hero-perso {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 340px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 1;
  pointer-events: none;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-etoiles-img {
  height: 22px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.hero-trust { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.hero-trust-item { display: flex; align-items: center; gap: 8px; }

.hero-trust-item svg {
  width: 20px; height: 20px;
  fill: var(--secondary-light);
  flex-shrink: 0;
}

.hero-trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(26,53,232,0.45);
  animation: pulse-phone 2s ease-in-out infinite;
  margin-top: 28px;
}

.hero-phone svg { width: 20px; height: 20px; fill: var(--white); }

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Hero cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 300px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(26,53,232,0.4);
  transform: translateX(-4px);
}

.hero-card-accent {
  background: rgba(26,53,232,0.12);
  border-color: rgba(26,53,232,0.35);
}

.hero-card-icon {
  width: 42px; height: 42px;
  background: rgba(26,53,232,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.hero-card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--secondary-light);
  fill: none;
}

.hero-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.hero-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ==========================================
   SERVICES
   ========================================== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--secondary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,53,232,0.2);
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,53,232,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-card:hover .service-icon { background: var(--secondary); }

.service-icon svg {
  stroke: var(--secondary);
  fill: none;
  transition: stroke var(--transition);
}

.service-card:hover .service-icon svg { stroke: var(--white); }

.service-content h3 { font-size: 1.1rem; margin-bottom: 8px; }

.service-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  background: rgba(26,53,232,0.1);
  color: var(--secondary-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* ==========================================
   COMMENT CA MARCHE (Intervention)
   ========================================== */
.intervention { background: var(--gray-light); }

.intervention-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.intervention-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
}

.intervention-content h2 span { color: var(--secondary); }

.intervention-content > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.intervention-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  width: 40px; height: 40px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.step-text p { color: var(--text-light); font-size: 0.88rem; }

/* Zone d'intervention */
.intervention-zone {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}

.intervention-zone h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.intervention-zone > p {
  color: var(--secondary-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.zone-item svg {
  width: 14px; height: 14px;
  fill: var(--secondary);
  flex-shrink: 0;
}

/* ==========================================
   CHIFFRES (section sombre)
   ========================================== */
.chiffres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.chiffres-photo {
  position: relative;
  overflow: hidden;
}

.chiffres-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chiffres-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,40,196,0.55), rgba(10,14,23,0.4));
}

.chiffres-content {
  background: #0a0e17;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.chiffres-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 16px;
}

.chiffres-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.15;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.chiffre-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chiffre-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.chiffre-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.chiffres-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(26,53,232,0.4);
}

.btn-primary-dark:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,53,232,0.55);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}

.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ==========================================
   A PROPOS
   ========================================== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-wrapper img {
  width: 100%; height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(26,53,232,0.4);
  text-align: center;
}

.about-badge .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }

.about-content > p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.about-feature { display: flex; gap: 12px; align-items: flex-start; }

.about-feature-icon {
  width: 42px; height: 42px;
  background: rgba(26,53,232,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg { width: 20px; height: 20px; fill: var(--secondary-dark); }

.about-feature h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.about-feature p { color: var(--text-light); font-size: 0.82rem; }

/* ==========================================
   TEMOIGNAGES
   ========================================== */
.testimonials { background: var(--gray-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
  border: 1px solid var(--gray);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,53,232,0.25);
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; min-width: 16px; fill: var(--secondary); }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-author-info p { font-size: 0.78rem; color: var(--text-light); }

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 45px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(26,53,232,0.08);
  border-radius: 50%;
}

.contact-info h3 { color: var(--secondary-light); font-size: 1.5rem; margin-bottom: 10px; }
.contact-info > p { color: rgba(255,255,255,0.55); margin-bottom: 32px; font-size: 0.92rem; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(26,53,232,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--secondary-light); }

.contact-detail-text h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.contact-detail-text a:hover { color: var(--secondary-light); }

.contact-social {
  display: flex; gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-social a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.contact-social a:hover { background: var(--secondary); transform: translateY(-3px); }
.contact-social a svg { width: 19px; height: 19px; fill: var(--white); }

.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow);
}

.contact-form h3 { font-size: 1.4rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .required { color: var(--secondary-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26,53,232,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05a3a; }

.form-error { color: #e05a3a; font-size: 0.76rem; margin-top: 4px; display: none; }

.form-group input.error ~ .form-error,
.form-group select.error ~ .form-error,
.form-group textarea.error ~ .form-error { display: block; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; border-radius: var(--radius); }

.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(26,53,232,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,53,232,0.2);
}

.form-success.visible { display: block; }
.form-success svg { width: 52px; height: 52px; max-width: 52px; fill: var(--secondary); margin: 0 auto 12px; display: block; }
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--secondary-dark); }
.form-success p { color: var(--text-light); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--primary); color: rgba(255,255,255,0.55); padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand .logo-icon { background: var(--secondary); }

.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 14px 0 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-social a svg { width: 17px; height: 17px; fill: var(--white); }

.footer-col h4 {
  color: var(--secondary-light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: var(--secondary);
}

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.88rem; transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--secondary-light); padding-left: 4px; }
.footer-col p { font-size: 0.88rem; line-height: 1.75; }
.footer-col p a:hover { color: var(--secondary-light); }

.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.83rem; }
.footer-bottom a { color: var(--secondary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .nav-links-desktop { display: none; }
  .hamburger { display: flex; }
  .hero .container { flex-direction: column; gap: 40px; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-phone { margin-left: auto; margin-right: auto; }
  .hero-visual { flex-direction: row; width: 100%; }
  .hero-card { flex: 1; }
  .hero h1 { font-size: 2.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .chiffres { grid-template-columns: 1fr; }
  .chiffres-photo { min-height: 280px; }
}

@media (max-width: 768px) {
  .hero-perso { display: none; }
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .hero { min-height: auto; padding: 130px 0 60px; }
  .hero::after { height: 50px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-visual { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .intervention-grid { grid-template-columns: 1fr; gap: 40px; }
  .intervention-content h2 { font-size: 1.9rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper { order: -1; }
  .about-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chiffres-content { padding: 50px 28px; }
  .chiffres-content h2 { font-size: 1.9rem; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .chiffre-number { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .section-header h2 { font-size: 1.6rem; }
  .contact-info, .contact-form { padding: 28px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .zone-list { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr; }
  .chiffres-cta { flex-direction: column; }
}

/* ==========================================
   MAINTENANCE OVERLAY
   ========================================== */

.maintenance-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.maintenance-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.maintenance-content {
  text-align: center;
  padding: 40px 24px;
  max-width: 460px;
  width: 100%;
}

.maintenance-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.maintenance-logo-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maintenance-logo-icon svg {
  width: 44px;
  height: 44px;
}

.maintenance-logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.maintenance-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.maintenance-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.maintenance-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 12px;
}

.maintenance-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-medium);
  margin-bottom: 40px;
  line-height: 1.6;
}

.maintenance-divider {
  width: 48px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 0 auto 40px;
}

.maintenance-access-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.maintenance-form {
  display: flex;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

.maintenance-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.maintenance-input::placeholder {
  color: var(--gray-medium);
}

.maintenance-input:focus {
  border-color: var(--secondary);
}

.maintenance-btn {
  padding: 14px 28px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.maintenance-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

.maintenance-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 14px;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

@media (max-width: 480px) {
  .maintenance-logo { gap: 12px; }
  .maintenance-logo-icon { width: 60px; height: 60px; border-radius: 14px; }
  .maintenance-logo-icon svg { width: 34px; height: 34px; }
  .maintenance-logo-name { font-size: 1.5rem; }
  .maintenance-title { font-size: 1.35rem; }
  .maintenance-form { flex-direction: column; }
  .maintenance-btn { width: 100%; }
}
