/* FOOTER 3 - CTA INTEGRATED */
.footer-3 {
  background: var(--primary);
}
.footer-3 .cta-bar {
  background: var(--secondary);
  padding: 50px 5%;
}
.footer-3 .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-3 .cta-bar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
}
.footer-3 .cta-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-3 .cta-bar .btn:hover {
  background: var(--white);
  color: var(--black);
}
.footer-3 .main {
  padding: 60px 5%;
}
.footer-3 .main-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-3 .col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-3 .col ul {
  list-style: none;
}
.footer-3 .col li {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
}
.footer-3 .col a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-3 .col a:hover {
  color: var(--white);
}
.footer-3 .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 5%;
}
.footer-3 .bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-3 .bottom p {
  color: var(--white);
  font-size: 0.85rem;
  margin: 0;
}
.footer-3 .social {
  display: flex;
  gap: 16px;
}
.footer-3 .social a {
  color: var(--gray-light);
  transition: color 0.3s;
}
.footer-3 .social a:hover {
  color: var(--secondary);
}
.footer-3 .social svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
  .footer-3 .main-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-3 .main-inner {
    grid-template-columns: 1fr;
  }
  .footer-3 .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.footer-3 .col h4:hover {
  color: var(--white);
}

/* ── REGROUPEMENT PAR METIER ──────────────────────────────────────────
   Un intitule ouvre la serie de chaque metier dans la colonne « services ».
   Il n'est pas un lien : c'est un intertitre, pas une destination.

   MONO-METIER : aucun intitule n'est emis, la colonne est celle d'avant.

   LA COULEUR — le pied de page est SOMBRE : la rampe va de --secondary a
   --on-primary, les deux couleurs que le theme garantit lisibles dessus.
   Aucune couleur en dur, aucune variable ajoutee. */
.footer-3__metier {
  --m-couleur: color-mix(in oklab, var(--secondary), var(--on-primary) var(--m-melange, 0%));
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-couleur);
}
/* Le premier intitule ouvre la liste : pas d'espace superflu sous le <h4>. */
.footer-3__metier:first-child {
  margin-top: 0;
}
