/* ============================================================
   VERTUOSE S.P.R.L. — Feuille de style principale v3
   Icônes SVG inline, menu déroulant stable, logo SVG
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* --- Variables CSS --- */
:root {
  --navy-dark:  #0f1e2e;
  --navy:       #1a2f4e;
  --blue:       #2471a3;
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --white:      #ffffff;
  --off-white:  #f0f4f8;
  --text:       #2c3e50;
  --muted:      #6c7a89;
  --shadow:     0 4px 24px rgba(15,30,46,0.11);
  --shadow-lg:  0 8px 40px rgba(15,30,46,0.20);
  --radius:     8px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 70px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(34px, 5vw, 60px); }
h2 { font-size: clamp(26px, 4vw, 46px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }
h4 { font-size: 19px; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* --- Section Spacing --- */
.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.22);
  border-radius: 4px;
  padding: 5px 13px;
  margin-bottom: 14px;
}

.section--dark .section-label,
.section--navy .section-label {
  color: var(--red-light);
  background: rgba(231,76,60,0.12);
  border-color: rgba(231,76,60,0.28);
}

.section-title { margin-bottom: 14px; }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 44px; }
.section--dark .section-title, .section--navy .section-title { color: var(--white); }
.section--dark .section-subtitle, .section--navy .section-subtitle { color: rgba(255,255,255,0.60); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- LOGO SVG ---- */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-svg {
  height: 44px;
  width: auto;
  display: block;
}

/* ---- MENU DESKTOP ---- */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar__link {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(192,57,43,0.16);
}

.navbar__link.active { background: var(--red); }

.navbar__link .chevron {
  width: 11px; height: 11px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.navbar__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 8px 18px !important;
  font-weight: 700 !important;
}
.navbar__cta:hover { background: var(--red-light) !important; }

/* ============================================================
   MENU DÉROULANT — version liste (dropdown stable)
   ============================================================ */
.navbar__item {
  position: relative;
}

/* Zone tampon invisible — empêche le menu de se fermer
   quand la souris passe du lien vers le menu */
.navbar__item::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  z-index: 999;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px); /* décalé juste sous la zone tampon */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(15,30,46,0.22);
  padding: 8px 0;
  min-width: 280px;
  border-top: 3px solid var(--red);
  z-index: 2000;
  /* Caché par défaut */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

/* Ouvert via classe JS .is-open */
.navbar__item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__item.is-open .chevron {
  transform: rotate(180deg);
}

/* Item de la liste déroulante */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  transition: background 0.18s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--red);
}

.dropdown-item:hover .dropdown-item__icon svg {
  color: var(--red);
}

.dropdown-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(192,57,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s;
}

.dropdown-item:hover .dropdown-item__icon {
  background: rgba(192,57,43,0.15);
}

.dropdown-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.dropdown-item__text {
  display: flex;
  flex-direction: column;
}

.dropdown-item__title {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.2;
}

.dropdown-item__desc {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.dropdown-item:hover .dropdown-item__title {
  color: var(--red);
}

/* Séparateur optionnel */
.dropdown-divider {
  height: 1px;
  background: var(--off-white);
  margin: 5px 14px;
}

/* ============================================================
   HAMBURGER MOBILE
   ============================================================ */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed;
  top: 70px; right: 0;
  width: 300px;
  height: calc(100vh - 70px);
  background: var(--navy-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  border-left: 2px solid var(--red);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-drawer__link:hover { background: rgba(192,57,43,0.15); color: var(--white); }

.mobile-drawer__section-title {
  padding: 12px 22px 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 700;
}

.mobile-drawer__sub {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 32px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-drawer__sub:hover { background: rgba(192,57,43,0.12); color: var(--white); }

.mobile-drawer__sub svg {
  width: 16px; height: 16px;
  color: var(--red-light);
  flex-shrink: 0;
}

.mobile-drawer__link svg {
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ============================================================
   URGENCE BANNER
   ============================================================ */
.urgence-banner {
  background: linear-gradient(90deg, var(--red) 0%, #9b1c1c 100%);
  padding: 12px 0;
  text-align: center;
}

.urgence-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.urgence-banner__text {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.urgence-banner__text svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.8; }
}

.urgence-banner__phone {
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 6px;
  padding: 4px 16px;
  transition: var(--transition);
}

.urgence-banner__phone:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-accueil.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero--service .hero__bg {
  opacity: 0.20;
}

.hero__geo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,46,0.95) 0%, rgba(26,47,78,0.70) 60%, rgba(192,57,43,0.15) 100%);
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 55vw);
  opacity: 0.04;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.45);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.hero__badge svg { width: 15px; height: 15px; color: var(--red-light); }

.hero__title {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero__title span { color: var(--red-light); }

.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

.hero__stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero service pages */
.hero--service {
  min-height: 52vh;
}

.hero--service .hero__content {
  padding: 60px 0 48px;
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.hero__breadcrumb a:hover { color: var(--red-light); }
.hero__breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn--lg { padding: 15px 34px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   FEATURED CARDS (3 services phares)
   ============================================================ */
.featured-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,30,46,0.07);
  position: relative;
}

.featured-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.featured-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.featured-card:hover::after { transform: scaleX(1); }

.featured-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-card__body { padding: 26px 24px; }

.featured-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,0.08);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.featured-card__badge svg { width: 13px; height: 13px; }

.featured-card__title {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-card__title svg {
  width: 24px; height: 24px;
  color: var(--red);
  flex-shrink: 0;
}

.featured-card__desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.featured-card__link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.featured-card__link:hover { gap: 10px; }

/* ============================================================
   SERVICE CARDS (grille 7 services)
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,30,46,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: rgba(192,57,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}

.service-card:hover .service-card__icon { background: rgba(192,57,43,0.15); }

.service-card__icon svg {
  width: 28px; height: 28px;
  color: var(--red);
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   SUB-CATEGORY CARDS (pages service)
   ============================================================ */
.sub-card {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,30,46,0.07);
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative;
}

.sub-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 0 0 10px 10px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sub-card:hover::after { transform: scaleX(1); }

.sub-card__icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(192,57,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.sub-card__icon svg {
  width: 24px; height: 24px;
  color: var(--red);
}

.sub-card__title {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
}

.sub-card__desc {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}

.timeline__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.timeline__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -1px;
  width: calc(50% + 12px);
  height: 2px;
  background: var(--red);
  opacity: 0.3;
}

.timeline__item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -1px;
  width: calc(50% - 12px);
  height: 2px;
  background: var(--red);
  opacity: 0.3;
}

.timeline__circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.timeline__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Rajdhani', sans-serif;
}

.timeline__desc {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: rgba(192,57,43,0.1);
  font-family: Georgia, serif;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial__stars svg {
  width: 18px; height: 18px;
  color: #f59e0b;
}

.testimonial__text {
  font-size: 15.5px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial__author {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.testimonial__company {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.testimonial__company svg { width: 13px; height: 13px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, rgba(192,57,43,0.3) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; max-width: 560px; margin: 0 auto 32px; }
.cta-section .btn { position: relative; z-index: 1; }
.cta-section .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   URGENCE CARD (pages débouchage)
   ============================================================ */
.urgence-card {
  background: linear-gradient(135deg, var(--red) 0%, #9b1c1c 100%);
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.urgence-card__icon svg {
  width: 56px; height: 56px;
  color: rgba(255,255,255,0.85);
}

.urgence-card h3 { color: var(--white); font-size: 24px; }
.urgence-card p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ============================================================
   WHY US / ARGUMENTS
   ============================================================ */
.argument-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.argument-card:hover { transform: translateY(-2px); }

.argument-card__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.argument-card__icon svg {
  width: 26px; height: 26px;
  color: var(--white);
}

.argument-card__title {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--navy);
}

.argument-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(15,30,46,0.16);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,113,163,0.12);
}

.form-control::placeholder { color: var(--muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

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

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #065f46;
  font-weight: 700;
  margin-top: 16px;
}

/* ============================================================
   WEB3FORMS — Formulaire de contact
   ============================================================ */
.web3form-wrapper {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(15,30,46,0.08);
  padding: 36px 32px;
}

.web3form-wrapper .form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #065f46;
  font-weight: 700;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.web3form-wrapper .form-success svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

/* ============================================================
   BANDEAU COOKIES
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  border-top: 3px solid var(--red);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

#cookie-banner.visible {
  transform: translateY(0);
}

#cookie-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  margin: 0;
  flex: 1;
  min-width: 260px;
  line-height: 1.6;
}

#cookie-banner p a {
  color: var(--red-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.cookie-btn--accept:hover { background: var(--red-light); border-color: var(--red-light); }

.cookie-btn--refuse {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.30);
}
.cookie-btn--refuse:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.logo-item {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 28px;
  box-shadow: var(--shadow);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  border: 1px solid rgba(15,30,46,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-item svg { width: 22px; height: 22px; color: var(--red); }
.logo-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================================
   RÉFÉRENCES TABLE
   ============================================================ */
.ref-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ref-table th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.ref-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--off-white);
  font-size: 14px;
  color: var(--text);
}

.ref-table tr:hover td { background: var(--off-white); }

.ref-table .badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(36,113,163,0.1);
  color: var(--blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__logo-svg {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}

.footer__contact-item svg {
  width: 16px; height: 16px;
  color: var(--red-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--white); }

.footer__heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color 0.2s;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer__link:hover { color: var(--white); }

.footer__link svg {
  width: 14px; height: 14px;
  color: var(--red-light);
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer__bottom-text {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

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

.footer__legal-item {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.20s; }
.fade-in-delay-3 { transition-delay: 0.30s; }
.fade-in-delay-4 { transition-delay: 0.40s; }
.fade-in-delay-5 { transition-delay: 0.50s; }

.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION INTRO (pages service)
   ============================================================ */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-intro__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-intro__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-intro__content .section-label { display: inline-block; }

/* ============================================================
   AVANT / APRÈS
   ============================================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.before-after__item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.before-after__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.before-after__label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.before-after__label--after { background: var(--red); }

/* ============================================================
   MAPS
   ============================================================ */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,30,46,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,30,46,0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(192,57,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 22px; height: 22px;
  color: var(--red);
}

.contact-info-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.contact-info-card__value a {
  color: var(--navy);
  transition: color 0.2s;
}

.contact-info-card__value a:hover { color: var(--red); }

/* ============================================================
   UTILITIES
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-intro { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { gap: 0; }
}

@media (max-width: 768px) {
  body { padding-top: 70px; }

  .navbar__menu { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { min-height: 75vh; }
  .hero__content { padding: 50px 0 40px; }
  .hero__stats { gap: 20px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
  .grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .form-grid { grid-template-columns: 1fr; }
  .service-intro { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .timeline { flex-direction: column; gap: 20px; }
  .timeline__item::after, .timeline__item::before { display: none; }

  .section { padding: 60px 0; }
  .urgence-card { flex-direction: column; text-align: center; }

  .cta-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(28px, 8vw, 38px); }
  h2 { font-size: clamp(22px, 6vw, 32px); }
  .btn--lg { padding: 13px 22px; font-size: 15px; }
  .container { padding: 0 16px; }
  .navbar__inner { padding: 0 16px; }
}

/* ============================================================
   COOKIE BANNER — structure interne
   ============================================================ */
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text p {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.65;
}

.cookie-banner__text p strong {
  color: var(--white);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   FORMULAIRES — champs (form-grid, form-field)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid rgba(15,30,46,0.16);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236c7a89' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
