/* ============================================================
   CLIM FROID SERVICES — Feuille de style commune (multi-pages)
   ============================================================ */

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

:root {
  --blue:   #004C97;
  --blue2:  #1763b5;
  --sky:    #e6eff7;
  --sky2:   #c9ddf0;
  --cyan:   #1763b5;
  --red:    #EF4135;
  --white:  #ffffff;
  --bg:     #f0f6ff;
  --text:   #0d2137;
  --muted:  #4a6a84;
  --border: #c5d9ef;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; }
a { color: var(--blue); }

/* ─── NAV ─── (ciblé : barre du haut uniquement, pas le menu du footer) */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 40px;
  background: linear-gradient(100deg, #004C97 0%, #003a75 100%);
  box-shadow: 0 2px 16px rgba(0,30,60,0.25);
}
body > nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--red); }
.nav-logo { display: flex; align-items: center; gap: 11px; height: 72px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; background: #fff; border-radius: 8px; padding: 5px 7px; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.34rem; letter-spacing: 1.5px; color: #ffffff; line-height: 1; }
.logo-text span { color: #ffffff; }
nav ul { list-style: none; display: flex; gap: 24px; align-items: center; margin-left: auto; }
nav ul a { text-decoration: none; color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 600; transition: color 0.2s; }
nav ul a:hover { color: #fff; }
nav ul a.active { color: #fff; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 9px 20px; border-radius: 6px; font-weight: 700 !important; box-shadow: 0 3px 10px rgba(239,65,53,0.35); }
.nav-cta:hover { background: #c8302a !important; }
.nav-linkedin {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.15); color: #fff; transition: background 0.2s, color 0.2s;
}
.nav-linkedin:hover { background: #0077b5; color: #fff !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ─── BASCULE DE LANGUE FR | EN (injectée par main.js) ─── */
.lang-toggle { display: inline-flex; align-items: center; background: #fff; border: 2px solid var(--blue); border-radius: 8px; overflow: hidden; margin-left: 14px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.lang-toggle a, .lang-toggle span { font-size: 0.82rem; font-weight: 800; padding: 7px 13px; text-decoration: none; line-height: 1; color: var(--blue); transition: background 0.2s, color 0.2s; }
.lang-toggle .seg-active { background: var(--blue); color: #fff; cursor: default; }
.lang-toggle a:hover { background: var(--sky); }
/* anciens sélecteurs de langue désactivés */
.lang-switch, .lang-float { display: none !important; }

/* ─── HERO (accueil) ─── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 48px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,71,161,0.82) 35%, rgba(13,71,161,0.45) 100%);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(21,101,192,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(21,101,192,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content { position: relative; max-width: 680px; z-index: 2; }
.hero-tag {
  display: inline-block; border: 1px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 0.73rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1; letter-spacing: 1px; margin-bottom: 22px; color: #fff;
}
h1 em { font-style: normal; color: #90caf9; display: block; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 520px; margin-bottom: 28px; }
.hero-quote {
  font-style: italic; font-size: 0.95rem; color: rgba(255,255,255,0.8);
  border-left: 3px solid var(--red); margin-bottom: 40px;
  background: rgba(239,83,80,0.1); padding: 12px 16px; border-radius: 0 6px 6px 0;
}
.btn-primary {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.45); background: #0d47a1; }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: #fff;
  padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; margin-left: 16px; transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-stats { position: absolute; right: 80px; bottom: 80px; display: flex; gap: 48px; z-index: 2; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #ef9a9a; line-height: 1; text-align: center; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; text-align: center; }

/* ─── PAGE HEADER (pages internes) ─── */
.page-header {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
  color: #fff; padding: 64px 48px 56px; position: relative; overflow: hidden;
}
.page-header .grid-bg { opacity: 0.4; }
.page-header-inner { position: relative; z-index: 2; max-width: 820px; }
.page-header .crumb { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #90caf9; margin-bottom: 12px; }
.page-header .crumb a { color: #90caf9; text-decoration: none; }
.page-header .crumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); display: block; margin-bottom: 14px; color: #fff;
}
.page-header p { color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.7; max-width: 620px; }

/* ─── SECTIONS BASE ─── */
section { padding: 96px 48px; }
.section-tag { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; font-weight: 600; }
.section-tag.red { color: var(--red); }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin-bottom: 14px; color: var(--text); }
.section-intro { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 560px; margin-bottom: 56px; border-left: 3px solid var(--cyan); padding-left: 14px; }
.section-intro.red { border-left-color: var(--red); }
.center-cta { text-align: center; margin-top: 56px; }
.center-cta .btn-primary { box-shadow: 0 4px 16px rgba(21,101,192,0.3); }

/* ─── PÔLES ─── */
.poles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pole-card {
  background: var(--sky); border: 1px solid var(--border); border-radius: 10px;
  padding: 36px 32px; position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.pole-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--blue); transition: height 0.4s; border-radius: 0 0 4px 0; }
.pole-card:hover { box-shadow: 0 8px 28px rgba(21,101,192,0.13); transform: translateY(-3px); background: var(--white); }
.pole-card:hover::before { height: 100%; }
.pole-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; margin-bottom: 16px; background: var(--white); box-shadow: 0 2px 8px rgba(21,101,192,0.12); }
.pole-card h2, .pole-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 1px; margin-bottom: 10px; color: var(--text); }
.pole-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.8; margin-bottom: 18px; }
.pole-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pole-list li { font-size: 0.83rem; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.pole-list li::before { content: '→'; color: var(--blue); font-size: 0.8rem; flex-shrink: 0; }
.pole-cta { margin-top: 22px; font-size: 0.78rem; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.pole-card:nth-child(odd) .pole-cta { color: var(--red); }

/* ─── VALEUR ─── */
.valeur-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.valeur-items { display: flex; flex-direction: column; gap: 26px; }
.valeur-item { display: flex; gap: 18px; align-items: flex-start; }
.valeur-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: rgba(229,57,53,0.2); line-height: 1; flex-shrink: 0; width: 36px; }
.valeur-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--blue); }
.valeur-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.valeur-visual {
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
  border-radius: 12px; padding: 48px; text-align: center;
  box-shadow: 0 8px 32px rgba(21,101,192,0.25);
}
.big-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); line-height: 1.4; color: var(--white); }
.big-quote span { color: #90caf9; }

/* ─── CLIENTS ─── */
.clients-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.client-logo-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 16px 16px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; transition: box-shadow 0.25s, transform 0.25s; min-height: 110px;
}
.client-logo-card:hover { box-shadow: 0 6px 24px rgba(21,101,192,0.12); transform: translateY(-3px); }
.client-img { max-height: 48px; max-width: 120px; width: auto; object-fit: contain; }
.client-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; text-align: center; }
.client-logo-card.more { background: var(--sky); border-style: dashed; }
.client-more-icon { font-size: 2rem; font-weight: 300; color: var(--blue); line-height: 1; }

/* ─── RÉALISATIONS ─── */
.real-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.real-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--blue); border-radius: 8px;
  padding: 26px 22px; transition: box-shadow 0.2s, transform 0.2s;
}
.real-card:nth-child(3n+2) { border-left-color: var(--cyan); }
.real-card:nth-child(3n)   { border-left-color: #42a5f5; }
.real-card:nth-child(odd)  { border-left-color: var(--red); }
.real-card:hover { box-shadow: 0 6px 20px rgba(21,101,192,0.1); transform: translateY(-2px); }
.real-site { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 1px; color: var(--text); margin-bottom: 5px; }
.real-type { font-size: 0.71rem; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.real-card:nth-child(3n+2) .real-type { color: var(--cyan); }
.real-card:nth-child(3n)   .real-type { color: #42a5f5; }
.real-card:nth-child(odd)  .real-type { color: var(--red); }
.real-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ─── GALERIE ─── */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gal-card { cursor: pointer; border-radius: 10px; overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(21,101,192,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(21,101,192,0.16); }
.gal-thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; display: block; }
.gal-card:hover .gal-thumb img { transform: scale(1.07); }
.gal-overlay { position: absolute; inset: 0; background: rgba(13,31,51,0.45); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; transition: opacity 0.25s; }
.gal-card:hover .gal-overlay { opacity: 1; }
.gal-count { color: #fff; font-size: 0.78rem; background: rgba(0,0,0,0.4); padding: 3px 10px; border-radius: 20px; }
.gal-eye { color: #fff; font-size: 1rem; font-weight: 700; }
.gal-name { padding: 10px 12px; font-size: 0.8rem; font-weight: 600; color: var(--text); text-align: center; border-top: 1px solid var(--border); }

/* ─── LIGHTBOX ─── */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(5,15,30,0.93); align-items: center; justify-content: center; padding: 20px; }
.lb-overlay.active { display: flex; }
.lb-box { background: #0d1f33; border-radius: 14px; width: 100%; max-width: 900px; max-height: 92vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 24px 80px rgba(0,0,0,0.6); position: relative; }
.lb-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 34px; height: 34px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 10; transition: background 0.2s; }
.lb-close:hover { background: var(--red); }
.lb-title { color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 1px; padding: 16px 52px 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.lb-main { display: flex; align-items: center; gap: 6px; padding: 10px 6px; flex: 1; min-height: 0; }
.lb-img-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; min-height: 0; }
.lb-img-wrap img { max-height: 400px; max-width: 100%; object-fit: contain; border-radius: 8px; }
.lb-caption { color: rgba(255,255,255,0.5); font-size: 0.76rem; margin-top: 7px; text-align: center; }
.lb-nav { background: rgba(255,255,255,0.08); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; flex-shrink: 0; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.lb-nav:hover { background: var(--blue); }
.lb-strip { display: flex; gap: 5px; overflow-x: auto; padding: 8px 14px; border-top: 1px solid rgba(255,255,255,0.08); scroll-behavior: smooth; }
.lb-strip::-webkit-scrollbar { height: 3px; }
.lb-strip::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.lb-strip-thumb { height: 54px; width: 72px; object-fit: cover; border-radius: 4px; cursor: pointer; flex-shrink: 0; opacity: 0.5; border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s; }
.lb-strip-thumb.active { opacity: 1; border-color: var(--blue); }
.lb-strip-thumb:hover { opacity: 0.85; }
.lb-counter { text-align: center; color: rgba(255,255,255,0.35); font-size: 0.75rem; padding: 5px 0 10px; }

/* ─── CONTACT ─── */
.contact-section { background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%); text-align: center; }
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-section h2 { color: var(--white); margin-bottom: 14px; }
.contact-section > .contact-inner > p { color: rgba(255,255,255,0.78); margin-bottom: 44px; line-height: 1.8; }
.contact-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; padding: 44px; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 1rem; color: rgba(255,255,255,0.9); }
.contact-item a { color: #90caf9; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
hr.divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); width: 100%; }
.contact-section .btn-primary { background: var(--red) !important; box-shadow: 0 4px 16px rgba(229,57,53,0.4) !important; }
.contact-section .btn-primary:hover { background: #c62828 !important; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 10px; background: #0077b5; color: #fff !important;
  text-decoration: none; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 14px rgba(0,119,181,0.4);
}
.linkedin-btn:hover { background: #005f93; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: #0a1929; padding: 28px 48px 92px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 3px solid var(--red); flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; order: 0; }
.footer-linkedin { order: 1; }
.footer-nav { order: 2; }
footer > p { order: 3; }
.footer-logo img { height: 38px; width: auto; background: #fff; border-radius: 7px; padding: 4px 6px; }
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 2px; color: #90caf9; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-nav a:hover { color: #90caf9; }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-linkedin { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-linkedin:hover { color: #0077b5; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-tag   { animation-delay: 0.1s; }
h1          { animation-delay: 0.2s; }
.hero-sub   { animation-delay: 0.3s; }
.hero-quote { animation-delay: 0.4s; }
.hero-btns  { animation-delay: 0.5s; }
.hero-stats { animation: fadeUp 0.8s 0.6s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1120px) and (min-width: 901px) {
  nav { padding: 0 28px; }
  nav ul { gap: 16px; }
  nav ul a { font-size: 0.81rem; }
}
@media (max-width: 900px) {
  body > nav { padding: 0 20px; }
  .nav-toggle { display: block; margin-left: auto; }
  .lang-toggle { margin-left: 12px; }
  nav ul {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #003a75; flex-direction: column; gap: 0; align-items: stretch;
    border-bottom: 3px solid var(--red); box-shadow: 0 8px 24px rgba(0,30,60,0.3);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  nav ul.open { max-height: 78vh; overflow-y: auto; }
  nav ul li { border-top: 1px solid rgba(255,255,255,0.12); }
  nav ul a { display: block; padding: 16px 24px; }
  .nav-cta { border-radius: 0; margin: 0; }
  .nav-linkedin { margin: 12px 24px; }
  section, #hero { padding: 80px 24px; }
  #hero { flex-direction: column; align-items: stretch; justify-content: center; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-sub, .hero-quote { max-width: 100%; }
  .page-header { padding: 48px 24px 40px; }
  .poles-grid, .valeur-grid, .real-grid { grid-template-columns: 1fr; }
  .hero-stats { position: static; margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px 34px; }
  .stat-num { font-size: 2.1rem; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  body { overflow-x: hidden; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 750px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } .clients-logos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 450px) { .gal-grid { grid-template-columns: 1fr; } }

/* ─── SÉLECTEUR DE LANGUE ─── */
.lang-switch a {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid var(--blue); border-radius: 6px;
  padding: 6px 12px; font-size: 0.82rem; font-weight: 700; color: var(--blue);
  background: var(--sky);
}
.lang-switch a::before { content: "🌐"; font-size: 0.9rem; }
.lang-switch a:hover { background: var(--blue); color: #fff; }

/* Bouton langue flottant (injecté par main.js, visible sur mobile) */
.lang-float {
  display: none; align-items: center; gap: 5px; text-decoration: none;
  border: 1.5px solid var(--blue); border-radius: 6px;
  padding: 6px 11px; font-size: 0.82rem; font-weight: 700; color: var(--blue);
  background: var(--sky);
}
.lang-float::before { content: "🌐"; font-size: 0.9rem; }

/* ─── BOUTON WHATSAPP URGENCE (flottant) ─── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff !important; text-decoration: none;
  padding: 12px 20px 12px 16px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float .wa-text { line-height: 1.05; }
.wa-float .wa-text small { display: block; font-size: 0.68rem; font-weight: 500; opacity: 0.9; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50px; box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 600px) {
  .wa-float { right: 14px; bottom: 14px; padding: 12px; }
  .wa-float .wa-text { display: none; }
}

/* ─── FOCUS CLAVIER ─── */
.gal-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ─── PRÉFÉRENCE : MOINS D'ANIMATION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .wa-pulse { display: none; }
}

/* ─── BLOG / ARTICLE ─── */
.article { max-width: 760px; margin: 0 auto; }
.article > p.lead { font-size: 1.12rem; color: var(--text); line-height: 1.7; margin-bottom: 28px; }
.article h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 44px 0 14px; color: var(--text); }
.article h3 { font-size: 1.1rem; color: var(--blue); margin: 28px 0 8px; }
.article p { color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.article ul { margin: 0 0 18px 22px; }
.article li { line-height: 1.8; margin-bottom: 7px; }
.article a { color: var(--blue); }
.article-meta { font-size: 0.8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--red); border-radius: 10px; padding: 24px 16px; text-align: center; }
.stat-box .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--blue); line-height: 1; }
.stat-box .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.callout { background: var(--sky); border-left: 4px solid var(--blue); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 26px 0; }
.callout p { margin: 0; font-size: 0.97rem; }
.sources { font-size: 0.84rem; color: var(--muted); border-top: 1px solid var(--border); margin-top: 44px; padding-top: 20px; }
.sources h2 { font-size: 1.2rem; margin: 0 0 12px; }
.sources li { margin-bottom: 9px; line-height: 1.6; }
.article .center-cta { margin-top: 40px; }
@media (max-width: 600px) { .stat-row { grid-template-columns: 1fr; } }
