/* ========================================================================
   NEXT Énergies — Feuille de style principale
   ========================================================================
   Charte officielle :
     - Vert charte    : #86C440  (couleur principale d'accent)
     - Anthracite     : #414142  (textes, navbar)
     - Anthracite 2   : #323032  (footer, sections sombres)
     - Gris clair     : #EDECEB  (séparateurs, fonds)
     - Blanc          : #FFFFFF
   Typographies : Quicksand (titres) + Montserrat (corps)
   ====================================================================== */

:root {
  --vert:        #86C440;
  --vert-fonce:  #6FA833;
  --vert-clair:  #F0F8E5;
  --anthracite:  #414142;
  --anthracite-2:#323032;
  --gris-clair:  #EDECEB;
  --gris-texte:  #5F5E5A;
  --blanc:       #FFFFFF;
  --blanc-casse: #FAFAF8;
  --orange-soon: #F4A100;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--anthracite);
  line-height: 1.65;
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, .titre {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--anthracite);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; line-height: 1.3; }

a { color: var(--vert-fonce); }
a:hover { color: var(--vert); }

.accent { color: var(--vert); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vert);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ========================================================================
   TOPBAR (bandeau anthracite avec coordonnées)
   ====================================================================== */
.topbar {
  background: var(--anthracite);
  color: var(--blanc);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: var(--blanc); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--vert); }
.topbar .separator { opacity: 0.4; margin: 0 12px; }

@media (max-width: 768px) {
  .topbar { font-size: 0.78rem; }
  .topbar .d-mobile-hide { display: none; }
}

/* ========================================================================
   NAVBAR
   ====================================================================== */
.navbar-custom {
  background: var(--blanc);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--gris-clair);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-custom .navbar-brand img {
  height: 60px;
  width: auto;
}
.navbar-custom .nav-link {
  color: var(--anthracite) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--vert) !important;
}

/* Lien Pièces détachées (avec sous-titre "Bientôt en ligne") */
.nav-link-pieces {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1 !important;
  padding: 0.4rem 0.8rem !important;
}
.nav-pieces-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-pieces-line i {
  color: var(--vert);
  font-size: 0.95rem;
}
.nav-pieces-soon {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-soon);
  margin-top: 2px;
  margin-left: 22px;
}

@media (max-width: 991px) {
  .nav-link-pieces {
    flex-direction: row;
    align-items: center;
  }
  .nav-pieces-soon {
    margin-left: 8px;
    margin-top: 0;
  }
}

/* ========================================================================
   BOUTONS
   ====================================================================== */
.btn-vert {
  background: var(--vert);
  color: var(--blanc);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-vert:hover {
  background: var(--vert-fonce);
  color: var(--blanc);
  transform: translateY(-1px);
}
.btn-anthracite {
  background: var(--anthracite);
  color: var(--blanc);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-anthracite:hover {
  background: var(--anthracite-2);
  color: var(--blanc);
  transform: translateY(-1px);
}
.btn-outline-anthracite {
  background: transparent;
  color: var(--anthracite);
  border: 1.5px solid var(--anthracite);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-anthracite:hover {
  background: var(--anthracite);
  color: var(--blanc);
}

/* ========================================================================
   HERO — VERSION AVEC IMAGE PAC (Niveau 1 : filtre léger)
   ====================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background: var(--blanc);
  min-height: 600px;
}

/* Image PAC en arrière-plan, à droite */
.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrap picture,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image-wrap img {
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  filter: saturate(0.5) brightness(1.05);
}

/* Voile dégradé blanc → transparent */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 25%,
    rgba(255, 255, 255, 0.2) 60%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Le contenu hero passe au-dessus de l'image */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero .row {
  position: relative;
  z-index: 3;
}

.hero .col-lg-8 {
  max-width: 620px;
}

/* Halo vert décoratif en bas à droite (existant, conservé) */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(134,196,64,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blanc);
  padding: 6px 16px 6px 6px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  background: var(--vert);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 strong {
  color: var(--vert);
  font-weight: 700;
}
.hero p.lead {
  color: var(--gris-texte);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 1.2rem 0 2rem;
}
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanc);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--anthracite);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid var(--gris-clair);
}
.trust-pill i { color: var(--vert); font-size: 0.9rem; }
.trust-pill-logo {
  padding: 6px 14px 6px 6px;
  gap: 8px;
}
.trust-pill-logo img {
  height: 28px; width: auto;
  object-fit: contain;
}
.trust-pill-logo .logo-panasonic-mini {
  background: #0F4D8C;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.trust-pill-logo .logo-atlantic-mini {
  background: #fff;
  color: #E1252A;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1.5px solid #E1252A;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Responsive hero : sur mobile/tablette, l'image passe en filigrane */
@media (max-width: 992px) {
  .hero-image-wrap {
    width: 100%;
  }
  .hero-image-wrap img {
    opacity: 0.18;
    filter: saturate(0.3) brightness(1.1);
  }
  .hero-image-wrap::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }
  .hero .col-lg-8 {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-image-wrap img {
    opacity: 0.12;
  }
}

/* ========================================================================
   SECTION AVANTAGES
   ====================================================================== */
.avantages { padding: 80px 0; background: var(--blanc); }
.avantage-card { text-align: center; padding: 1rem; }
.avantage-icon {
  width: 64px; height: 64px;
  background: var(--vert-clair);
  color: var(--vert);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.avantage-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.avantage-card p { color: var(--gris-texte); font-size: 0.95rem; line-height: 1.6; }

/* ========================================================================
   SECTION HISTOIRE
   ====================================================================== */
.histoire { padding: 90px 0; background: var(--blanc-casse); }
.stat { text-align: center; padding: 1rem; }
.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--vert);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-card {
  background: var(--blanc);
  border-radius: 12px;
  padding: 2rem 1rem;
  height: 100%;
}

/* ========================================================================
   SECTION SERVICES (PAC en vedette + autres)
   ====================================================================== */
.services { padding: 90px 0; background: var(--blanc); }

.service-vedette {
  background: linear-gradient(135deg, var(--vert-clair) 0%, var(--blanc) 100%);
  border: 2px solid var(--vert);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.service-vedette::before {
  content: 'NOTRE CŒUR DE MÉTIER';
  position: absolute;
  top: 16px; right: 20px;
  background: var(--vert);
  color: var(--blanc);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-vedette .vedette-icon {
  width: 80px; height: 80px;
  background: var(--vert);
  color: var(--blanc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-vedette h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--anthracite);
}
.service-vedette p {
  font-size: 1rem;
  color: var(--anthracite);
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.service-vedette .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.service-vedette .spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blanc);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--anthracite);
  border: 1px solid var(--vert-clair);
}
.service-vedette .spec i { color: var(--vert); font-size: 0.8rem; }

.service-card {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--vert);
  transition: width 0.3s;
}
.service-card:hover {
  border-color: var(--vert);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(65,65,66,0.08);
  text-decoration: none;
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--vert-clair);
  color: var(--vert);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.service-card p {
  color: var(--gris-texte);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.service-card a.lien-savoir-plus {
  color: var(--anthracite);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover a.lien-savoir-plus {
  color: var(--vert);
  gap: 10px;
}

.service-card .badge-secondary-service {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gris-clair);
  color: var(--gris-texte);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

/* ========================================================================
   SECTION CERTIFICATIONS
   ====================================================================== */
.certifications { padding: 90px 0; background: var(--blanc-casse); }
.cert-card {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cert-card:hover {
  border-color: var(--vert);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.cert-card .cert-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cert-card .cert-logo img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
}
.cert-card .cert-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
}
.cert-card .cert-subtitle {
  font-size: 0.8rem;
  color: var(--gris-texte);
  line-height: 1.5;
}

/* Placeholders stylés (Panasonic / Atlantic) */
.cert-placeholder {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 8px;
}
.cert-placeholder.panasonic { background: #0F4D8C; color: var(--blanc); }
.cert-placeholder.panasonic .brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.cert-placeholder.panasonic .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.cert-placeholder.atlantic { background: var(--blanc); border: 2px solid #E1252A; }
.cert-placeholder.atlantic .brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #E1252A;
  letter-spacing: 0.02em;
}
.cert-placeholder.atlantic .label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthracite);
}

/* ========================================================================
   SECTION AUDIENCES (sombre, "Particuliers / Constructeurs")
   ====================================================================== */
.audiences { padding: 90px 0; background: var(--anthracite); color: var(--blanc); }
.audiences h2 { color: var(--blanc); }
.audience-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.4rem 2rem;
  height: 100%;
  transition: all 0.3s;
}
.audience-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--vert);
}
.audience-card h3 {
  color: var(--vert);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.audience-card p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========================================================================
   SECTION BLOG TEASER
   ====================================================================== */
.blog-teaser { padding: 90px 0; background: var(--blanc); }
.article-card {
  background: var(--blanc);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid var(--gris-clair);
  display: block;
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
}
.article-card .img-wrap {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--gris-clair);
}
.article-card .body { padding: 1.5rem; }
.article-card .meta {
  font-size: 0.78rem;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.article-card .meta .cat { color: var(--vert); }
.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.article-card p { color: var(--gris-texte); font-size: 0.9rem; margin-bottom: 0; }

/* ========================================================================
   CTA FINAL (bandeau vert)
   ====================================================================== */
.cta-final {
  padding: 80px 0;
  background: var(--vert);
  color: var(--blanc);
  text-align: center;
}
.cta-final h2 { color: var(--blanc); margin-bottom: 1rem; }
.cta-final p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.95;
}
.cta-final .btn-anthracite { background: var(--anthracite); }
.cta-final .btn-anthracite:hover { background: var(--anthracite-2); }

/* ========================================================================
   FOOTER
   ====================================================================== */
footer {
  background: var(--anthracite-2);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}
footer h5 {
  color: var(--blanc);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--vert); }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.6rem; }

footer .footer-logo-card {
  display: inline-block;
  background: var(--blanc);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
footer .footer-logo-card img {
  height: 44px;
  display: block;
  width: auto;
}

footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
footer .social-link {
  display: inline-flex;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  color: var(--blanc);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.2s;
}
footer .social-link:hover {
  background: var(--vert);
  color: var(--blanc);
}

footer .badge-soon-footer {
  font-size: 0.65rem;
  background: var(--orange-soon);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 4px;
}

/* ========================================================================
   FORMULAIRES (page contact, devis…)
   ====================================================================== */
.form-section { padding: 60px 0; background: var(--blanc); }
.form-card {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  border-radius: 12px;
  padding: 2rem;
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1px solid var(--gris-clair);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(134,196,64,0.15);
  outline: none;
}
.form-text { font-size: 0.8rem; color: var(--gris-texte); }
.form-required { color: #d9534f; }
.alert-success {
  background: var(--vert-clair);
  border: 1px solid var(--vert);
  color: var(--vert-fonce);
  padding: 1rem 1.4rem;
  border-radius: 8px;
}
.alert-error {
  background: #FDECEA;
  border: 1px solid #E5605C;
  color: #B73A36;
  padding: 1rem 1.4rem;
  border-radius: 8px;
}

/* ========================================================================
   COOKIE BANNER (RGPD)
   ====================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--anthracite);
  color: var(--blanc);
  padding: 1.2rem;
  z-index: 9998;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner .btn-cookie {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  margin-right: 0.5rem;
}
.cookie-banner .btn-cookie-accept {
  background: var(--vert);
  color: var(--blanc);
  border: none;
  border-radius: 6px;
  font-weight: 600;
}
.cookie-banner .btn-cookie-refuse {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  font-weight: 600;
}
.cookie-banner .btn-cookie-config {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  font-size: 0.8rem;
  text-decoration: underline;
}

/* ========================================================================
   ANIMATIONS LÉGÈRES
   ====================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out backwards; }

/* ========================================================================
   RESPONSIVE — MOBILE
   ====================================================================== */
@media (max-width: 768px) {
  .hero { padding: 50px 0; min-height: auto; }
  .hero p.lead { font-size: 1rem; }
  .audiences, .services, .histoire, .blog-teaser, .avantages, .certifications {
    padding: 60px 0;
  }
  .cta-final { padding: 60px 0; }
  .service-vedette { padding: 1.8rem 1.4rem; }
  .service-vedette h3 { font-size: 1.4rem; }
  .service-vedette::before {
    position: relative;
    top: 0; right: 0;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

/* ========================================================================
   ACCESSIBILITÉ
   ====================================================================== */
:focus-visible {
  outline: 2px solid var(--vert);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
