/* =========================================================================
   SYNDESIN — Refonte v2 — Direction « Contraste affirmé / tech »
   Police : type Avenir (repli Manrope) · Couleurs : blanc / noir / gris / orange
   1. Variables  2. Bases  3. Conteneur  4. Boutons
   5. En-tête (logo centré, nav répartie)  6. Hero + visuels  7. Responsive
   ========================================================================= */

/* Police « Edo » (Canva / dafont) — déposez le fichier dans assets/fonts/ pour
   un affichage identique chez tous les visiteurs. Sinon, repli sur Permanent Marker. */
@font-face {
  font-family: "Edo";
  src: local("Edo"), url("../fonts/Edo.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Mochibun";
  src: local("Mochibun"), url("../fonts/Mochibun-Regular.ttf") format("truetype");
  font-display: swap;
}

/* ============================ 1. VARIABLES ============================== */
:root {
  --orange:       #ED8B2B;
  --orange-fonce: #cf741b;
  --noir:         #0e0e10;   /* noir profond                                */
  --noir-2:       #161619;
  --blanc:        #ffffff;
  --gris:         #6b7280;
  --gris-clair:   #f5f5f6;
  --gris-bord:    #e5e5e8;
  --texte:        #131316;

  /* Tout en Avenir (repli Manrope, très proche, pour les visiteurs sans Avenir) */
  --police: "Avenir Next", "Avenir", "Manrope", "Segoe UI", system-ui, sans-serif;
  --police-titre: "Avenir Next", "Avenir", "Manrope", "Segoe UI", system-ui, sans-serif;

  --largeur-max:  1200px;
  --rayon:        16px;
  --transition:   0.25s ease;
}

/* ============================ 2. BASES ================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--police);
  font-size: 18px;
  line-height: 1.65;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--police-titre); font-weight: 700; line-height: 1.05; margin: 0 0 0.5em; letter-spacing: -0.02em; }
p { margin: 0 0 1.1em; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: 0.8rem 1.2rem; z-index: 3000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ============================ 3. CONTENEUR ============================= */
.conteneur { width: 100%; max-width: var(--largeur-max); margin-inline: auto; padding-inline: 1.5rem; }

/* ============================ 4. BOUTONS ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--police); font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border: 1.5px solid transparent; border-radius: 12px;
  cursor: pointer; transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(237,139,43,0.32); }
.btn--orange:hover { background: var(--orange-fonce); color: #fff; }
.btn--contour-blanc { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--contour-blanc:hover { background: #fff; color: var(--noir); border-color: #fff; }
.btn--contour-fonce { background: transparent; border-color: rgba(14,14,16,0.22); color: var(--texte); }
.btn--contour-fonce:hover { background: var(--noir); color: #fff; border-color: var(--noir); }
.boutons { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ============================ 5. EN-TÊTE ============================== */
/* Peu commun : logo CENTRÉ, navigation répartie de part et d'autre,
   barre transparente posée par-dessus le hero (esprit premium/tech). */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
  padding-top: 1.4rem;
}
/* Cluster centré : 3 liens · LOGO · 3 liens, rapprochés pour la symétrie */
.nav {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.2rem, 1vw, 0.6rem);
  color: #fff; min-height: 56px;
}
.nav-gauche, .nav-droite { display: flex; align-items: center; gap: clamp(0.15rem, 0.8vw, 0.5rem); list-style: none; margin: 0; padding: 0; }
.nav a.lien {
  font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.86); white-space: nowrap;
  padding: 0.5rem 0.6rem; transition: color var(--transition), text-shadow var(--transition);
}
/* Survol + menu actif : titre orange lumineux (effet « halo ») */
.nav a.lien:hover, .nav a.lien[aria-current="page"] {
  color: var(--orange);
  text-shadow: 0 0 8px rgba(237,139,43,0.9), 0 0 20px rgba(237,139,43,0.55), 0 0 34px rgba(237,139,43,0.3);
}
.logo { display: block; margin-inline: clamp(0.6rem, 1.8vw, 1.5rem); }
.logo-img { height: 46px; width: auto; display: block; }

/* statut « disponible » (petit détail tech) */
.statut { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.8); padding-left: 0.4rem; }
.statut .point { width: 8px; height: 8px; border-radius: 50%; background: #46d27e; box-shadow: 0 0 0 4px rgba(70,210,126,0.18); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.6rem; cursor: pointer; }
.burger span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: var(--transition); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menu plein écran (mobile) */
.menu-mobile {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(14,14,16,0.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: 2rem; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.menu-mobile.ouvert { opacity: 1; pointer-events: auto; }
.menu-mobile a { color: #fff; font-family: var(--police); font-weight: 700; font-size: 1.6rem; padding: 0.6rem 0; }
.menu-mobile a:hover { color: var(--orange); }
.menu-mobile .fermer { position: absolute; top: 1.4rem; right: 1.4rem; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

/* ============================ 6. HERO ================================ */
.hero {
  position: relative;
  background: var(--noir);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* fond : grille de points + halos orange (formes géométriques douces) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  width: 620px; height: 620px; right: -160px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,139,43,0.30), transparent 65%);
  filter: blur(10px);
}
.hero .conteneur--hero {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(7rem, 12vw, 9.5rem) clamp(2rem, 5vw, 3.5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--police);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  border: 0; padding: 0; margin-bottom: 1.5rem;
}
.hero-eyebrow .point { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 6.4vw, 5rem); margin-bottom: 1.1rem; }
/* « Accessible » en police Edo (repli Permanent Marker), en orange plein */
.hero h1 .accent {
  font-family: "Edo", "Permanent Marker", "Segoe Script", cursive;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.95;
  letter-spacing: 0.005em;
  padding-right: 0.08em;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
}
/* Signature : « Avec » en blanc italique (Avenir, non gras) +
   « Sebastien Canot » en orange foncé gras (Avenir) qui s'allume au survol */
.hero-signature {
  font-family: var(--police);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0 0 1.8rem;
}
.hero-signature .sig-avec { color: #fff; font-style: italic; font-weight: 400; }
.hero-signature .sig-nom {
  color: var(--orange-fonce); font-weight: 700; font-style: normal;
  transition: color var(--transition), text-shadow var(--transition);
}
.hero-signature .sig-nom:hover {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(237,139,43,0.85), 0 0 24px rgba(237,139,43,0.55), 0 0 40px rgba(237,139,43,0.3);
}
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: rgba(255,255,255,0.76); max-width: 540px; margin-bottom: 2rem; }
.hero .boutons { margin-top: 0.4rem; }

/* bandeau réassurance */
.hero-points {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding-block: 1.4rem 2.2rem;
  font-weight: 600; font-size: 0.96rem; color: rgba(255,255,255,0.82);
}
.hero-points span { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero-points svg { color: var(--orange); flex-shrink: 0; }


/* ---- Visuel : pile de photos « polaroïd » des interventions ---- */
.hero-scene { position: relative; aspect-ratio: 1 / 1; }
.photo-pile { position: absolute; inset: 0; }
.photo {
  position: absolute; top: 50%; left: 50%;
  width: 70%; margin: 0;
  background: #fff;
  padding: 12px 12px 38px;
  border-radius: 4px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.5);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease;
}
.photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 2px; }
/* empilement : on centre puis on décale/incline chaque photo */
.photo--1 { transform: translate(-50%,-50%) rotate(-9deg) translate(-15%,-3%); z-index: 1; }
.photo--2 { transform: translate(-50%,-50%) rotate(6deg)  translate(14%,-8%);  z-index: 2; }
.photo--3 { transform: translate(-50%,-50%) rotate(-4deg) translate(-9%,9%);   z-index: 3; }
.photo--4 { transform: translate(-50%,-50%) rotate(8deg)  translate(11%,7%);   z-index: 4; }
/* au survol : la pile s'écarte légèrement */
.hero-scene:hover .photo--1 { transform: translate(-50%,-50%) rotate(-14deg) translate(-28%,-9%); }
.hero-scene:hover .photo--2 { transform: translate(-50%,-50%) rotate(11deg)  translate(26%,-13%); }
.hero-scene:hover .photo--3 { transform: translate(-50%,-50%) rotate(-7deg)  translate(-17%,15%); }
.hero-scene:hover .photo--4 { transform: translate(-50%,-50%) rotate(14deg)  translate(19%,11%); box-shadow: 0 28px 60px rgba(0,0,0,0.55); }
@media (prefers-reduced-motion: reduce) {
  .photo, .hero-scene:hover .photo { transition: none; }
}
.hero-scene .carte-centrale {
  position: absolute; inset: 14% 14%;
  border-radius: 22px;
  background: linear-gradient(160deg, #1c1c20, #131316);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  display: grid; place-items: center;
}
.hero-scene .carte-centrale svg { width: 62%; height: auto; }
/* formes flottantes */
.forme { position: absolute; border-radius: 14px; display: grid; place-items: center; }
.forme--ring { width: 84px; height: 84px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.18); top: 2%; left: 6%; animation: flotte 7s ease-in-out infinite; }
.forme--carre { width: 64px; height: 64px; background: var(--orange); box-shadow: 0 14px 30px rgba(237,139,43,0.4); top: 8%; right: 4%; transform: rotate(12deg); animation: flotte 6s ease-in-out infinite 0.4s; }
.forme--puce { width: 78px; height: 78px; background: #1c1c20; border: 1px solid rgba(255,255,255,0.14); bottom: 6%; left: 0%; animation: flotte 8s ease-in-out infinite 0.8s; color: var(--orange); }
.forme--code { width: 92px; height: 64px; background: #1c1c20; border: 1px solid rgba(255,255,255,0.14); bottom: 2%; right: 8%; color: #fff; font-weight: 800; font-family: var(--police); font-size: 1.4rem; animation: flotte 7.5s ease-in-out infinite 0.2s; }
.forme--dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); top: 46%; left: -2%; animation: flotte 5s ease-in-out infinite; }
@keyframes flotte { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }
.forme--carre { --r: 12deg; }
@media (prefers-reduced-motion: reduce) { .forme { animation: none !important; } }

/* ============================ 7. RESPONSIVE ========================== */
@media (max-width: 980px) {
  .nav-gauche, .nav-droite { display: none; }
  .burger { display: flex; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
  .logo { margin-inline: 0; }
}
@media (max-width: 860px) {
  .hero .conteneur--hero { grid-template-columns: 1fr; padding-top: 6.5rem; }
  .hero-scene { order: -1; max-width: 360px; margin-inline: auto; width: 100%; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .forme--code, .forme--puce { display: none; }
}

/* ============================ 8. SECTIONS ============================== */
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--gris { background: var(--gris-clair); }

/* ---- Le constat « 13 millions » ---- */
.constat {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.constat-eyebrow {
  display: inline-block; color: var(--orange);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.constat-titre {
  font-weight: 800; font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.12; color: var(--texte); margin: 0;
}
.constat-titre .big {
  display: block; color: var(--orange);
  font-size: clamp(4.5rem, 13vw, 8.5rem); line-height: 0.82;
  letter-spacing: -0.04em; margin-bottom: 0.35rem;
}
.constat-source { color: var(--gris); font-size: 0.85rem; margin-top: 0.8rem; }
.constat-texte p { color: var(--gris); font-size: 1.08rem; }
.constat-texte .btn { margin-top: 0.8rem; }

/* Vidéo du reportage dans la section constat */
.constat-video { margin: clamp(2rem, 4vw, 3rem) 0 0; }
.constat-video video {
  width: 100%; display: block;
  border-radius: var(--rayon);
  border: 1px solid var(--gris-bord);
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}
.constat-video figcaption { margin-top: 0.7rem; font-size: 0.9rem; color: var(--gris); text-align: center; }

@media (max-width: 860px) {
  .constat { grid-template-columns: 1fr; }
}

/* ---- Section sombre + en-tête de section ---- */
.section--noir { background: var(--noir); color: #fff; }
.section--noir h2 { color: #fff; }
.section--noir .conteneur { position: relative; }
.section-entete { max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-entete--centre { text-align: center; }
.section-eyebrow { display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.9rem; }
.section-entete h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 0.6rem; }
.section-entete .intro { color: var(--gris); font-size: 1.1rem; margin: 0; }
.section--noir .section-entete .intro { color: rgba(255,255,255,0.72); }

/* ---- Cartes services ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; color: var(--texte);
  border-radius: 18px; padding: 2rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,0.35); }
.service-icone {
  width: 78px; height: 78px; border-radius: 20px;
  background: linear-gradient(150deg, var(--orange), var(--orange-fonce));
  color: #fff;
  display: grid; place-items: center; margin: 0 auto 1.3rem;
  box-shadow: 0 12px 26px rgba(237,139,43,0.38);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.service-icone svg { width: 42px; height: 42px; }
.service-card:hover .service-icone { transform: scale(1.08) rotate(-6deg); box-shadow: 0 18px 34px rgba(237,139,43,0.5); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.service-card .desc { color: var(--gris); margin-bottom: 1.1rem; }
.service-liste { list-style: none; margin: 0 0 1.3rem; padding: 0; }
.service-liste li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.3rem 0; font-size: 0.98rem; }
.service-liste svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.credit-bloc { margin-bottom: 1.3rem; }
.badge-credit {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.82rem; color: var(--orange-fonce);
  background: rgba(237,139,43,0.13); padding: 0.4rem 0.45rem 0.4rem 0.9rem; border-radius: 50px;
}
.badge-logo-sap { height: 30px; width: auto; flex-shrink: 0; order: 2; }
.service-lien {
  margin-top: auto; font-family: var(--police); font-weight: 700; color: var(--texte);
  display: inline-flex; align-items: center; gap: 0.45rem;
  transition: gap var(--transition), color var(--transition);
}
.service-lien:hover { color: var(--orange-fonce); gap: 0.75rem; }

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1040px) {
  .services-grid { gap: 1rem; }
}

/* ---- Témoignages ---- */
.temoignage {
  max-width: 680px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--gris-bord); border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.temoignage-etoiles { color: var(--orange); font-size: 1.1rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.temoignage blockquote {
  margin: 0 0 1.2rem; color: var(--texte);
  font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.5; font-weight: 600;
}
.temoignage figcaption { display: inline-flex; align-items: center; gap: 0.8rem; justify-content: center; }
.t-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(150deg, var(--orange), var(--orange-fonce)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}
.t-info { text-align: left; display: flex; flex-direction: column; }
.t-nom { font-weight: 800; font-size: 1.05rem; }
.t-lieu { color: var(--gris); font-size: 0.92rem; }
.temoignage-cta { text-align: center; margin: 1.8rem 0 0; color: var(--gris); }
.temoignage-cta a { color: var(--orange-fonce); font-weight: 700; }
.temoignage-cta a:hover { text-decoration: underline; }

/* Carrousel d'avis Google */
.avis-note { font-weight: 600; color: var(--gris); margin: 0.5rem 0 0; }
.avis-note strong { color: var(--texte); font-size: 1.2rem; }
.avis-note .e { color: var(--orange); letter-spacing: 0.06em; }
.avis-carrousel { position: relative; margin-top: 0.5rem; }
.avis-track {
  display: flex; gap: 0.05rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0.6rem 0 1.4rem; scrollbar-width: none;
}
.avis-track::-webkit-scrollbar { display: none; }
.avis-card {
  scroll-snap-align: start; flex: 0 0 calc((100% - 0.1rem) / 3);
  background: #fff; border: 1px solid var(--gris-bord); border-radius: 18px;
  padding: 1.4rem; display: flex; flex-direction: column; text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}
.avis-card .etoiles { color: var(--orange); letter-spacing: 0.1em; margin-bottom: 0.5rem; font-size: 0.95rem; text-align: center; }
.avis-card blockquote {
  margin: 0 0 1.1rem; font-size: 0.93rem; line-height: 1.5; color: var(--texte); flex-grow: 1;
  display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.avis-card figcaption { display: flex; align-items: center; justify-content: flex-start; gap: 0.7rem; text-align: left; }
.avis-card .t-avatar { width: 42px; height: 42px; font-size: 0.88rem; }
.avis-nom { font-weight: 800; font-size: 0.95rem; display: block; }
.avis-date { color: var(--gris); font-size: 0.82rem; }
.avis-nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 0.4rem; }
.avis-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gris-bord);
  background: #fff; color: var(--texte); cursor: pointer; display: grid; place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.avis-nav button:hover { background: var(--noir); color: #fff; border-color: var(--noir); }
@media (max-width: 900px) { .avis-card { flex-basis: calc((100% - 0.05rem) / 2); } }
@media (max-width: 600px) { .avis-card { flex-basis: 100%; } }

/* ============================ 9. PIED DE PAGE ========================== */
.site-footer {
  background-color: var(--noir); color: rgba(255,255,255,0.72);
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem;
}
.site-footer a { color: rgba(255,255,255,0.72); transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-grille { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-logo-img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-horaires { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.footer-horaires li { margin-bottom: 0.7rem; }
.footer-horaires .jour { display: block; color: var(--orange); font-weight: 700; }
.footer-horaires .heure { color: rgba(255,255,255,0.8); }
.footer-liens a { color: rgba(255,255,255,0.6); }
.footer-liens a:hover { color: #fff; }
.reseaux { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.reseaux a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: grid; place-items: center; color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.reseaux a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-bas {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.6rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.6rem 1.6rem; text-align: center;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
@media (max-width: 860px) { .footer-grille { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-bas { justify-content: center; } }
@media (max-width: 560px) { .footer-grille { grid-template-columns: 1fr; } .footer-bas { flex-direction: column; } }

/* ============================ 10. PAGES INTÉRIEURES =================== */
/* Bannière sombre en haut de page (le header transparent se pose dessus) */
.page-banniere {
  background: var(--noir); color: #fff;
  padding-block: clamp(6.5rem, 11vw, 8.5rem) clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 4px solid var(--orange);
}
.page-banniere .fil { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.7rem; }
.page-banniere .fil a { color: rgba(255,255,255,0.6); }
.page-banniere .fil a:hover { color: #fff; }
.page-banniere h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.1rem); margin: 0; }
.page-banniere .page-intro { color: rgba(255,255,255,0.72); max-width: 640px; margin: 0.9rem 0 0; font-size: 1.05rem; }

/* Contenu texte (mentions légales, CGV…) */
.legal { padding-block: clamp(2.5rem, 5vw, 4rem); }
.legal .conteneur { max-width: 820px; }
.legal h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 2.2rem 0 0.8rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: var(--texte); font-size: 1rem; line-height: 1.75; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--orange-fonce); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .maj { color: var(--gris); font-size: 0.9rem; margin-top: 0.4rem; }
.legal .encart {
  background: var(--gris-clair); border: 1px solid var(--gris-bord);
  border-left: 4px solid var(--orange); border-radius: 10px; padding: 1rem 1.2rem; margin: 1.2rem 0;
}

/* ---- Page Actualité (fil d'infos) ---- */
.actu { padding-block: clamp(2.5rem, 5vw, 4rem); }
/* Bannière sombre avec halo orange remonté en haut (comme l'accueil), sans liseré */
/* Bloc sombre continu (bannière + articles) : fond noir + points + halo orange
   qui descend jusque sur la zone des cartes. */
.actu-sombre {
  position: relative; overflow: hidden; background: var(--noir);
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
}
.actu-sombre::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 840px; height: 840px; right: -260px; top: -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,139,43,0.30), transparent 62%);
  filter: blur(12px);
}
.actu-sombre > * { position: relative; z-index: 1; }
.actu-sombre .page-banniere { background: transparent; border-bottom: 0; }
.actu-sombre .actu.section--noir { background: transparent; }

/* Accent « Edo » orange (même charte que le hero de l'accueil) */
.accent-edo { font-family: "Edo", "Permanent Marker", cursive; font-weight: 400; color: var(--orange); font-size: 1.12em; }
.actu-grille { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.actu-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.actu-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,0.4); }
.actu-entete { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.actu-icone {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--orange), var(--orange-fonce));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 22px rgba(237,139,43,0.32);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.actu-icone svg { width: 28px; height: 28px; }
.actu-card:hover .actu-icone { transform: scale(1.06) rotate(-5deg); }
.actu-corps { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.actu-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.actu-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.28rem 0.65rem; border-radius: 50px; }
.actu-tag--cyber { background: rgba(237,139,43,0.15); color: var(--orange-fonce); }
.actu-tag--inclusion { background: var(--noir); color: #fff; }
.actu-tag--astuce { background: var(--gris-clair); color: var(--gris); border: 1px solid var(--gris-bord); }
.actu-date { font-size: 0.8rem; color: var(--gris); }
.actu-card h2 { font-size: 1.2rem; line-height: 1.25; margin: 0 0 0.5rem; color: var(--texte); }
.actu-card p { color: var(--gris); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; margin: 0; }
.actu-lien { margin-top: 1.1rem; font-weight: 700; color: var(--texte); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition), color var(--transition); }
.actu-lien:hover { color: var(--orange-fonce); gap: 0.7rem; }
.actu-note { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .actu-grille { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .actu-grille { grid-template-columns: 1fr; } }


/* ==================================================================
   11. PAGE CONTACT
   ================================================================== */

/* Bannière sombre réutilisable (halo orange + points), reprend l'accueil */
.banniere-sombre {
  position: relative; overflow: hidden; background: var(--noir);
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
}
.banniere-sombre::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 880px; height: 880px; right: -260px; top: -320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,139,43,0.30), transparent 62%);
  filter: blur(12px);
}
.banniere-sombre > * { position: relative; z-index: 1; }
.banniere-sombre .page-banniere { background: transparent; border-bottom: 0; }

/* --- Qui suis-je --- */
.quisuis { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
/* Photo au format polaroïd, légèrement inclinée (se redresse au survol) */
.quisuis-photo { background: #fff; padding: 14px 14px 0; border-radius: 6px; box-shadow: 0 26px 55px rgba(0,0,0,0.22); transform: rotate(-2.5deg); transition: transform var(--transition); max-width: 440px; margin: 0 auto; }
.quisuis-photo:hover { transform: rotate(0); }
.quisuis-photo img { display: block; width: 100%; object-fit: cover; aspect-ratio: 16 / 11; border-radius: 2px; }
.quisuis-photo figcaption { text-align: center; font-family: "Caveat", cursive; font-size: 1.5rem; color: var(--texte); padding: 0.45rem 0 0.7rem; }
.quisuis-texte h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0.3rem 0 1rem; }
.quisuis-texte p { color: var(--texte); line-height: 1.75; margin: 0 0 1rem; }
.quisuis-signature { font-family: "Caveat", var(--police); font-weight: 700; color: var(--orange-fonce); font-size: 2.1rem; line-height: 1; margin-top: 0.4rem; }

/* Section « Qui suis-je » sur fond noir (continuité du hero) */
.banniere-sombre .quisuis-section { background: transparent; }
.quisuis-section .quisuis-texte h2 { color: #fff; }
.quisuis-section .quisuis-texte p { color: rgba(255,255,255,0.78); }
.quisuis-section .quisuis-texte strong { color: #fff; }
.quisuis-section .quisuis-signature { color: var(--orange); }
.quisuis-section .quisuis-stats { border-top-color: rgba(255,255,255,0.15); }
.quisuis-section .quisuis-stats .nombre { color: var(--orange); }
.quisuis-section .quisuis-stats .label { color: rgba(255,255,255,0.6); }
.quisuis-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--gris-bord); }
.quisuis-stats div { display: flex; flex-direction: column; }
.quisuis-stats .nombre { font-size: 1.7rem; font-weight: 800; color: var(--orange-fonce); line-height: 1; }
.quisuis-stats .label { font-size: 0.85rem; color: var(--gris); margin-top: 0.35rem; }

/* --- Formulaire + coordonnées --- */
.contact-grille { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.8rem, 3.5vw, 3rem); align-items: start; }
.form-contact { background: #fff; border: 1px solid var(--gris-bord); border-radius: var(--rayon); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.form-rangee { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.champ { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.champ label { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; color: var(--texte); }
.champ label .req { color: var(--orange-fonce); }
.champ input, .champ select, .champ textarea {
  font-family: var(--police); font-size: 1rem; color: var(--texte);
  padding: 0.8rem 0.9rem; border: 1.5px solid var(--gris-bord); border-radius: 10px;
  background: var(--gris-clair); width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(237,139,43,0.15);
}
.champ textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--gris); margin-bottom: 1.2rem; }
.form-consent input { margin-top: 0.2rem; accent-color: var(--orange); width: auto; }
.form-consent a { color: var(--orange-fonce); font-weight: 600; }
.form-contact .btn--orange { width: 100%; justify-content: center; }
.form-statut { margin-top: 1rem; font-weight: 600; font-size: 0.95rem; display: none; padding: 0.8rem 1rem; border-radius: 10px; }
.form-statut.ok { display: block; color: #14692c; background: rgba(26,127,55,0.1); }
.form-statut.ko { display: block; color: #b3261e; background: rgba(192,57,43,0.1); }

/* --- Aside coordonnées --- */
.contact-aside { display: flex; flex-direction: column; gap: 1.1rem; }
.aside-bloc { background: #fff; border: 1px solid var(--gris-bord); border-radius: var(--rayon); padding: 1.4rem; box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.btn-appel { display: flex; align-items: center; justify-content: center; gap: 0.7rem; background: var(--orange); color: #fff; font-weight: 800; font-size: 1.2rem; padding: 1rem; border-radius: 12px; box-shadow: 0 8px 22px rgba(237,139,43,0.32); transition: background var(--transition), transform var(--transition); }
.btn-appel:hover { background: var(--orange-fonce); color: #fff; transform: translateY(-2px); }
.btn-appel span small { display: block; font-weight: 600; font-size: 0.74rem; opacity: 0.92; }
.aside-titre { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gris); font-weight: 700; margin: 0 0 0.9rem; }
.aside-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.aside-liste li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--texte); font-size: 0.95rem; }
.aside-liste svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.aside-liste a { color: var(--texte); }
.aside-liste a:hover { color: var(--orange-fonce); }
.aside-horaires { list-style: none; margin: 0; padding: 0; }
.aside-horaires li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; font-size: 0.92rem; border-bottom: 1px dashed var(--gris-bord); }
.aside-horaires li:last-child { border-bottom: 0; }
.aside-horaires .jour { color: var(--orange-fonce); font-weight: 700; }
.aside-credit { background: linear-gradient(150deg, var(--noir), var(--noir-2)); border: 0; }
.aside-credit .grand { font-size: 1.5rem; font-weight: 800; color: var(--orange); display: flex; align-items: center; gap: 0.5rem; }
.aside-credit .badge-logo-sap { height: 28px; }
.aside-credit p { margin: 0.5rem 0 0; color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.55; }

/* --- Section plan (fond noir, comme « Qui suis-je ») --- */
.plan-section { position: relative; overflow: hidden; background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px); background-size: 30px 30px; }
.plan-section::before { content: ""; position: absolute; z-index: 0; pointer-events: none; width: 620px; height: 620px; left: -240px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(237,139,43,0.26), transparent 64%); filter: blur(12px); }
.plan-section > * { position: relative; z-index: 1; }

/* --- Carte / plan (schéma SVG autonome) --- */
.carte-zone { position: relative; border-radius: var(--rayon); overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,0.30); border: 1px solid rgba(255,255,255,0.12); background: #141417; max-width: 760px; margin: 0 auto; }
.carte-schema { display: block; width: 100%; height: auto; font-family: var(--police); }
.carte-legende { text-align: center; color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-top: 1.1rem; }
.carte-legende .pastille { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgba(237,139,43,0.25); border: 2px solid var(--orange); vertical-align: middle; margin-right: 0.4rem; }

@media (max-width: 880px) {
  .quisuis { grid-template-columns: 1fr; }
  .contact-grille { grid-template-columns: 1fr; }
  .carte-zone iframe { height: 360px; }
}
@media (max-width: 520px) {
  .form-rangee { grid-template-columns: 1fr; }
}

/* --- Bloc contact en deux moitiés contrastées (clair / sombre) --- */
.contact-bloc { display: grid; grid-template-columns: 1.25fr 0.9fr; border-radius: 22px; overflow: hidden; box-shadow: 0 34px 80px rgba(0,0,0,0.16); border: 1px solid var(--gris-bord); background: #fff; }
.contact-bloc .form-contact { border: 0; border-radius: 0; box-shadow: none; padding: clamp(1.7rem, 3vw, 2.6rem); }

.contact-panneau { position: relative; overflow: hidden; background: var(--noir); color: #fff;
  padding: clamp(1.7rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 1.5rem;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px); background-size: 26px 26px; }
.contact-panneau::before { content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 480px; height: 480px; right: -210px; top: -190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,139,43,0.42), transparent 62%); filter: blur(10px); }
.contact-panneau > * { position: relative; z-index: 1; }
.pan-titre { font-size: 1.4rem; font-weight: 800; margin: 0; }
.pan-sous { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin: 0.3rem 0 0; }
.contact-panneau .aside-titre { color: rgba(255,255,255,0.45); }
.pan-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.pan-liste li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; color: rgba(255,255,255,0.9); }
.pan-liste svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pan-liste a { color: rgba(255,255,255,0.9); }
.pan-liste a:hover { color: var(--orange); }
.pan-horaires { list-style: none; margin: 0; padding: 0; }
.pan-horaires li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; font-size: 0.9rem; border-bottom: 1px dashed rgba(255,255,255,0.14); }
.pan-horaires li:last-child { border-bottom: 0; }
.pan-horaires .jour { color: var(--orange); font-weight: 700; }
.pan-credit { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid rgba(237,139,43,0.45); border-radius: 12px; background: rgba(237,139,43,0.08); }
.pan-credit-logo { height: 60px; flex-shrink: 0; background: #fff; padding: 8px 10px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.pan-credit p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.78); line-height: 1.45; }

@media (max-width: 880px) {
  .contact-bloc { grid-template-columns: 1fr; }
}


/* ==================================================================
   12. PAGES DE SERVICE (Installation, Formation, Dépannage)
   ================================================================== */

/* Titre de page partiellement manuscrit (Caveat) */
.titre-manuscrit { font-family: "Caveat", var(--police); font-weight: 700; color: var(--orange); font-size: 1.28em; }

/* Motif de points sur une section noire (comme la bannière) */
.section--points { background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px); background-size: 30px 30px; }

/* Détail fusionné avec le hero : même bloc sombre, le halo du hero se prolonge dessus */
.banniere-sombre .detail-sombre { background: transparent; }
.detail-sombre .section-entete h2 { color: #fff; }
.detail-sombre .section-entete .intro { color: rgba(255,255,255,0.72); }

/* Bandeau orange (couleur du logo) */
.section--orange { background: linear-gradient(135deg, var(--orange), var(--orange-fonce)); color: #fff; }
.section--orange .section-eyebrow { color: var(--noir); }
.section--orange .section-entete h2 { color: #fff; }
.section--orange .section-entete .intro { color: rgba(255,255,255,0.9); }
.section--orange .etape h3 { color: #fff; }
.section--orange .etape p { color: rgba(255,255,255,0.92); }
.section--orange .etape-num { background: var(--noir); color: #fff; box-shadow: 0 12px 26px rgba(0,0,0,0.3); }

/* Visuel d'illustration en tête de section */
.prestation-visuel { max-width: 860px; margin: 0 auto clamp(2rem, 4vw, 3rem); border-radius: var(--rayon); overflow: hidden; background: linear-gradient(135deg, #ffffff, #f1efea); border: 1px solid var(--gris-bord); box-shadow: 0 18px 44px rgba(0,0,0,0.07); }
.prestation-img { display: block; width: 100%; height: auto; }

/* Détail : photo à gauche, prestations en rectangles à droite */
.prestations-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center; }
.prestations-split .prestation-visuel { max-width: none; margin: 0; }
.prestations-liste { display: flex; flex-direction: column; gap: 1rem; }
.presta-item { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--gris-bord); border-radius: 14px; padding: 1.2rem 1.3rem; box-shadow: 0 10px 26px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease; }
.presta-item:hover { box-shadow: 0 16px 34px rgba(0,0,0,0.1); }
.presta-ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 13px; background: linear-gradient(150deg, var(--orange), var(--orange-fonce)); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 22px rgba(237,139,43,0.32); transition: transform 0.35s cubic-bezier(.2,.8,.2,1); }
.presta-item:hover .presta-ic { transform: scale(1.06) rotate(-5deg); }
.presta-ic svg { width: 26px; height: 26px; }
.presta-item h3 { font-size: 1.1rem; margin: 0 0 0.3rem; color: var(--texte); }
.presta-item p { margin: 0; color: var(--gris); font-size: 0.93rem; line-height: 1.5; }

/* Duo de polaroïds (photos d'intervention) — vrai cadre + légende manuscrite */
.duo-polaroid { position: relative; width: 100%; max-width: 520px; margin: 0 auto; aspect-ratio: 1 / 1.02; }
.duo-polaroid .polaroid { position: absolute; width: 72%; background: #fff; padding: 14px 14px 42px; border-radius: 6px; box-shadow: 0 26px 55px rgba(0,0,0,0.24); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.duo-polaroid .polaroid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }
.duo-polaroid .polaroid--1 { top: 0; left: 0; transform: rotate(-5deg); z-index: 1; }
.duo-polaroid .polaroid--2 { bottom: 0; right: 0; transform: rotate(4deg); z-index: 2; }
.duo-polaroid .polaroid:hover { transform: rotate(0); box-shadow: 0 32px 66px rgba(0,0,0,0.34); }

/* Cartes de prestations sur fond clair — seule l'icône s'anime au survol */
.prestations .service-card { border: 1px solid var(--gris-bord); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.prestations .service-card:hover { transform: none; box-shadow: 0 12px 30px rgba(0,0,0,0.06); }

/* Déroulé d'une intervention (étapes numérotées) */
.etapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.etape { position: relative; text-align: center; }
.etape-num { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(150deg, var(--orange), var(--orange-fonce)); color: #fff; font-weight: 800; font-size: 1.25rem; display: grid; place-items: center; margin: 0 auto 1rem; box-shadow: 0 10px 22px rgba(237,139,43,0.32); }
.etape h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
.etape p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--gris); }
.section--noir .etape h3 { color: #fff; }
.section--noir .etape p { color: rgba(255,255,255,0.72); }

/* Tarifs & devis */
.tarif-bloc { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center; background: #fff; border: 1px solid var(--gris-bord); border-radius: 20px; padding: clamp(1.7rem, 3.5vw, 2.6rem); box-shadow: 0 16px 40px rgba(0,0,0,0.06); max-width: 920px; margin: 0 auto; }
.tarif-prix { text-align: center; padding-right: clamp(0rem, 2vw, 1.5rem); border-right: 1px solid var(--gris-bord); }
.tarif-prix .montant { font-size: 3rem; font-weight: 800; color: var(--texte); line-height: 1; }
.tarif-prix .montant span { font-size: 1.05rem; color: var(--gris); font-weight: 600; }
.tarif-prix .apres { margin: 0.6rem 0 0; color: var(--orange-fonce); font-weight: 700; font-size: 0.95rem; }
.tarif-prix .badge-credit { margin-top: 0.9rem; }
.tarif-texte h2 { margin: 0 0 0.6rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.tarif-texte p { color: var(--gris); margin: 0 0 1.3rem; line-height: 1.65; }

/* Forfaits (prix fixes) */
.forfaits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.forfait-card { background: #fff; border: 1px solid var(--gris-bord); border-radius: 18px; padding: 1.8rem 1.6rem; box-shadow: 0 12px 30px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.forfait-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,0.12); }
.forfait-card h3 { font-size: 1.15rem; margin: 0 0 0.7rem; }
.forfait-card .montant { font-size: 2.5rem; font-weight: 800; color: var(--texte); line-height: 1; }
.forfait-apres { color: var(--orange-fonce); font-weight: 700; font-size: 0.88rem; margin: 0.45rem 0 1rem; }
.forfait-card .montant span { font-size: 1.05rem; color: var(--gris); font-weight: 600; }
.forfait-card .inclus { color: var(--gris); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.forfait-card .inclus strong { color: var(--texte); }
.forfaits--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }

/* Parcours / packs de formation (vente en ligne) */
.packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.pack-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--gris-bord); border-radius: 18px; padding: 1.9rem; box-shadow: 0 12px 30px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pack-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,0,0,0.12); }
.pack-entete { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.9rem; }
.pack-ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 13px; background: linear-gradient(150deg, var(--orange), var(--orange-fonce)); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 22px rgba(237,139,43,0.32); }
.pack-ic svg { width: 26px; height: 26px; }
.pack-card h3 { font-size: 1.18rem; margin: 0; line-height: 1.25; }
.pack-intro { color: var(--gris); font-size: 0.95rem; line-height: 1.6; margin: 0 0 1.1rem; }
.pack-prog { list-style: none; margin: 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.pack-prog li { font-size: 0.92rem; line-height: 1.45; color: var(--texte); padding-left: 0.9rem; border-left: 2px solid rgba(237,139,43,0.4); }
.pack-prog .sem { display: block; font-weight: 700; color: var(--orange-fonce); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.pack-pied { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--gris-bord); }
.pack-prix { display: flex; flex-direction: column; }
.pack-prix .montant { font-size: 1.5rem; font-weight: 800; color: var(--texte); line-height: 1; }
.pack-duree { font-size: 0.82rem; color: var(--gris); font-weight: 600; margin-top: 0.25rem; }
.pack-pied .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.packs-note { text-align: center; max-width: 680px; margin: clamp(1.6rem, 3vw, 2.2rem) auto 0; color: var(--gris); font-size: 0.9rem; line-height: 1.6; }
.packs-note strong { color: var(--texte); }
@media (max-width: 760px) { .packs { grid-template-columns: 1fr; } }
.forfaits-pied { max-width: 640px; margin: clamp(2rem, 4vw, 2.8rem) auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.forfaits-pied p { color: var(--gris); margin: 0; }
.forfaits-pied .boutons { justify-content: center; }

@media (max-width: 860px) {
  .etapes { grid-template-columns: 1fr 1fr; }
  .tarif-bloc { grid-template-columns: 1fr; }
  .tarif-prix { border-right: 0; border-bottom: 1px solid var(--gris-bord); padding: 0 0 1.4rem; }
  .forfaits, .forfaits--2 { grid-template-columns: 1fr; }
  .prestations-split { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .etapes { grid-template-columns: 1fr; }
}


/* ==================================================================
   13. PAGE 404
   ================================================================== */
.erreur { text-align: center; padding-block: clamp(6rem, 13vw, 9.5rem); }
.erreur .code { display: block; font-family: "Edo", "Permanent Marker", cursive; font-weight: 400; color: var(--orange); font-size: clamp(5rem, 20vw, 12rem); line-height: 0.9; }
.erreur h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.4rem 0 0.8rem; }
.erreur p { color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 1.6rem; font-size: 1.05rem; line-height: 1.6; }
.erreur .boutons { justify-content: center; }


/* ==================================================================
   14. FLUX D'ACTUALITÉ EN DIRECT (page Actualité)
   ================================================================== */
.flux-section { margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,0.1); padding-top: clamp(2rem, 4vw, 2.8rem); }
.flux-titre-section { color: #fff; text-align: center; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 0.4rem; }
.flux-sous { text-align: center; color: rgba(255,255,255,0.6); margin: 0 0 1.6rem; font-size: 0.95rem; }
.flux-liste { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; max-width: 900px; margin: 0 auto; }
.flux-item { display: flex; flex-direction: column; gap: 0.35rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1rem 1.1rem; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.flux-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(237,139,43,0.5); transform: translateY(-2px); }
.flux-item .flux-titre { color: #fff; font-weight: 700; font-size: 0.98rem; line-height: 1.35; }
.flux-item .flux-meta { color: var(--orange); font-size: 0.8rem; font-weight: 600; }
.flux-attente { grid-column: 1 / -1; text-align: center; color: rgba(255,255,255,0.5); }
@media (max-width: 600px) { .flux-liste { grid-template-columns: 1fr; } }


/* ==================================================================
   15. BANNIÈRE COOKIES
   ================================================================== */
.cookie-banner { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 1000; width: min(740px, calc(100% - 32px)); background: var(--noir-2); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,0.45); padding: 1.1rem 1.3rem; display: none; }
.cookie-banner.visible { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.5; flex: 1 1 300px; }
.cookie-banner a { color: var(--orange); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.cookie-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
@media (max-width: 520px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
