/* ============================================================
   LOODGIETER JEROEN – Feuille de styles
   Design : Épuré, clair, moderne – Émeraude + Blanc + Charbon
   Polices : Plus Jakarta Sans
   ============================================================ */

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

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

:root {
  --green:         #10B981;
  --green-dark:    #059669;
  --green-light:   #34D399;
  --green-rgb:     16, 185, 129;
  --green-bg:      #ECFDF5;
  --dark-bg:       #0D1117;
  --dark-bg2:      #161B22;
  --dark-bg3:      #1C2330;
  --white:         #FFFFFF;
  --light:         #F9FAFB;
  --light-2:       #F0FDF4;
  --grey:          #6B7280;
  --grey-light:    #9CA3AF;
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;
  --dark:          #111827;
  --font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading:  'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --shadow-card:   0 2px 12px rgba(0,0,0,.06);
  --shadow-green:  0 8px 28px rgba(16,185,129,.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Animations ── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(var(--green-rgb),.5); }
  70%  { box-shadow: 0 0 0 12px rgba(var(--green-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--green-rgb),0); }
}
@keyframes slide-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(var(--green-rgb),.35);
}
.logo-img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -.2px;
  font-weight: 800;
}
.logo-text span {
  font-size: .67rem;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--green-light); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: filter .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(var(--green-rgb),.35);
}
.btn-call:hover { filter: brightness(1.1); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  line-height: 1;
}
.nav-phone-btn { display: none; }
.nav-close {
  display: none;
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   SERVICE NAV
══════════════════════════════════════════════ */
.service-nav {
  position: fixed;
  left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.service-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-pill {
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--grey);
  transition: all .18s;
  white-space: nowrap;
}
.service-pill:hover  { border-color: var(--green); color: var(--green-dark); background: var(--green-bg); }
.service-pill.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 3px 10px rgba(var(--green-rgb),.3);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background:
    linear-gradient(135deg, rgba(6,10,18,.88) 0%, rgba(13,17,23,.84) 50%, rgba(4,15,10,.90) 100%),
    var(--hero-img, none) center/cover no-repeat;
  background-color: var(--dark-bg);
  padding-top: 70px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Fond avec motif points discrets */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--green-rgb),.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* Dégradé radial doux en haut à gauche */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--green-rgb),.14) 0%, transparent 70%);
  pointer-events: none;
}
/* Dégradé radial en bas à droite */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(var(--green-rgb),.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeUp .7s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--green-rgb),.15);
  color: var(--green-light);
  border: 1px solid rgba(var(--green-rgb),.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.hero-visual { animation: fadeUp .9s .2s ease both; }
.hero-card-stack { display: flex; flex-direction: column; gap: 10px; }
.hcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s, border-color .2s;
}
.hcard:hover {
  background: rgba(var(--green-rgb),.1);
  border-color: rgba(var(--green-rgb),.3);
  transform: translateX(6px);
}
.hcard-icon {
  width: 44px; height: 44px;
  background: rgba(var(--green-rgb),.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hcard-body strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.hcard-body span { font-size: .8rem; color: rgba(255,255,255,.45); }
.hcard-badge {
  margin-left: auto;
  background: rgba(var(--green-rgb),.15);
  color: var(--green-light);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(var(--green-rgb),.25);
}

/* ══════════════════════════════════════════════
   TRUST MARQUEE
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark-bg2);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-track {
  display: flex;
  white-space: nowrap;
  animation: slide-marquee 28s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: .85rem;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.08);
}

/* ══════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--font);
  letter-spacing: .1px;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn-lg { font-size: 1rem; padding: 14px 32px; }
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(var(--green-rgb),.38);
}
.btn-green:hover { box-shadow: 0 10px 28px rgba(var(--green-rgb),.45); }
.btn-blue {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(var(--green-rgb),.38);
}
.btn-blue:hover { box-shadow: 0 10px 28px rgba(var(--green-rgb),.45); }
.btn-urgence {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(var(--green-rgb),.38);
}
.btn-urgence:hover { box-shadow: 0 10px 28px rgba(var(--green-rgb),.45); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-outline-blue {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}
.btn-outline-blue:hover { background: var(--green); color: var(--white); }
.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: .97rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(var(--green-rgb),.35);
}
.btn-submit:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(var(--green-rgb),.45); }

/* ══════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════ */
.section { padding: 88px 24px; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark-bg); }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: var(--green-dark);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(var(--green-rgb),.18);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.7px;
  margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-sub {
  font-size: .98rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}
.section-head { margin-bottom: 52px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark-bg2);
  padding: 48px 24px;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   SERVICES GRID CARDS
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card:hover {
  border-color: rgba(var(--green-rgb),.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--green-bg), #D1FAE5);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-card p {
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.svc-card-list {
  list-style: none;
  margin-bottom: 24px;
}
.svc-card-list li {
  font-size: .87rem;
  color: #374151;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
}
.svc-card-list li:last-child { border-bottom: none; }
.svc-card-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  transition: gap .2s;
}
.svc-card-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   WHY US GRID
══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.why-card:hover {
  background: rgba(var(--green-rgb),.08);
  border-color: rgba(var(--green-rgb),.25);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.why-card h3 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-banner::after { display: none; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--green-rgb),.25);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  color: var(--green);
  opacity: .08;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #F59E0B; font-size: .97rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: #4B5563;
  font-size: .9rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--dark); font-size: .88rem; }
.author-city { font-size: .76rem; color: var(--grey); }
.author-avatar img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════
   SERVICES SCROLL (mini-cards horizontales)
══════════════════════════════════════════════ */
.services-scroll-wrap {
  overflow: hidden;
  padding: 8px 0 20px;
  cursor: default;
  user-select: none;
}
.services-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.mini-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  width: 230px;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.mini-card:hover {
  border-color: rgba(var(--green-rgb),.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.mini-card-icon {
  width: 44px; height: 44px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.mini-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.mini-card p  { font-size: .8rem; color: var(--grey); line-height: 1.55; }
.mini-card-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════
   CONTENT GRID
══════════════════════════════════════════════ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.content-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.content-body p {
  color: #4B5563;
  font-size: .96rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.content-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-list { list-style: none; margin-bottom: 20px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .94rem;
  color: #374151;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar */
.content-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg2) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.sidebar-widget::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 120px;
  background: radial-gradient(circle, rgba(var(--green-rgb),.2) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
}
.sidebar-widget p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  position: relative;
}
.sidebar-phone-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-light);
  text-decoration: none;
  font-family: var(--font-heading);
  letter-spacing: .5px;
  margin-bottom: 4px;
  position: relative;
}
.sidebar-phone-num:hover { color: var(--white); }
.sidebar-phone-label {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
}
.sidebar-guarantees {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--border);
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.guarantee-item:last-child { border-bottom: none; }
.guarantee-icon {
  width: 34px; height: 34px;
  background: var(--green-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.guarantee-text strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--dark);
}
.guarantee-text span { font-size: .77rem; color: var(--grey); }

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.contact-info > p { color: var(--grey); font-size: .98rem; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
.contact-detail:hover {
  border-color: rgba(var(--green-rgb),.3);
  background: var(--green-bg);
  transform: translateX(4px);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .78rem; color: var(--grey); font-weight: 600; }
.contact-detail span   { font-size: .95rem; font-weight: 700; color: var(--dark); }
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow);
}
.form-title    { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.form-subtitle { font-size: .85rem; color: var(--grey); margin-bottom: 24px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group    { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb),.1);
}
.form-control::placeholder { color: #D1D5DB; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-urgence {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-bg);
  border: 1.5px solid rgba(var(--green-rgb),.2);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.form-urgence input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; accent-color: var(--green); }
.form-urgence label { font-weight: 600; color: var(--dark); font-size: .85rem; cursor: pointer; }
.form-note { text-align: center; font-size: .76rem; color: var(--grey-light); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 40px 16px; }
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.form-success p  { color: var(--grey); font-size: .93rem; }
.form-success a  { color: var(--green-dark); font-weight: 700; text-decoration: none; }

/* ══════════════════════════════════════════════
   CLIENTS PHOTO
══════════════════════════════════════════════ */
.clients-photo-wrap {
  position: relative;
  margin: 0 auto 48px;
  max-width: 900px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
}
.clients-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.clients-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,17,23,.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 480px) {
  .clients-photo { height: 200px; }
  .clients-photo-badge { font-size: .8rem; padding: 8px 16px; }
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: rgba(var(--green-rgb),.3);
  box-shadow: 0 4px 16px rgba(var(--green-rgb),.07);
}
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  font-size: .95rem;
  color: #4B5563;
  line-height: 1.8;
}
.faq-item p a { color: var(--green-dark); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.5);
  padding: 64px 24px 28px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo .logo-icon { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 9px; }
.footer-brand-logo strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}
.footer-desc { font-size: .86rem; line-height: 1.75; margin-bottom: 20px; }
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
}
.footer-phone-link:hover { color: var(--white); }
.footer-col h4 {
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .86rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-phone {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 900;
  font-size: .97rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 28px rgba(var(--green-rgb),.42);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.floating-devis {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .83rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(var(--green-rgb),.38);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual       { display: none; }
  .content-grid      { grid-template-columns: 1fr; }
  .content-sidebar   { position: static; }
  .contact-wrap      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; align-items: center; }
  .nav-close   { display: block; }
  .header-cta  { display: none; }
  .service-nav { display: none; }
  .nav-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 16px;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 6px 20px rgba(var(--green-rgb),.35);
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(13,17,23,.99);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .header-nav.open { display: flex; }
  .header-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    color: rgba(255,255,255,.8);
    width: 100%;
    text-align: center;
    max-width: 260px;
  }
  .header-nav .nav-link:hover { background: rgba(var(--green-rgb),.15); color: var(--green-light); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .hero-actions    { flex-direction: column; }
  .btn-lg          { font-size: .97rem; padding: 14px 24px; width: 100%; justify-content: center; }
  .cta-banner      { padding: 40px 22px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .form-row        { grid-template-columns: 1fr; }
  .form-card       { padding: 24px 18px; }
  .section         { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .why-grid          { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-legal      { justify-content: center; }
  .floating-devis    { display: none; }
  .floating-phone    { font-size: .88rem; padding: 12px 18px; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-pill      { padding: 5px 12px; font-size: .78rem; }
  .service-nav-inner { padding: 8px 12px; gap: 6px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .service-nav-inner::-webkit-scrollbar { display: none; }
  .hero-sub          { font-size: .97rem; }
  .faq-item summary  { font-size: .93rem; padding: 14px 16px; }
  .faq-item p        { padding: 0 16px 14px; font-size: .9rem; }
  .content-body h2   { font-size: 1.4rem; }
  .sidebar-widget    { padding: 20px; }
  .section-title     { font-size: 1.5rem; }
}
