/*!
Theme Name: My theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: my-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ════════════════════════════════════════════
   1. RESET
   ════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }


/* ════════════════════════════════════════════
   2. FONTS — Thunder
   ════════════════════════════════════════════ */
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-BoldLC.woff') format('woff'),
       url('fonts/Thunder-BoldLC.woff2') format('woff2'),
       url('fonts/Thunder-BoldLC.ttf') format('truetype');
  font-style: normal; font-weight: 700;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-BoldLCItalic.woff') format('woff'),
       url('fonts/Thunder-BoldLCItalic.woff2') format('woff2'),
       url('fonts/Thunder-BoldLCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 700;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-ExtraBoldLC.woff') format('woff'),
       url('fonts/Thunder-ExtraBoldLC.woff2') format('woff2'),
       url('fonts/Thunder-ExtraBoldLC.ttf') format('truetype');
  font-style: normal; font-weight: 800;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-ExtraBoldLCItalic.woff') format('woff'),
       url('fonts/Thunder-ExtraBoldLCItalic.woff2') format('woff2'),
       url('fonts/Thunder-ExtraBoldLCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 800;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-LC.woff') format('woff'),
       url('fonts/Thunder-LC.woff2') format('woff2'),
       url('fonts/Thunder-LC.ttf') format('truetype');
  font-style: normal; font-weight: 400;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-LCItalic.woff') format('woff'),
       url('fonts/Thunder-LCItalic.woff2') format('woff2'),
       url('fonts/Thunder-LCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 400;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-LightLC.woff') format('woff'),
       url('fonts/Thunder-LightLC.woff2') format('woff2'),
       url('fonts/Thunder-LightLC.ttf') format('truetype');
  font-style: normal; font-weight: 300;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-LightLCItalic.woff') format('woff'),
       url('fonts/Thunder-LightLCItalic.woff2') format('woff2'),
       url('fonts/Thunder-LightLCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 300;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-MediumLC.woff') format('woff'),
       url('fonts/Thunder-MediumLC.woff2') format('woff2'),
       url('fonts/Thunder-MediumLC.ttf') format('truetype');
  font-style: normal; font-weight: 500;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-MediumLCItalic.woff') format('woff'),
       url('fonts/Thunder-MediumLCItalic.woff2') format('woff2'),
       url('fonts/Thunder-MediumLCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 500;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-SemiBoldLC.woff') format('woff'),
       url('fonts/Thunder-SemiBoldLC.woff2') format('woff2'),
       url('fonts/Thunder-SemiBoldLC.ttf') format('truetype');
  font-style: normal; font-weight: 600;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-SemiBoldLCItalic.woff') format('woff'),
       url('fonts/Thunder-SemiBoldLCItalic.woff2') format('woff2'),
       url('fonts/Thunder-SemiBoldLCItalic.ttf') format('truetype');
  font-style: italic; font-weight: 600;
}


/* ════════════════════════════════════════════
   3. VARIABLES
   ════════════════════════════════════════════ */
:root {
  --navy:  #173955;
  --gray:  #5E686A;
  --green: #129E53;
  --white: #FFFFFF;
  --cream: #FFFCED;

  /* ── Système d'espacement responsive ── */
  --gutter:    clamp(16px, 5vw, 80px);    /* marge latérale globale */
  --section-v: clamp(56px, 7vw, 110px);   /* padding vertical sections */
}


/* ════════════════════════════════════════════
   4. BASE
   ════════════════════════════════════════════ */

/* Images : jamais d'étirement, jamais de débordement */
img, video, svg { max-width: 100%; height: auto; }

body {
  font-family: 'Thunder', sans-serif;
  font-style: normal;
  font-weight: 500;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

.italic-green {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

.space-word { word-spacing: 6px; }


/* ════════════════════════════════════════════
   5. HEADER / NAV
   ════════════════════════════════════════════ */

.announce-bar {
  position: absolute;
  top: 80px; left: 0; right: 0;
  z-index: 15;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-family: 'Thunder', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  height: 80px;
  background: var(--cream);
  border-bottom: 1px solid rgba(23,57,85,.08);
}

.nav-logo { height: 50px; width: auto; margin-left: 50px; }
.nav-logo-link { display: inline-flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-links .dropdown { display: flex; align-items: center; gap: 4px; }
.nav-links .dropdown svg { width: 14px; height: 14px; transition: transform .2s; }

.nav-ctas { display: flex; align-items: center; gap: 12px; }

/* ── Menu déroulant ── */
.nav-links .has-dropdown { position: relative; }

.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--cream);
  border: 1px solid rgba(23,57,85,.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(23,57,85,.12);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-links .has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}
.nav-links .submenu li { width: 100%; }
.nav-links .submenu a {
  display: block;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links .submenu a:hover { background: var(--green); color: var(--white); }
.nav-links .has-dropdown:hover .dropdown svg { transform: rotate(180deg); }


/* ════════════════════════════════════════════
   6. BOUTONS
   ════════════════════════════════════════════ */
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 20px;
  padding: 12px 50px;
  font-size: 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 12px 25px;
  font-size: 26px;
  cursor: pointer;
  text-decoration: none;
  margin-right: 20px;
  margin-left: 15px;
  transition: background .2s, color .2s, transform .15s;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.btn-hero-2 {
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 30px;
  padding: 20px 100px;
  font-size: 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  word-break: keep-all;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 20px;
  margin-top: 30px;
}

.btn-hero {
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 30px;
  padding: 20px 100px;
  font-size: 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  word-break: keep-all;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 20px;
  margin-top: 3px;
}
.btn-hero:hover { background: var(--green); transform: translateY(-2px); }


/* ════════════════════════════════════════════
   7. HERO — pages service (MAR / DPE / DTG)
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 48px 60px;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {                 /* le bloc qui contient titre + cartes + bouton */
  position: relative;           /* 👈 AJOUTÉ : permet d'activer le z-index */
  z-index: 5;                   /* 👈 AJOUTÉ : passe devant les éléments de fond */
  display: flex;
  flex-direction: column;
  align-items: center;          /* centre les éléments horizontalement */
  text-align: center;           /* centre le texte */
  margin: 0 auto;               /* centre le bloc dans le hero */
  max-width: 900px;             /* optionnel : évite que ça parte trop large */
}

.hero-headline {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  margin: 10px 0 0;
}
.hero-headline-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  margin: 0 0 0;
}

.hero-headline .italic-green { letter-spacing: 1px; }

.hero-sub {
  font-family: 'Thunder', sans-serif;
  font-weight: 400;
  /* Valeurs encore plus réduites : */
  font-size: clamp(0.7rem, 1vw, 1.4rem); 
  color: var(--navy);
  max-width: 900px;
  margin: 0 0 45px;
}

/* arcs latéraux */
.background-left,
.background-right {
  position: absolute;
  top: -15%;            /* remonte l'arc pour le recentrer quand il est plus grand */
  height: 150%;         /* ← LONGUEUR de l'arc (avant : 110%) */
  width: auto;
  min-width: 207px;     /* ← laisse l'arc s'agrandir en largeur (avant : 150px) */
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.background-left {
  left: 0;
  background-image: url('https://www.expertauditenergetique.fr/wp-content/uploads/2026/06/Plan-de-travail-6arc-de-cercle.png');
  background-position: left 44%;
}
.background-right {
  right: 0;
  background-image: url('https://www.expertauditenergetique.fr/wp-content/uploads/2026/06/Plan-de-travail-7arc-de-cercle.png');
  background-position: right 44%;
}

.background-hero {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0.03;
  background-image: url('/wp-content/uploads/2026/06/audit-energetique.jpg-2.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 1px;
  z-index: 0;
}


/* ════════════════════════════════════════════
   8. HERO 2 COLONNES — page d'accueil
   ════════════════════════════════════════════ */
.hero-split {
  position: relative;
  /* 1. On annule la hauteur plein écran forcée : */
  min-height: auto; 
  display: flex;
  /* 2. On aligne le contenu vers le haut, et plus au centre : */
  align-items: flex-start; 
  justify-content: center;
  overflow: hidden;
  /* 3. C'EST ICI QUE VOUS GÉREZ LE TROU ! Ajustez ce chiffre : */
  padding-top: 160px; 
  padding-bottom: 100px;
}

.hero-split::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 6;
  pointer-events: none;
}

.hero-split-left {
  position: relative;
  z-index: 10;
  width: 100%;                    /* 👈 avant : 65% */
  max-width: 1500px;           /* 👈 garde une largeur lisible */
  margin: 0 auto;                 /* 👈 avant : margin-left: 5% */
  padding: 0 var(--gutter);       /* 👈 marge sur les côtés en écran moyen */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-split .hero-headline {
  text-align: center;
  margin: 0 0 6px;
  font-size: clamp(2.5rem, 6.9vw, 8.5rem);
  line-height: 0.92;
}
.hero-split .hero-sub {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 600px;
  /* C'est ici qu'il faut baisser la taille ! */
  font-size: clamp(1rem, 1.5vw, 1.8rem); 
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;        /* 👈 centre le(s) bouton(s) */
  gap: 16px;
  margin: 30px 0 44px;
}

.hero-cta-group .btn-hero {
  margin: 0;
}
.btn-hero--outline {
  background: transparent !important;
  border: 2px solid var(--navy) !important;
  color: var(--navy) !important;
}
.btn-hero--outline:hover {
  background: var(--navy) !important;
  color: var(--cream) !important;
}

.hero-cards {
  display: flex;
  gap: 16px; /* Espace réduit entre les cartes (était à 28px) */
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.hero-card {
  flex: 1 1 120px; 
  min-width: 120px;
  max-width: 400px; /* 👈 AJOUTEZ CECI : Bloque la largeur de la carte */
  background: #FFFCED;
  border: 4px solid var(--navy);
  border-radius: 16px;
  padding: 20px 35px;
  text-align: center;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s;
}

.hero-card:hover {
  transform: translateY(-4px);
  background: var(--cream);
}

.hero-card strong {
  display: block;
  font-size: clamp(1rem, 2vw, 2.1rem); /* Titre bleu marine plus petit */
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 0px;
}

.hero-card span {
    font-size: clamp(1rem, 1.5vw, 1.7rem); /* Sous-titre vert plus petit */
  font-weight: 400;
  color: var(--green);
}
.hero-title-cards{
	
}
/* avis google */
.hero-reviews { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: -10px; margin-right: 20px }
.g-logo { width: 46px; height: 46px; }
.g-rating { display: flex; flex-direction: column; line-height: 1.1; }
.g-score { font-size: 28px; font-weight: 700; color: var(--navy); }
.g-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
.g-count { font-size: 16px; font-style: italic; color: var(--gray); }

/* ════════ AVIS GOOGLE — carrousel horizontal (accueil) ════════ */
.g-reviews{ width:100%; max-width:780px; margin:26px auto 0; }
.g-reviews-track{
  display:flex; gap:16px;
  overflow-x:auto; overflow-y:hidden;       /* ← défilement horizontal */
  scroll-snap-type:x mandatory;             /* ← aimantation carte par carte */
  scrollbar-width:none;                      /* ← cache la barre (Firefox) */
  padding:4px 2px 6px;
}
.g-reviews-track::-webkit-scrollbar{ display:none; } /* cache la barre (Chrome/Safari) */
.g-rev{
  flex:0 0 clamp(240px,80%,300px); scroll-snap-align:start;  /* largeur fixe → on en voit ~2,5 */
  background:#fff; border:1px solid rgba(23,57,85,.12); border-radius:16px;
  padding:16px 18px; text-align:left; box-shadow:0 6px 18px rgba(23,57,85,.07);
  font-family:system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
}
.g-rev-top{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.g-rev-avatar{
  flex:0 0 38px; width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:18px;
}
.g-rev-who{ display:flex; flex-direction:column; line-height:1.15; margin-right:auto; min-width:0; }
.g-rev-name{ font-weight:600; font-size:15px; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.g-rev-date{ font-size:12px; color:var(--gray); }
.g-rev-g{ flex:0 0 20px; width:20px; height:20px; }
.g-rev-stars{ display:block; color:#FBBC05; font-size:15px; letter-spacing:1px; margin-bottom:6px; }
.g-rev-text{
  margin:0; font-size:13.5px; line-height:1.5; color:#3a4a57;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4; overflow:hidden;
}
@media (max-width:600px){
  .g-reviews{ margin-top:20px; }
  .g-rev{ flex-basis:clamp(230px,84%,280px); }
}
.g-rev-avatar{
  flex:0 0 38px; width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:18px;
  object-fit:cover;                 /* ← AJOUTE CETTE LIGNE (recadre la photo) */
}
/* ════════════════════════════════════════════
   8a-bis. BARRE LOGOS CERTIFICATIONS
   ════════════════════════════════════════════ */
.logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 90px);
  background: var(--cream);
}
.logos-bar img {
  height: clamp(36px, 4.5vw, 64px);
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .2s;
}
.logos-bar img:hover { filter: grayscale(0%); }



/* ════════════════════════════════════════════
   8b. NOS SERVICES — section navy
   ════════════════════════════════════════════ */
.nos-services {
  position: relative;
  overflow: hidden;
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,252,237,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,252,237,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: clamp(50px, 5vw, 90px) clamp(24px, 4vw, 80px);
}

.svc-circle {
  position: absolute;
  width: clamp(300px, 34vw, 613px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #FFFCED;
  background-size: cover;
  background-position: center;
  border: 10px solid #FFFCED;
  z-index: 1;
  pointer-events: none;
}
.svc-circle--left  { left: -11%;  top: 12%; background-image: url('images/cercle-left.jpg'); }
.svc-circle--right { right: -13%; top: 36%; background-image: url('images/cercle-right.jpg'); }

.nos-services-title {
  position: relative;
  z-index: 2;
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
  color: var(--cream);
  text-align: center;
  line-height: 1;
  overflow-wrap: break-word;
  margin-bottom: clamp(36px, 4vw, 72px);
}

.svc-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4.5vw, 90px);
  max-width: 1750px;
  margin: 0 auto;
}

.svc-card {
  background: var(--navy);
  border: 12px solid #FFFCED;
  border-radius: 52px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: min(58vh, 33vw);
}
.svc-head,
.svc-body { background: #FFFCED; border-radius: 30px; }
.svc-head { padding: 24px 18px; text-align: center; }
.svc-body { padding: 26px 22px; flex-grow: 1; }

.svc-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 3.25rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.02;
  margin-bottom: 0px;
}
.svc-sub {
  font-family: 'Thunder', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.85vw, 2rem);
  color: var(--green);
}
.svc-desc {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.35vw, 1.45rem);
  color: var(--navy);
  line-height: 1.4;
  text-align: left;
}
.svc-btn {
  background: var(--navy);
  color: var(--cream);
  border: 4px solid #FFFCED;
  border-radius: 40px;
  padding: 14px 24px;
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 2.25rem);
  text-align: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}
.svc-btn:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
  .svc-circle { display: none; }
}


/* ════════════════════════════════════════════
   8c. NOUS INTERVENONS — carte de France
   ════════════════════════════════════════════ */
.nous-intervenons {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FCFAEC;
  padding: clamp(56px, 6vw, 110px) clamp(24px, 5vw, 90px) clamp(40px, 4vw, 70px);
  overflow: hidden;
}
.ni-title {
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
  color: var(--navy);
  text-align: center;
  line-height: 1;
  margin-bottom: clamp(24px, 2.5vw, 48px);
}
.ni-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
  padding-left: 10px;
  padding-bottom: 20px;
}
.ni-heading {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3.85rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: clamp(16px, 1.8vw, 30px);
}
.ni-heading em { font-style: italic; color: var(--green); }
.ni-desc {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  color: var(--green);
  line-height: 1.4;
  max-width: 740px;
  margin-bottom: clamp(28px, 3vw, 52px);
}
.ni-desc .ni-mid { color: var(--navy); font-weight: 500; }
.ni-btn { margin-bottom: 0; }
.ni-map { display: flex; justify-content: center; overflow: visible; }
.ni-map img { display: block; width: 120%; max-width: 820px; height: auto; margin-right: -10%; margin-top: -40px; }

@media (max-width: 980px) {
  .ni-grid { grid-template-columns: 1fr; }
  .ni-map { max-width: 480px; margin: 0 auto; }
}


/* ════════════════════════════════════════════
   8d. LIGNES DE SECTION
   ════════════════════════════════════════════ */
.section-line { display: none; }


/* ════════════════════════════════════════════
   8e. POURQUOI NOUS CHOISIR
   ════════════════════════════════════════════ */
.pourquoi {
  position: relative;
  overflow: hidden;

  /* ✅ plein écran : on casse la largeur du conteneur WordPress */
  width: 100vw;
  margin-left: calc(50% - 50vw);

  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background-color: var(--navy);
  background-image: url('https://www.expertauditenergetique.fr/wp-content/uploads/2026/06/green-house-white-roof-with-blue-sky-sunny-day.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 120%;   /* maison collée aux bords gauche/droite + bas, sur tous les écrans */
  padding: clamp(40px, 4vw, 70px) clamp(24px, 5vw, 90px) clamp(50px, 5vw, 80px);
}
.section-line,
.pq-bubble { position: relative; z-index: 1; }
.pq-title {
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
  color: #FFFCED;
  text-align: center;
  line-height: 1;
  margin-bottom: clamp(40px, 6vw, 120px);
}
.pq-bubble {
  position: relative;
  max-width: 1285px;
  margin: 0 auto;
  background: rgba(23, 57, 85, .8);
  border: 8px solid #FFFCED;
  border-radius: clamp(40px, 4.6vw, 80px);
  padding: clamp(8px, 1vw, 15px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.pq-bubble-inner {
  background: #FFFCED;
  border-radius: clamp(26px, 2.9vw, 50px);
  padding: clamp(22px, 2.6vw, 46px) clamp(26px, 4vw, 70px);
}
.pq-bubble-inner p {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 2.2rem);
  color: var(--navy);
  line-height: 1.35;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
}
.pq-tail {
  position: absolute;
  bottom: -46px;
  right: 13%;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 46px solid #FFFCED;
  background: none;
}
.pq-tail::after {
  content: '';
  position: absolute;
  top: -46px;
  left: -21px;
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 36px solid #173955;
}


/* ════════════════════════════════════════════
   8f. NOUS CONTACTER
   ════════════════════════════════════════════ */
.contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* On passe en colonne pour empiler titre et formulaire */
  align-items: center;    /* On centre horizontalement */
  justify-content: center; /* On centre verticalement si nécessaire */
  background: #FFFCED;
  padding: clamp(10px, 5vw, 20px) clamp(24px, 5vw, 90px) clamp(36px, 4vw, 80px);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.ct-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; /* Au lieu de 55% */
  max-width: 900px; /* On met une limite max pour que ça ne devienne pas immense sur grand écran */
  z-index: 2;
}
.ct-title {
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
  color: var(--navy);
  text-align: center;
  line-height: 1;
  margin-bottom: clamp(28px, 3vw, 56px);
}
.ct-form-col {
  width: 100%;
  z-index: 2;
  /* Le max-width est déjà géré par .ct-left, on peut l'enlever ou le garder s'il est plus grand */
  margin: 0 auto;
}

.ct-form-wrap {
  width: 100%;
  background: var(--navy);
  border-radius: clamp(32px, 3.5vw, 60px);
  padding: clamp(10px, 1vw, 18px);
}
.ct-form {
  background: #FFFCED;
  border-radius: clamp(24px, 2.8vw, 48px);
  padding: clamp(10px, 1vw, 14px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.5vw, 10px);
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 0.5vw, 10px);
}
.ct-form input,
.ct-form select,
.ct-form textarea {
  width: 100%;
  background: var(--navy);
  border: none;
  border-radius: 54px;
  padding: clamp(16px, 1.5vw, 22px) clamp(22px, 1.8vw, 32px);
  font-family: 'Thunder', sans-serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  color: #FFFCED;
}
.ct-form ::placeholder { color: rgba(255, 252, 237, .6); opacity: 1; }
.ct-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFCED' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 26px center;
  background-size: 22px;
}
.ct-form select:invalid { color: rgba(255, 252, 237, .6); }
.ct-form textarea {
  border-radius: 40px;
  min-height: clamp(80px, 6vw, 110px);
  resize: vertical;
}
.ct-submit {
  background: #FFFCED;
  color: var(--navy);
  border: 5px solid var(--navy);
  border-radius: 36px;
  padding: clamp(12px, 1.1vw, 18px);
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.75rem);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.ct-submit:hover { background: var(--green); border-color: var(--green); color: #FFFCED; transform: translateY(-2px); }


/* ════════════════════════════════════════════
   9. SECTIONS — base commune
   ════════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 800px; margin: 0 auto 60px; }

.section-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
}
.section-title .italic-green { font-style: italic; font-weight: 500; color: var(--green); }

section.services,
section.about,
section.process { padding: var(--section-v) var(--gutter); }


/* ════════════════════════════════════════════
   10. SERVICES
   ════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(23,57,85,.08);
  border-radius: 24px;
  padding: 40px 32px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23,57,85,.10); }
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--cream);
  color: var(--green);
  margin-bottom: 24px;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 20px;
}
.link-arrow {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.link-arrow:hover { color: var(--navy); }


/* ════════════════════════════════════════════
   11. À PROPOS + STATS
   ════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  max-height: 520px;
}
.about-text .section-title { text-align: left; }
.about-text > p {
  font-size: 19px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.5;
  margin: 20px 0 36px;
}
.stats { display: flex; gap: 40px; margin-bottom: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 56px; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 17px; font-weight: 500; color: var(--navy); text-transform: uppercase; }


/* ════════════════════════════════════════════
   12. PROCESS
   ════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.step { position: relative; padding: 36px 28px; background: var(--cream); border-radius: 24px; }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step h3 { font-size: 26px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 17px; font-weight: 400; color: var(--gray); line-height: 1.4; }


/* ════════════════════════════════════════════
   13. BLOC ENCADRÉ + FORMES
   ════════════════════════════════════════════ */
.framed { padding: var(--section-v) var(--gutter); }
.framed-box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 48px;
  padding: 90px 48px;
  overflow: hidden;
  text-align: center;
}
.shape { position: absolute; display: block; pointer-events: none; z-index: 1; }
.shape-circle { width: 220px; height: 220px; background: var(--green); border-radius: 50%; top: -70px; right: -60px; opacity: .9; }
.shape-ring { width: 180px; height: 180px; border: 18px solid var(--cream); border-radius: 50%; bottom: -70px; left: -50px; opacity: .15; }
.shape-arc { width: 140px; height: 280px; border: 14px solid var(--green); border-left: none; border-radius: 0 280px 280px 0; top: 50%; left: -40px; transform: translateY(-50%); opacity: .25; }
.shape-dot { width: 60px; height: 60px; background: var(--cream); border-radius: 50%; top: 40px; left: 60px; opacity: .12; }
.framed-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.framed-content .eyebrow { color: var(--green); }
.framed-content h2 {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
.framed-content h2 .italic-green { font-style: italic; color: var(--green); }
.framed-content p { font-size: 20px; font-weight: 400; color: var(--cream); opacity: .85; line-height: 1.5; margin-bottom: 36px; }


/* ════════════════════════════════════════════
   14. TÉMOIGNAGES
   ════════════════════════════════════════════ */
.testimonials { padding: var(--section-v) var(--gutter); background: var(--white); }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card { background: var(--cream); border-radius: 24px; padding: 36px 32px; }
.review-card .stars { color: var(--green); font-size: 22px; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { font-size: 19px; font-weight: 400; color: var(--navy); line-height: 1.5; margin-bottom: 20px; }
.review-author { font-size: 17px; font-weight: 600; color: var(--gray); text-transform: uppercase; }


/* ════════════════════════════════════════════
   15. PARTENAIRES
   ════════════════════════════════════════════ */
.partners { padding: clamp(44px, 5vw, 70px) var(--gutter); text-align: center; }
.partners-logos {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.partners-logos span {
  font-size: 26px;
  font-weight: 600;
  color: var(--gray);
  opacity: .6;
  text-transform: uppercase;
  transition: opacity .2s, color .2s;
}
.partners-logos span:hover { opacity: 1; color: var(--navy); }


/* ════════════════════════════════════════════
   16. BLOG
   ════════════════════════════════════════════ */
.blog-hero {
  background: var(--navy);
  padding: clamp(120px, 12vw, 180px) clamp(24px, 6vw, 120px) clamp(60px, 6vw, 100px);
  text-align: center;
}
.blog-hero-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 9rem);
  line-height: 0.92;
  color: var(--cream);
  margin: 0 0 20px;
}
.blog-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  color: rgba(255,252,237,.7);
  margin: 0;
}

.blog-grid-section {
  background: var(--cream);
  padding: clamp(48px, 6vw, 100px) clamp(24px, 6vw, 100px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(23,57,85,.07);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(23,57,85,.13); }

.blog-card-img-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}
.blog-card-img-placeholder { background: var(--navy); opacity: .3; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-card-body {
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.blog-card-cat {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-card-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  line-height: 1.05;
  margin: 0;
}
.blog-card-title a { color: var(--navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--green); }

.blog-card-excerpt {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.blog-card-date { font-size: 13px; color: var(--gray); }

.blog-card-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.blog-card-btn:hover { text-decoration: underline; }

.blog-empty {
  text-align: center;
  color: var(--gray);
  font-size: 1.2rem;
  padding: 60px 0;
  grid-column: 1 / -1;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 60px);
}
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: var(--navy); color: var(--cream); }


/* ════════════════════════════════════════════
   17. CTA FINAL
   ════════════════════════════════════════════ */
.cta-final { padding: var(--section-v) var(--gutter); background: var(--navy); text-align: center; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-final h2 {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-final h2 .italic-green { font-style: italic; color: var(--green); }
.cta-final p { font-size: 22px; font-weight: 400; color: var(--cream); opacity: .85; margin-bottom: 36px; }


/* ════════════════════════════════════════════
   18. FOOTER
   ════════════════════════════════════════════ */
.site-footer { background: var(--navy); }

.footer-logo {
  height: clamp(48px, 5vw, 80px);
  width: auto;
  display: block;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 90px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 36px;
}

.footer-social a { display: flex; align-items: center; }

.footer-social img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.footer-heading {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li { font-size: clamp(0.95rem, 1.1vw, 1.15rem); color: rgba(255,252,237,.65); }

.footer-col ul li a {
  color: rgba(255,252,237,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(16px, 2vw, 28px) clamp(24px, 5vw, 90px);
  font-style: italic;
}

.footer-bottom a {
  color: var(--navy);
  text-decoration: underline;
  font-size: clamp(0.85rem, 1vw, 1rem);
}
.footer-bottom a:hover { color: var(--green); }

.footer-bottom span {
  color: var(--gray);
  font-size: clamp(0.85rem, 1vw, 1rem);
}


/* ════════════════════════════════════════════
   À PROPOS
   ════════════════════════════════════════════ */
.apropos-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: clamp(120px, 12vw, 180px) clamp(24px, 6vw, 120px) clamp(60px, 6vw, 100px);
}
.apropos-hero-title {
  font-family: 'Thunder', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 9rem);
  line-height: 0.92;
  color: var(--cream);
  margin: 0 0 24px;
}
.apropos-hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  color: rgba(255,252,237,.75);
  max-width: 700px;
  margin: 0;
}
.apropos-section-title {
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  color: var(--navy);
  line-height: 1;
  margin: 0 0 clamp(24px, 3vw, 48px);
}
.apropos-section-title--cream { color: var(--cream); }

.apropos-qui {
  background: var(--cream);
  /* On remplace "clamp(24px, 6vw, 120px)" par un espace plus réduit, ex: "clamp(24px, 4vw, 50px)" */
  padding: clamp(30px, 3.5vw, 55px) clamp(24px, 4vw, 50px);
}
.apropos-qui-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
  max-width: 1400px;
  margin: 0; /* 👈 Remplace "margin: 0 auto;" pour forcer à gauche */
}
.apropos-qui-text p {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.apropos-qui-img img {
  width: 100%;
  max-width: 680px;
  max-height: 680px;
  height: auto;
  object-fit: contain;
  object-position: top;
  display: block;
  margin-left: auto;
}
.apropos-mission {
  background: var(--navy);
  padding: clamp(60px, 7vw, 110px) clamp(24px, 4vw, 50px);
}

.apropos-mission-inner {
  max-width: 1400px;
  /* On met la marge à 0 pour bloquer le conteneur à gauche (et on supprime le margin: 0 auto) */
  margin: 0; 
  /* Optionnel : on s'assure que tout le texte à l'intérieur est bien aligné à gauche */
  text-align: left; 
}


.apropos-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(20px, 3vw, 40px);
}
.apropos-value {
  background: rgba(255,252,237,.06);
  border: 1px solid rgba(255,252,237,.15);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 48px);
}
.apropos-value-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.apropos-value h3 {
  font-family: 'Thunder', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 12px;
}
.apropos-value p {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  color: rgba(255,252,237,.7);
  line-height: 1.55;
  margin: 0;
}

.apropos-certifs {
  background: var(--cream);
  padding: clamp(50px, 6vw, 90px) clamp(24px, 6vw, 120px);
  text-align: center;
}
.apropos-certifs .logos-bar { margin-top: clamp(20px, 3vw, 40px); }

.apropos-cta {
  background: var(--navy);
  padding: clamp(60px, 7vw, 110px) clamp(24px, 6vw, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.apropos-cta-title {
  font-family: 'Thunder', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  color: var(--cream);
  margin: 0;
}
.apropos-cta .btn-hero { background: var(--green); margin: 0; }
.apropos-cta .btn-hero:hover { background: #0d8040; }


/* ════════════════════════════════════════════
   19. RESPONSIVE — HAMBURGER + TOUS BREAKPOINTS
   ════════════════════════════════════════════ */

/* ── Desktop : burger caché, panel inline ── */
.nav-toggle { display: none; }
.nav-burger  { display: none; }
.nav-panel   { display: contents; }

/* ══════════════════════════════════════════
   ≤ 1366px : hamburger activé
   ══════════════════════════════════════════ */
@media (max-width: 1366px) {
  .header { padding: 12px 20px; }
  .nav-logo { margin-left: 0; height: 44px; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px; height: 46px;
    margin-left: auto;
    cursor: pointer;
    z-index: 110;
  }
  .nav-burger span {
    display: block;
    width: 28px; height: 3px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 3px;
    transition: transform .25s, opacity .2s;
  }

  .nav-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(23,57,85,.08);
    box-shadow: 0 16px 30px rgba(23,57,85,.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    transition: max-height .35s ease, opacity .25s, padding .35s;
  }
  #nav-toggle:checked ~ .nav-panel {
    max-height: 90vh;
    overflow-y: auto;
    opacity: 1;
    padding: 16px 24px 28px;
  }
  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links > li { border-bottom: 1px solid rgba(23,57,85,.08); }
  .nav-links a { display: block; padding: 16px 4px; font-size: 22px; }
  .nav-links .has-dropdown { position: static; }
  .nav-links .has-dropdown::after { display: none; }
  .nav-links .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    min-width: 0; margin: 0; padding: 0 0 8px 16px;
  }
  .nav-links .submenu a { font-size: 19px; padding: 10px 12px; }
  .nav-links .dropdown svg { display: none; }

  .nav-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px; width: 100%; margin-top: 20px;
  }
  .nav-ctas .btn-primary,
  .nav-ctas .btn-outline {
    width: 100%; margin: 0;
    text-align: center;
    padding: 14px 20px; font-size: 22px;
  }
}

/* ══════════════════════════════════════════
   ≤ 980px : tablette
   ══════════════════════════════════════════ */
@media (max-width: 980px) {
  .announce-bar { font-size: 16px; padding: 8px 16px; line-height: 1.25; }

  /* hero accueil */
  .hero-split { display: block; min-height: auto; padding: 130px 0 40px; text-align: center; }
  .hero-split::before { display: none; }
  .hero-split-left { width: auto; margin: 0; padding: 0 24px; }
  .hero-cards, .hero-reviews { justify-content: center; }
  .hero-split-right { position: static; height: auto; justify-content: center; margin-top: 24px; }
  .hero-split-right::after { display: none; }
  .hero-person { max-height: 60vh; }
  .btn-hero, .btn-hero-2 { padding: 16px 48px; font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* grilles → 2 colonnes */
  .services-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text .section-title, .about-text > p { text-align: center; }

  /* blog → 2 colonnes */
  .blog-grid { grid-template-columns: 1fr 1fr; }

  /* contact */
  .contact { flex-direction: column; align-items: center; }
  .ct-left { width: 100%; }
  .ct-photo { position: static; width: 70%; max-width: 420px; margin: 24px auto 0; }

  /* footer → 2 colonnes */
  .footer-main { grid-template-columns: 1fr 1fr; }

  /* à propos */
  .apropos-qui-inner { grid-template-columns: 1fr; }
  .apropos-values { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   ≤ 768px : mobile
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* hero service */
  .hero { padding: 100px var(--gutter) 48px; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3.2rem); }
  .background-left, .background-right { display: none; }

  /* hero accueil */
  .hero-split { padding-top: 150px; }
  .hero-split-left { padding: 0 16px; }
  .hero-cards { gap: 10px; }
  .btn-hero, .btn-hero-2 { font-size: clamp(1.3rem, 6vw, 2rem); padding: 14px 36px; }

  /* sections communes — on ne force que le vertical ; l'horizontal vient du --gutter */
  section.services, section.about, section.process { padding: 56px var(--gutter); }
  .testimonials, section.blog { padding: 56px var(--gutter); }
  .partners  { padding: 44px var(--gutter); }
  .cta-final { padding: 72px var(--gutter); }
  .nos-services { padding: 48px var(--gutter); }
  .nous-intervenons { padding: 48px var(--gutter); }
  .pourquoi  { padding: 48px var(--gutter); }
  .contact   { padding: 48px var(--gutter); }

  /* grilles → 1 colonne */
  .services-grid, .steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; gap: 20px; justify-content: center; }

  /* framed */
  .framed { padding: 56px var(--gutter); }
  .framed-box { padding: 56px var(--gutter); border-radius: 28px; }
  .shape-circle { width: 130px; height: 130px; top: -40px; right: -35px; }
  .shape-ring { width: 110px; height: 110px; border-width: 12px; }
  .shape-arc { display: none; }
  .partners-logos { gap: 24px; }

  /* nous intervenons */
  .ni-map img { width: 100%; margin-right: 0; margin-top: 0; }

  /* pourquoi : masquer la queue */
  .pq-tail { display: none; }

  /* contact */
  .ct-photo { display: none; }
  .ct-row { grid-template-columns: 1fr; }

  /* footer */
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--gutter); }
  .footer-bottom { padding: 16px var(--gutter); flex-direction: column; gap: 10px; text-align: center; }

  /* à propos */
  .apropos-hero    { padding: 100px var(--gutter) 56px; }
  .apropos-qui     { padding: 40px var(--gutter); }
  .apropos-mission { padding: 40px var(--gutter); }
  .apropos-values  { grid-template-columns: 1fr; }
  .apropos-certifs { padding: 40px var(--gutter); }
  .apropos-cta     { padding: 48px var(--gutter); }

  /* blog */
  .blog-grid-section { padding: 40px var(--gutter); }
  .blog-hero { padding: 100px var(--gutter) 56px; }

  /* logos bar */
  .logos-bar { gap: 28px; padding: 20px; }
  .logos-bar img { height: clamp(28px, 6vw, 44px); }
}

/* ══════════════════════════════════════════
   ≤ 640px : mobile moyen
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  /* hero : espace sous l'announce bar (peut passer sur 2 lignes) */
  .hero-split { padding-top: 152px; }

  /* boutons hero : taille intermédiaire */
  .btn-hero, .btn-hero-2 {
    padding: 15px 48px;
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
  .hero-cta-group { gap: 12px; }

  /* services : carte min-height plus souple */
  .svc-card { min-height: auto; }

  /* nous-intervenons : image pleine largeur dès 640px */
  .ni-map img { width: 100%; margin-right: 0; margin-top: 0; }

  /* footer : 1 colonne */
  .footer-main { grid-template-columns: 1fr; gap: 28px; }

  /* logos bar : 2 rangées équilibrées */
  .logos-bar { gap: 24px; padding: 20px 16px; }
  .logos-bar img { height: clamp(28px, 5.5vw, 44px); }
}

/* ══════════════════════════════════════════
   ≤ 480px : petit mobile (iPhone SE, etc.)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .header { height: 64px; }
  .nav-panel { top: 64px; }
  .announce-bar { top: 64px; font-size: 14px; }

  .hero-split { padding-top: 140px; }
  .hero-cards { flex-direction: column; }
  .hero-card { min-width: unset; width: 100%; }
  .hero-reviews { flex-direction: column; text-align: center; gap: 8px; }
  .btn-hero, .btn-hero-2 { width: 100%; text-align: center; padding: 12px 24px; }
  .btn-primary { font-size: 18px; padding: 10px 20px; }

  .stat-num { font-size: 42px; }
  .review-card { padding: 22px 18px; }
  .service-card { padding: 26px 18px; }
  .step { padding: 24px 16px; }

  .framed-box { padding: 44px 16px; border-radius: 20px; }
  .framed-content h2 { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .cta-final h2 { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .section-title { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }

  .pq-bubble-inner { padding: 20px 18px; }
  .pq-bubble-inner p { font-size: clamp(0.9rem, 4vw, 1.1rem); }
  .ct-form input, .ct-form select, .ct-form textarea { font-size: clamp(1rem, 4.5vw, 1.3rem); padding: 14px 18px; }
  .footer-social { gap: 16px; }
  .logos-bar img { height: 28px; }
}


/* ════════════════════════════════════════════
   MESSAGE CONFIRMATION FORMULAIRE
   ════════════════════════════════════════════ */
.ct-message {
  margin: 0 auto 16px;
  padding: 16px 10px;
  border-radius: 20px;
  text-align: center;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: #fff;
  max-width: 680px;
}

.ct-message--ok    { background: var(--green); }
.ct-message--error { background: #c0392b; }


/* ════════════════════════════════════════════
   📱 AJUSTEMENTS TÉLÉPHONE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {



  /* 2) Grossir le texte des boutons */
  .svc-btn   { font-size: clamp(1.45rem, 4.8vw, 1.9rem); padding: 16px 30px; }
  .ct-submit { font-size: clamp(1.5rem, 5vw, 2rem);      padding: 16px; }

  /* 3) Enlever la maison + supprimer le vide bleu de « Pourquoi nous choisir » */
  .pourquoi {
    background-image: none;
    min-height: auto;
  }

  /* 4) Supprimer le gros trou beige tout en bas (section « Nous contacter ») */
  .contact { min-height: auto; }
}
@media (max-width: 768px) {
  .hero-card strong { font-size: clamp(1.5rem, 5.5vw, 2.1rem); }
  .hero-card span   { font-size: clamp(1.15rem, 4vw, 1.7rem); }
}


/* ════════════════════════════════════════════
   PAGES LÉGALES (gabarit template-legal.php)
   ════════════════════════════════════════════ */
.legal-page{
  background:var(--cream);
  padding:120px var(--gutter) 80px;   /* le haut dégage le header fixe (80px) */
  min-height:70vh;
}
.legal-wrap{ max-width:820px; margin:0 auto; }
.legal-title{
  font-family:'Thunder',sans-serif; font-weight:700;
  font-size:clamp(2.2rem,5vw,4rem); text-transform:uppercase;
  color:var(--navy); line-height:1; margin-bottom:14px;
}
.legal-content h2{
  font-family:'Thunder',sans-serif; font-weight:600;
  font-size:clamp(1.4rem,2.6vw,2rem); color:var(--navy);
  margin:36px 0 12px; line-height:1.1;
}
.legal-content h3{
  font-family:'Thunder',sans-serif; font-weight:600;
  font-size:clamp(1.15rem,2vw,1.45rem); color:var(--navy); margin:24px 0 8px;
}
.legal-content p{
  font-family:system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  font-size:1rem; line-height:1.7; color:#3a4a57; margin-bottom:16px;
}
.legal-content ul{
  font-family:system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  list-style:disc; margin:0 0 18px; padding-left:1.4em;
}
.legal-content li{ font-size:1rem; line-height:1.7; color:#3a4a57; margin-bottom:8px; }
.legal-content a{ color:var(--green); text-decoration:underline; }
.legal-content strong{ color:var(--navy); }
.legal-content em{ color:var(--gray); }
@media (max-width:768px){ .legal-page{ padding-top:100px; } }

/* ── Catégorie cliquable (carte blog) ── */
a.blog-card-cat { display:inline-block; text-decoration:none; transition:color .15s; }
a.blog-card-cat:hover { color: var(--navy); }

/* ── Page d'archive de catégorie ── */
.blog-hero-eyebrow {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  margin: 0 0 8px;
}
.blog-back { display:flex; justify-content:center; margin-top: clamp(24px, 3vw, 40px); }
.blog-back-link {
  color: var(--navy); font-weight: 600; text-decoration: none;
  font-size: clamp(1rem, 1.3vw, 1.2rem); transition: color .15s;
}
.blog-back-link:hover { color: var(--green); }

/* ════════ BLOG : 4 cartes catégories (home.php) ════════ */
.blog-cats{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(16px,1.8vw,26px); max-width:1280px; margin:0 auto; }
.blog-cat-card{ display:flex; flex-direction:column; background:#fff; border-radius:18px; overflow:hidden; box-shadow:0 4px 24px rgba(23,57,85,.07); text-decoration:none; color:var(--navy); transition:transform .2s, box-shadow .2s; }
.blog-cat-card:hover{ transform:translateY(-4px); box-shadow:0 12px 40px rgba(23,57,85,.13); }
.blog-cat-card-img{ display:block; aspect-ratio:4/3; background:var(--navy); background-size:cover; background-position:center; }
.blog-cat-card-img--empty{ background:var(--navy); }
.blog-cat-card-body{ padding:clamp(14px,1.4vw,22px); display:flex; flex-direction:column; gap:5px; }
.blog-cat-card-title{ font-family:'Thunder',sans-serif; font-weight:600; font-size:clamp(1.25rem,1.7vw,1.8rem); text-transform:uppercase; color:var(--navy); line-height:1.05; }
.blog-cat-card-count{ font-size:.9rem; color:var(--gray); }
.blog-cat-card-link{ margin-top:6px; font-weight:700; font-size:.95rem; color:var(--green); }
@media (max-width:980px){ .blog-cats{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .blog-cats{ grid-template-columns:1fr; } }
/* ════════ BLOG : étiquette catégorie cliquable + page archive (category.php) ════════ */
a.blog-card-cat{ display:inline-block; text-decoration:none; transition:color .15s; }
a.blog-card-cat:hover{ color:var(--navy); }
.blog-hero-eyebrow{ color:var(--green); font-weight:700; text-transform:uppercase; letter-spacing:.08em; font-size:clamp(.85rem,1.1vw,1rem); margin:0 0 8px; }
.blog-back{ display:flex; justify-content:center; margin-top:clamp(24px,3vw,40px); }
.blog-back-link{ color:var(--navy); font-weight:600; text-decoration:none; font-size:clamp(1rem,1.3vw,1.2rem); transition:color .15s; }
.blog-back-link:hover{ color:var(--green); }

/* Hero blog + catégories : compact */
.blog-hero{ padding-top:clamp(100px,8vw,124px); padding-bottom:clamp(26px,3vw,44px); }
.blog-hero-title{ font-size:clamp(2.5rem,5.5vw,5rem); }
/* Articles remontés (moins d'espace au-dessus) */
.blog-grid-section{ padding-top:clamp(28px,3vw,48px); }
/* Image des cartes plus courte */
.blog-card-img-wrap{ aspect-ratio:auto; height:clamp(150px,20vh,200px); }

/* Page Blog (4 cartes) uniquement : remplir l'écran → footer non visible au chargement */
body.blog .blog-grid-section{ min-height:calc(100dvh - 230px); }

/* ── Carte Google Maps en haut du footer ── */
.footer-map{ max-width:1560px; margin:0 auto; padding:clamp(28px,4vw,52px) clamp(24px,5vw,90px) 0; }
.footer-map__inner{ border-radius:24px; overflow:hidden; box-shadow:0 10px 34px rgba(0,0,0,.22); line-height:0; }
.footer-map iframe{ display:block; width:100%; height:clamp(240px,30vw,360px); border:0; }