/* ═══════════════════════════════════════════
   GL'ELEC — Feuille de styles partagée
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --orange:       #E8733A;
  --navy:         #1B3A6B;
  --navy-light:   #2A5298;
  --bg:           #F8F9FA;
  --white:        #FFFFFF;
  --gray:         #6C757D;
  --gray-light:   #E9ECEF;
  --text:         #212529;
  --radius:       8px;
  --shadow:       0 4px 20px rgba(27,58,107,.12);
  --header-h:     60px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

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

.section-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 44px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--orange); color: var(--white); }
.btn-primary:hover  { box-shadow: 0 6px 24px rgba(232,115,58,.4); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); box-shadow: 0 6px 24px rgba(27,58,107,.25); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); box-shadow: none; }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,58,107,.10);
  z-index: 200;
  height: var(--header-h);
  transition: box-shadow .2s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(27,58,107,.18); }

nav.container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 38px; width: auto; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .83rem;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover { color: var(--orange); background: #FFF2EC; }
.nav-links > li > a .chevron {
  width: 12px; height: 12px;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(27,58,107,.15);
  padding: 8px 0;
  min-width: 230px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: .84rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background .12s, color .12s;
}
.nav-dropdown a:hover { background: #FFF2EC; color: var(--orange); }

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .83rem;
  color: var(--navy);
  display: flex; align-items: center; gap: 5px;
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-phone:hover { color: var(--orange); background: #FFF2EC; }

.nav-cta { margin-left: 6px; padding: 8px 18px; font-size: .83rem; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 23px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  z-index: 199;
  padding: 12px 24px 24px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
#mobile-nav.open { display: block; }
#mobile-nav ul li a {
  display: block; padding: 11px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}
#mobile-nav ul li a:last-child { border-bottom: none; }
#mobile-nav .mobile-submenu { padding-left: 16px; }
#mobile-nav .mobile-submenu a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: none;
  padding: 7px 8px;
}
#mobile-nav .btn { width: 100%; text-align: center; margin-top: 16px; }

section[id] { scroll-margin-top: var(--header-h); }

/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.breadcrumb {
  padding: calc(var(--header-h) + 20px) 0 0;
  background: var(--bg);
}
.breadcrumb-inner {
  padding: 14px 0;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem;
  color: var(--gray);
}
.breadcrumb-inner a { color: var(--navy); font-weight: 600; transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner .sep { opacity: .5; }
.breadcrumb-inner .current { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════════
   HERO — PAGE D'ACCUEIL (plein écran)
   ═══════════════════════════════════════════ */
#accueil {
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#accueil::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.04'%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");
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
  padding: 72px 0;
}
.hero-text { color: var(--white); }
.hero-text .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: 1.02rem; opacity: .88; margin-bottom: 34px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 36px;
  max-width: 380px; width: 100%;
}
.hero-card-icon {
  width: 62px; height: 62px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hero-card p { color: rgba(255,255,255,.9); font-size: .92rem; line-height: 1.6; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-badge {
  padding: 5px 12px; border-radius: 20px;
  font-size: .76rem; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: transform .15s, opacity .15s;
}
.hero-badge:hover { transform: translateY(-2px); opacity: .88; }
.hero-badge-a { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.hero-badge-b { background: var(--orange); color: var(--white); }

/* ═══════════════════════════════════════════
   HERO — PAGES INTERNES (compact)
   ═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::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.04'%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");
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 28px;
}
.page-hero-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--orange); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-text { color: var(--white); }
.page-hero-text .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 8px;
}
.page-hero-subtitle { font-size: .98rem; opacity: .85; }

/* ═══════════════════════════════════════════
   CHIFFRES CLÉS
   ═══════════════════════════════════════════ */
#chiffres { background: var(--orange); padding: 32px 0; }
.chiffres-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.chiffre-item { padding: 10px 0; color: var(--white); }
.chiffre-item + .chiffre-item { border-left: 1px solid rgba(255,255,255,.3); }
.chiffre-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 2rem;
  display: block; line-height: 1;
}
.chiffre-label { font-size: .85rem; opacity: .9; margin-top: 4px; }

/* ═══════════════════════════════════════════
   SERVICES GRID (accueil)
   ═══════════════════════════════════════════ */
#services { padding: 88px 0; background: var(--white); }
.section-header { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.service-card {
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 26px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transition: transform .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: #FFF2EC; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.service-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--navy); margin-bottom: 8px;
}
.service-card-desc { color: var(--gray); font-size: .88rem; line-height: 1.65; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .8rem;
  color: var(--orange);
  transition: gap .15s;
}
.service-card:hover .service-card-link { gap: 8px; }

/* ═══════════════════════════════════════════
   À PROPOS
   ═══════════════════════════════════════════ */
#apropos { padding: 88px 0; background: var(--white); }
.apropos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.apropos-illustration { position: relative; }
.apropos-img-wrap { border-radius: 16px; aspect-ratio: 4/3; overflow: hidden; }
.apropos-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--orange); color: var(--white);
  border-radius: 12px; padding: 14px 18px;
  text-align: center; box-shadow: var(--shadow);
}
.apropos-badge strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.6rem;
}
.apropos-badge span { font-size: .75rem; opacity: .9; }
.apropos-pro-photo {
  position: absolute; bottom: -16px; left: -16px;
  width: 105px; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); border: 3px solid var(--white);
}
.apropos-pro-photo img { width: 100%; height: 86px; object-fit: cover; }
.apropos-pro-photo span {
  display: block; background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 700;
  text-align: center; padding: 4px; text-transform: uppercase; letter-spacing: .05em;
}
.atouts { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.atout-item { display: flex; gap: 14px; align-items: flex-start; }
.atout-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: #FFF2EC; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.atout-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.atout-text span { font-size: .88rem; color: var(--gray); }

/* ═══════════════════════════════════════════
   ZONE D'INTERVENTION
   ═══════════════════════════════════════════ */
#zone { padding: 88px 0; background: var(--bg); }
.zone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.zone-map {
  background: linear-gradient(145deg, #EAF0F8, #D5E3F5);
  border-radius: 16px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.zone-cards { display: flex; flex-direction: column; gap: 18px; }
.zone-card {
  background: var(--white); border-radius: 12px;
  padding: 22px 26px; border-left: 4px solid var(--orange);
}
.zone-card.secondary { border-left-color: var(--navy); }
.zone-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); margin-bottom: 5px; font-size: .95rem;
}
.zone-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }
.zone-cta {
  background: #FFF2EC; border-radius: 12px;
  padding: 18px 22px; border-left: 4px solid var(--orange);
}
.zone-cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.zone-cta-phone {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .92rem; color: var(--navy);
  display: flex; align-items: center; gap: 5px; transition: color .15s;
}
.zone-cta-phone:hover { color: var(--orange); }

/* ═══════════════════════════════════════════
   DEVIS / CONTACT
   ═══════════════════════════════════════════ */
#devis {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
#devis::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.03'%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");
}
.devis-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
  position: relative; z-index: 1;
}
.devis-left { color: var(--white); }
.devis-left .section-title { color: var(--white); }
.devis-left .section-subtitle { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 14px; align-items: center; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-text { color: var(--white); }
.contact-item-text strong { display: block; font-weight: 600; font-size: .82rem; opacity: .7; text-transform: uppercase; letter-spacing: .05em; }
.contact-item-text a { font-size: 1rem; font-weight: 600; color: var(--white); transition: color .15s; }
.contact-item-text a:hover { color: var(--orange); }
.devis-form {
  background: var(--white); border-radius: 16px;
  padding: 36px; box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.form-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: 1.18rem; margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: .9rem;
  color: var(--text); background: var(--white);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,115,58,.12);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; padding: 14px; font-size: .98rem; margin-top: 6px; }
.form-rgpd { font-size: .75rem; color: var(--gray); margin-top: 10px; text-align: center; }

/* ═══════════════════════════════════════════
   SERVICE PAGE — CONTENU
   ═══════════════════════════════════════════ */
.service-page-content { padding: 72px 0; background: var(--white); }
.service-page-inner {
  display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start;
}
.service-page-main h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 16px; margin-top: 40px;
}
.service-page-main h2:first-child { margin-top: 0; }
.service-page-main p { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.service-page-main ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.service-page-main ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--gray); font-size: .95rem; line-height: 1.6;
}
.service-page-main ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 2px;
  background: #FFF2EC; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23E8733A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 12px;
}

.placeholder-block {
  border: 2px dashed var(--gray-light);
  border-radius: 12px; padding: 28px;
  text-align: center; margin: 28px 0;
  background: var(--bg);
}
.placeholder-block p { color: var(--gray); font-size: .9rem; margin: 0; }
.placeholder-block strong { color: var(--navy); display: block; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }

/* Sidebar */
.service-page-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-cta {
  background: var(--navy); border-radius: 14px;
  padding: 28px; color: var(--white); margin-bottom: 20px;
}
.sidebar-cta h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem; margin-bottom: 10px;
}
.sidebar-cta p { font-size: .88rem; opacity: .8; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; text-align: center; display: block; }
.sidebar-cta .btn + .btn { margin-top: 10px; }
.sidebar-contact { font-size: .88rem; margin-top: 14px; opacity: .8; text-align: center; }
.sidebar-contact a { color: var(--orange); font-weight: 700; }

.sidebar-engagements {
  background: var(--bg); border-radius: 14px; padding: 24px;
}
.sidebar-engagements h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .9rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .06em;
}
.eng-list { display: flex; flex-direction: column; gap: 10px; }
.eng-item { display: flex; gap: 10px; align-items: flex-start; }
.eng-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 6px;
}
.eng-item p { font-size: .85rem; color: var(--gray); line-height: 1.5; }
.eng-item p strong { color: var(--navy); display: block; }

/* ═══════════════════════════════════════════
   SERVICES LIÉS
   ═══════════════════════════════════════════ */
.related-services { padding: 72px 0; background: var(--bg); }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
  background: var(--white); border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid var(--gray-light);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--orange); }
.related-card .service-icon { margin-bottom: 12px; }
.related-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .95rem; margin-bottom: 6px;
}
.related-card p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PAGE INFO (mentions, confidentialité)
   ═══════════════════════════════════════════ */
.info-page { padding: 72px 0; background: var(--white); }
.info-page-content { max-width: 780px; }
.info-page-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: 1.3rem;
  margin-bottom: 12px; margin-top: 36px;
}
.info-page-content h2:first-child { margin-top: 0; }
.info-page-content p { color: var(--gray); margin-bottom: 10px; line-height: 1.75; }
.info-page-content a { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: #111C2D;
  color: rgba(255,255,255,.65);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .85rem; margin-top: 14px; line-height: 1.7; max-width: 270px; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--white); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: .84rem; transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: .78rem;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { transition: color .15s; }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.55rem; letter-spacing: .02em; line-height: 1;
}
.footer-brand-w   { color: var(--white); }
.footer-brand-o   { color: var(--orange); }
.footer-brand-eurl { color: rgba(255,255,255,.4); font-size: .95rem; font-weight: 600; margin-left: 6px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner, .apropos-inner, .zone-inner, .devis-inner { grid-template-columns: 1fr; }
  .hero-inner { gap: 0; }
  #accueil { min-height: auto; }
  .hero-inner { padding: 48px 0 52px; }
  .hero-card { display: none; }
  .chiffres-grid { grid-template-columns: 1fr; }
  .chiffre-item + .chiffre-item { border-left: none; border-top: 1px solid rgba(255,255,255,.3); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .apropos-badge { right: 16px; bottom: -10px; }
  .apropos-pro-photo { left: 16px; bottom: -10px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .burger { display: flex; }
  .service-page-inner { grid-template-columns: 1fr; }
  .service-page-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
}
