/* ============================================================
   pro.lafede.immo — main.css
   Styles partagés : variables, reset, navbar, bandeau cofondateur,
   footer, blog cards section, chatbot, légales.
   ============================================================ */

/* ─── VARIABLES ─── */
:root {
  --cyan: #209C9A;
  --cyan-light: #2BC4C1;
  --cyan-light-2: #2eb8b5;
  --cyan-dark: #178786;
  --cyan-dark-2: #1A7F7D;
  --cyan-deep: #0f5a59;
  --noir: #1A1A1A;
  --noir-light: #2D2D2D;
  --noir-deep: #0A0A0A;
  --blanc: #FFFFFF;
  --ivoire: #F9FAFB;
  --gris-50: #FAFAFA;
  --gris-100: #F5F5F5;
  --gris-200: #EEEEEE;
  --gris-500: #9E9E9E;
  --gris-600: #757575;
  --gris: #6B7280;
}

/* ─── RESET DE BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--blanc);
  color: var(--noir);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Espace réservé pour la navbar (90px) — bandeau OFFRE retiré */
  padding-top: 90px;
}
@media (max-width: 1200px) { body { padding-top: 82px; } }
@media (max-width: 950px)  { body { padding-top: 72px; } }
@media (max-width: 400px)  { body { padding-top: 66px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── ANIMATIONS PARTAGÉES ─── */
@keyframes fedeGradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes fedeAvatarPulse { 0%,100%{box-shadow:0 0 0 0 rgba(32,156,154,0.4)} 50%{box-shadow:0 0 0 6px rgba(32,156,154,0)} }
@keyframes fedeOverlayIn { from{opacity:0} to{opacity:1} }
@keyframes fedePopupIn { from{opacity:0;transform:translateY(8px) scale(0.97)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes fedeDot { 0%,60%,100%{transform:translateY(0);opacity:0.4} 30%{transform:translateY(-5px);opacity:1} }
@keyframes fedePulse { 0%,100%{box-shadow:0 8px 32px rgba(32,156,154,0.45)} 50%{box-shadow:0 8px 32px rgba(32,156,154,0.75),0 0 0 8px rgba(32,156,154,0.10)} }

/* ============================================================
   BANDEAU CO-FONDATEUR
   ============================================================ */
@keyframes fedeBannerGradient { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
@keyframes fedeBannerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fedeBannerShine { 0%{transform:translateX(-100%) skewX(-20deg)} 100%{transform:translateX(250%) skewX(-20deg)} }
@keyframes fedeBannerSparkle { 0%,100%{opacity:0;transform:scale(0.6) rotate(0deg)} 50%{opacity:1;transform:scale(1.15) rotate(180deg)} }
@keyframes fedeBannerPulseDot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0.4} }

#fede-banner {
  /* La navbar passe au-dessus (top:0), le bandeau OFFRE descend juste en dessous */
  position: fixed;
  top: 90px; left: 0; right: 0;
  height: 46px;
  z-index: 99998;
  background: linear-gradient(90deg, #209C9A 0%, #178786 20%, #0a3535 45%, #000 55%, #0a3535 75%, #178786 90%, #209C9A 100%);
  background-size: 200% 100%;
  animation: fedeBannerGradient 8s linear infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(32,156,154,0.25), inset 0 -1px 0 rgba(255,255,255,0.08);
  transition: top 0.4s cubic-bezier(0.16,1,0.3,1);
}
@media (max-width: 1200px) { #fede-banner { top: 82px; } }
@media (max-width: 950px)  { #fede-banner { top: 72px; } }
@media (max-width: 400px)  { #fede-banner { top: 66px; } }
/* Quand on scroll, navbar reste haute (pas de shrink), donc banner reste à top: 90 */
#fede-banner::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: fedeBannerShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
#fede-banner-track {
  display: flex;
  white-space: nowrap;
  animation: fedeBannerScroll 28s linear infinite;
  will-change: transform;
}
.fede-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-family: 'League Spartan', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.fede-banner-item b.fede-banner-hero {
  background: linear-gradient(90deg, #fff 0%, #d4fffe 30%, #4ade80 50%, #d4fffe 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 4px;
  animation: fedeBannerGradient 4s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.4));
  padding: 0 4px;
}
.fede-banner-item b { color: #fff; font-weight: 800; letter-spacing: 2.5px; }
.fede-banner-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80, 0 0 20px rgba(74,222,128,0.5);
  animation: fedeBannerPulseDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.fede-banner-spark {
  display: inline-block;
  font-size: 14px;
  animation: fedeBannerSparkle 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.8));
}
.fede-banner-sep {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 8px rgba(255,255,255,0.3);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #fede-banner { height: 40px; }
  .fede-banner-item { font-size: 10px; letter-spacing: 1.5px; padding: 0 16px; gap: 10px; }
  .fede-banner-item b.fede-banner-hero { font-size: 15px; letter-spacing: 2.5px; }
}
@media (max-width: 400px) {
  #fede-banner { height: 38px; }
  .fede-banner-item { font-size: 9px; letter-spacing: 1.2px; padding: 0 12px; }
  .fede-banner-item b.fede-banner-hero { font-size: 13px; letter-spacing: 2px; }
}

/* ============================================================
   NAVBAR — V5 (premium, tout en haut du site)
   ============================================================ */
#fede-injected-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(15,23,42,0.05);
  padding: 0 48px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
#fede-injected-nav.fede-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 30px rgba(15,23,42,0.06), 0 1px 0 rgba(15,23,42,0.04);
  border-bottom-color: transparent;
}
@media (max-width: 1200px) { #fede-injected-nav { padding: 0 32px; } }
@media (max-width: 950px) { #fede-injected-nav { padding: 0 20px; } }
@media (max-width: 400px) { #fede-injected-nav { padding: 0 16px; } }

.fede-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 32px;
}
@media (max-width: 1200px) { .fede-nav-inner { height: 82px; gap: 24px; } }
@media (max-width: 950px) { .fede-nav-inner { height: 72px; gap: 16px; } }
@media (max-width: 400px) { .fede-nav-inner { height: 66px; } }

.fede-nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.fede-nav-logo:hover { transform: scale(1.02); }
.fede-nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(32,156,154,0.15));
  transition: filter 0.3s ease;
}
.fede-nav-logo:hover img { filter: drop-shadow(0 4px 12px rgba(32,156,154,0.3)); }
@media (max-width: 1200px) { .fede-nav-logo img { height: 68px; } }
@media (max-width: 950px) { .fede-nav-logo img { height: 52px; } }
@media (max-width: 500px) { .fede-nav-logo img { height: 44px; } }

.fede-nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.fede-nav-center > a {
  display: flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #525252;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.fede-nav-center > a:hover { color: var(--cyan-dark); background: rgba(32,156,154,0.1); }
@media (max-width: 1200px) {
  .fede-nav-center > a { padding: 11px 16px; font-size: 0.95rem; }
}
@media (max-width: 960px) { .fede-nav-center { display: none; } }

/* ─── BOUTON APERÇU DE L'OFFRE ─── */
@keyframes fedeApercuGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(32,156,154,0.6), inset 0 0 0 1px rgba(32,156,154,0.3); }
  50% { box-shadow: 0 0 20px rgba(32,156,154,0.5), inset 0 0 0 1px rgba(32,156,154,0.5); }
}
@keyframes fedeApercuArrow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(2px)} }

.fede-nav-apercu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, rgba(32,156,154,0.08), rgba(10,53,53,0.05));
  border: 1.5px solid rgba(32,156,154,0.3);
  border-radius: 12px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0a3535;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  animation: fedeApercuGlow 3s ease-in-out infinite;
}
.fede-nav-apercu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(32,156,154,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.fede-nav-apercu:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background: linear-gradient(135deg, rgba(32,156,154,0.15), rgba(32,156,154,0.05));
  box-shadow: 0 8px 24px rgba(32,156,154,0.3);
}
.fede-nav-apercu:hover::before { transform: translateX(100%); }
.fede-nav-apercu svg.doc {
  width: 16px; height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.fede-nav-apercu svg.arr {
  width: 14px; height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: fedeApercuArrow 1.8s ease-in-out infinite;
}
.fede-nav-apercu span { position: relative; z-index: 1; }
@media (max-width: 1200px) {
  .fede-nav-apercu { padding: 9px 14px; font-size: 0.85rem; gap: 6px; }
  .fede-nav-apercu svg.doc { width: 14px; height: 14px; }
  .fede-nav-apercu svg.arr { width: 12px; height: 12px; }
}

/* ─── DROPDOWN BLOG ─── */
.fede-dropdown-wrap { position: relative; }
.fede-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 20px;
}
.fede-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  background: none;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #525252;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.fede-dropdown-trigger:hover,
.fede-dropdown-wrap:hover .fede-dropdown-trigger {
  color: var(--cyan-dark);
  background: rgba(32,156,154,0.1);
  border-color: rgba(32,156,154,0.1);
}
@media (max-width: 1200px) {
  .fede-dropdown-trigger { padding: 11px 16px; font-size: 0.95rem; }
}
.fede-chev {
  width: 18px; height: 18px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.fede-dropdown-wrap:hover .fede-chev { transform: rotate(180deg); }
.fede-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  width: 640px;
  background: var(--blanc);
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.12), 0 10px 30px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.fede-dropdown-wrap:hover .fede-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.fede-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 9px;
  background: var(--blanc);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.fede-panel-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A3A3A3;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fede-panel-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #E8E8E8, transparent);
}
.fede-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fede-minicard {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid #F5F5F5;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  align-items: flex-start;
}
.fede-minicard:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(32,156,154,0.1), 0 4px 12px rgba(0,0,0,0.04);
}
.fede-minicard-thumb {
  width: 80px; height: 62px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #e8f8f7, #d0f0ef);
}
.fede-minicard-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fede-minicard:hover .fede-minicard-thumb img { transform: scale(1.08); }
.fede-minicard-body { flex: 1; min-width: 0; }
.fede-minicard-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  background: rgba(32,156,154,0.1);
  color: var(--cyan-dark);
}
.fede-minicard-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.25;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fede-minicard:hover .fede-minicard-title { color: var(--cyan-dark); }
.fede-minicard-meta { font-size: 0.68rem; color: #A3A3A3; margin-top: 4px; }

/* ─── FEATURED CARD DROPDOWN ─── */
@keyframes fedeFeatShine { 0%{transform:translateX(-120%) skewX(-25deg)} 100%{transform:translateX(200%) skewX(-25deg)} }
@keyframes fedeFeatBadge {
  0%,100% { transform: scale(1); box-shadow: 0 4px 12px rgba(124,58,237,0.3); }
  50% { transform: scale(1.04); box-shadow: 0 6px 18px rgba(124,58,237,0.5); }
}
.fede-minicard-featured {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid rgba(124,58,237,0.25);
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(32,156,154,0.04));
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  align-items: center;
  grid-column: span 2;
  margin-bottom: 4px;
}
.fede-minicard-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.08), transparent);
  transform: translateX(-120%) skewX(-25deg);
  animation: fedeFeatShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.fede-minicard-featured:hover {
  border-color: #7C3AED;
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(124,58,237,0.18);
}
.fede-minicard-featured-img {
  width: 110px; height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.fede-minicard-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fede-minicard-featured:hover .fede-minicard-featured-img img { transform: scale(1.08); }
.fede-minicard-featured-body { flex: 1; min-width: 0; position: relative; z-index: 2; }
.fede-minicard-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  color: var(--blanc);
  animation: fedeFeatBadge 2.5s ease-in-out infinite;
}
.fede-minicard-featured-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0a3535;
  line-height: 1.22;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fede-minicard-featured:hover .fede-minicard-featured-title { color: #7C3AED; }
.fede-minicard-featured-meta { font-size: 0.68rem; color: #A3A3A3; margin-top: 5px; }

.fede-panel-voir-tout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  background: #F7F7F7;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #525252;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 4px;
  grid-column: span 2;
}
.fede-panel-voir-tout:hover { background: rgba(32,156,154,0.08); color: var(--cyan-dark); }

/* ─── BOUTONS DROITE ─── */
.fede-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.fede-btn-newsletter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: none;
  border: 2px solid rgba(32,156,154,0.25);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #525252;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.fede-btn-newsletter::before { content: '\2709'; font-size: 0.85rem; }
.fede-btn-newsletter:hover { border-color: var(--cyan); color: var(--cyan-dark); }
@media (max-width: 960px) { .fede-btn-newsletter { display: none; } }

.fede-btn-connect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--cyan, #209C9A), var(--cyan-dark, #178786));
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(32,156,154,0.28);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.fede-btn-connect:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(32,156,154,0.4);
  color: #fff;
  background: linear-gradient(135deg, #178786, #0a3535);
}
.fede-btn-connect svg { width: 15px; height: 15px; }
@media (max-width: 600px) { .fede-btn-connect span { display: none; } }

/* ─── HAMBURGER + MOBILE MENU ─── */
.fede-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1.5px solid rgba(32,156,154,0.25);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.fede-hamburger span {
  display: block;
  height: 2px;
  background: #525252;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.fede-hamburger:hover { border-color: var(--cyan); }
.fede-hamburger:hover span { background: var(--cyan); }
@media (max-width: 960px) { .fede-hamburger { display: flex; } }

.fede-mobile-menu {
  display: none;
  position: fixed;
  top: 118px;
  left: 0; right: 0;
  background: var(--blanc);
  border-bottom: 1px solid #F0F0F0;
  padding: 16px 20px 24px;
  z-index: 99998;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
}
@media (max-width: 600px) { .fede-mobile-menu { top: 112px; } }
@media (max-width: 400px) { .fede-mobile-menu { top: 104px; padding: 12px 16px 20px; } }
.fede-mobile-menu.open { display: flex; animation: fedeOverlayIn 0.2s ease; }
.fede-mobile-menu a,
.fede-mobile-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #525252;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  text-align: left;
  box-sizing: border-box;
}
.fede-mobile-menu a:hover,
.fede-mobile-menu button:hover { color: var(--cyan-dark); background: rgba(32,156,154,0.08); }
.fede-mobile-menu .fede-mob-sep { height: 1px; background: #F0F0F0; margin: 8px 0; }
.fede-mobile-menu .fede-mob-nl { color: var(--cyan-dark); }
.fede-mobile-menu .fede-mob-apercu {
  background: linear-gradient(135deg, rgba(32,156,154,0.12), rgba(10,53,53,0.06));
  border: 1.5px solid rgba(32,156,154,0.3);
  color: #0a3535;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
}
.fede-mobile-menu .fede-mob-apercu:hover { border-color: var(--cyan); color: var(--cyan-dark); }

.fede-mob-blog-section { padding: 4px 0 8px; }
.fede-mob-blog-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #525252;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  text-align: left;
  box-sizing: border-box;
  justify-content: space-between;
}
.fede-mob-blog-toggle:hover { color: var(--cyan-dark); background: rgba(32,156,154,0.08); }
.fede-mob-blog-toggle-left { display: flex; align-items: center; gap: 10px; }
.fede-mob-blog-toggle svg.chev {
  width: 16px; height: 16px;
  color: #A3A3A3;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
.fede-mob-blog-section.open .fede-mob-blog-toggle svg.chev { transform: rotate(180deg); }
.fede-mob-blog-section.open .fede-mob-blog-toggle { color: var(--cyan-dark); }
.fede-mob-blog-articles {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px 4px;
}
.fede-mob-blog-section.open .fede-mob-blog-articles { display: flex; }
.fede-mob-minicard {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  align-items: center;
}
.fede-mob-minicard:hover { background: rgba(32,156,154,0.06); }
.fede-mob-minicard-thumb {
  width: 64px; height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #e8f8f7, #d0f0ef);
}
.fede-mob-minicard-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fede-mob-minicard-body { flex: 1; min-width: 0; }
.fede-mob-minicard-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  background: rgba(32,156,154,0.1);
  color: var(--cyan-dark);
}
.fede-mob-minicard-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fede-mob-minicard-meta { font-size: 0.65rem; color: #A3A3A3; margin-top: 2px; }

/* ============================================================
   SECTION BLOG (avant le footer)
   ============================================================ */
@keyframes fedeCardShine { 0%{transform:translateX(-120%) skewX(-25deg)} 100%{transform:translateX(220%) skewX(-25deg)} }
@keyframes fedeCardGlow {
  0%,100% { box-shadow: 0 8px 30px rgba(124,58,237,0.15), 0 0 0 1px rgba(124,58,237,0.1); }
  50% { box-shadow: 0 14px 45px rgba(124,58,237,0.35), 0 0 0 1px rgba(124,58,237,0.35); }
}
@keyframes fedeBadgePulse {
  0%,100% { transform: scale(1); box-shadow: 0 4px 14px rgba(124,58,237,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 6px 22px rgba(124,58,237,0.6); }
}
@keyframes fedeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.lf-blog-section {
  font-family: 'DM Sans', sans-serif;
  background: #0A0A0A;
  padding: clamp(32px, 5vw, 72px) clamp(16px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.lf-blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.lf-blog-section::after {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(32,156,154,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lf-blog-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.lf-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(18px, 3vw, 36px);
  gap: 20px;
}
.lf-blog-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 12px;
}
.lf-blog-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.lf-blog-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--blanc);
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.lf-blog-title span { color: var(--cyan); }
.lf-blog-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid rgba(32,156,154,0.35);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.lf-blog-cta-top:hover { border-color: var(--cyan); color: var(--blanc); background: rgba(32,156,154,0.08); }
.lf-blog-cta-top svg { width: 14px; height: 14px; transition: transform 0.25s; }
.lf-blog-cta-top:hover svg { transform: translateX(3px); }

.lf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.3vw, 16px);
  align-items: stretch;
}
.lf-card-featured { grid-column: span 2; grid-row: span 2; }
.lf-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.lf-card:hover {
  border-color: rgba(32,156,154,0.4);
  background: rgba(32,156,154,0.04);
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(32,156,154,0.2);
}
.lf-card-featured { animation: fedeCardGlow 4s ease-in-out infinite; }
.lf-card-featured .lf-card-img { height: clamp(160px, 18vw, 260px); }
.lf-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: fedeCardShine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.lf-card-img {
  width: 100%;
  height: clamp(100px, 11vw, 150px);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.lf-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.lf-card:hover .lf-card-img img { transform: scale(1.08); }
.lf-card-thumb-dark {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #178786, #0a3535);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.lf-card-thumb-stat {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  color: #4ade80;
  line-height: 1;
  text-shadow: 0 0 30px rgba(74,222,128,0.4);
}
.lf-card-thumb-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.lf-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%);
}

/* Thèmes de carte */
.lf-card-legal {
  background: linear-gradient(145deg, rgba(124,58,237,0.06), rgba(10,53,53,0.4));
  border-color: rgba(124,58,237,0.2);
}
.lf-card-legal:hover {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(145deg, rgba(124,58,237,0.1), rgba(10,53,53,0.5));
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(124,58,237,0.3);
}
.lf-card-legal .lf-card-tag { background: rgba(124,58,237,0.15); color: #c4b5fd; border-color: rgba(124,58,237,0.3); }
.lf-card-legal .lf-card-img::after { background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(124,58,237,0.15) 50%, transparent 100%); }
.lf-card-legal:hover .lf-card-title { color: #c4b5fd; }
.lf-card-legal:hover .lf-card-arrow { border-color: #7C3AED; background: rgba(124,58,237,0.15); color: #c4b5fd; }

.lf-card-economy {
  background: linear-gradient(145deg, rgba(74,222,128,0.06), rgba(10,53,53,0.4));
  border-color: rgba(74,222,128,0.2);
}
.lf-card-economy:hover {
  border-color: rgba(74,222,128,0.5);
  background: linear-gradient(145deg, rgba(74,222,128,0.1), rgba(10,53,53,0.5));
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(74,222,128,0.3);
}
.lf-card-economy .lf-card-tag { background: rgba(74,222,128,0.15); color: #86efac; border-color: rgba(74,222,128,0.3); }
.lf-card-economy .lf-card-img::after { background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(74,222,128,0.12) 50%, transparent 100%); }
.lf-card-economy:hover .lf-card-title { color: #86efac; }
.lf-card-economy:hover .lf-card-arrow { border-color: #4ade80; background: rgba(74,222,128,0.15); color: #86efac; }

.lf-card-mls {
  background: linear-gradient(145deg, rgba(32,156,154,0.08), rgba(10,53,53,0.4));
  border-color: rgba(32,156,154,0.25);
}
.lf-card-mls:hover {
  border-color: rgba(32,156,154,0.55);
  background: linear-gradient(145deg, rgba(32,156,154,0.12), rgba(10,53,53,0.5));
}
.lf-card-mls .lf-card-tag { background: rgba(32,156,154,0.18); color: #7DDBD9; border-color: rgba(32,156,154,0.35); }

.lf-card-admin {
  background: linear-gradient(145deg, rgba(245,158,11,0.06), rgba(10,53,53,0.4));
  border-color: rgba(245,158,11,0.2);
}
.lf-card-admin:hover {
  border-color: rgba(245,158,11,0.5);
  background: linear-gradient(145deg, rgba(245,158,11,0.1), rgba(10,53,53,0.5));
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,158,11,0.3);
}
.lf-card-admin .lf-card-tag { background: rgba(245,158,11,0.15); color: #fcd34d; border-color: rgba(245,158,11,0.3); }
.lf-card-admin .lf-card-img::after { background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(245,158,11,0.12) 50%, transparent 100%); }
.lf-card-admin:hover .lf-card-title { color: #fcd34d; }
.lf-card-admin:hover .lf-card-arrow { border-color: #F59E0B; background: rgba(245,158,11,0.15); color: #fcd34d; }

.lf-card-new-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  color: var(--blanc);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fedeBadgePulse 2.5s ease-in-out infinite;
}
.lf-card-body {
  padding: clamp(10px, 1.4vw, 16px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 7px;
  position: relative;
  z-index: 2;
}
.lf-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(32,156,154,0.12);
  color: #5bcfcd;
  width: fit-content;
  border: 1px solid rgba(32,156,154,0.15);
}
.lf-card-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 19px);
  color: var(--blanc);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.lf-card:hover .lf-card-title { color: #7DDBD9; }
.lf-card-excerpt {
  font-size: clamp(11px, 1vw, 12.5px);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lf-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lf-card-meta { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 500; }
.lf-card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.25s;
  flex-shrink: 0;
}
.lf-card:hover .lf-card-arrow {
  border-color: var(--cyan);
  background: rgba(32,156,154,0.15);
  color: #7DDBD9;
  animation: fedeFloat 1.2s ease-in-out infinite;
}
.lf-card-arrow svg { width: 12px; height: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.lf-blog-footer-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32,156,154,0.3), rgba(255,255,255,0.08), rgba(32,156,154,0.3), transparent);
}
.lf-footer {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(160deg, #209C9A 0%, #0d4a49 60%, #0A0A0A 100%);
  width: 100%;
}
.lf-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}
.lf-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(7px, 1.1vw, 12px) clamp(16px, 4vw, 60px);
  gap: clamp(16px, 3vw, 50px);
}
.lf-logo {
  height: clamp(38px, 6vw, 76px);
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  display: block;
}
.lf-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.lf-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4px, 0.5vw, 8px) clamp(12px, 2vw, 30px);
  justify-content: center;
}
.lf-nav a {
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lf-nav a:hover { color: var(--blanc); }
.lf-legal { display: flex; gap: clamp(8px, 1.5vw, 20px); }
.lf-legal a {
  font-size: clamp(8px, 0.9vw, 11px);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lf-legal a:hover { color: var(--blanc); }
.lf-copy {
  font-size: clamp(9px, 1vw, 12px);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.lf-copy strong { color: var(--blanc); }
.lf-heart { color: #ff6b6b; }
.lf-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--blanc);
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  white-space: nowrap;
}
.lf-contact-link:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.lf-contact-link svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.lf-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================================
   CHATBOT FÉDÉ
   ============================================================ */
#fede-chat-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99990;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #209C9A 0%, #178786 50%, #0a4040 100%);
  background-size: 200% 200%;
  animation: fedeGradientShift 5s ease infinite, fedePulse 3s ease-in-out infinite;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  padding: 0;
  overflow: hidden;
}
#fede-chat-btn:hover { transform: scale(1.1); }
#fede-chat-btn .icon-avatar {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
#fede-chat-btn.open .icon-avatar { display: none; }
#fede-chat-btn svg.icon-close {
  display: none;
  width: 28px; height: 28px;
  color: var(--blanc);
  flex-shrink: 0;
}
#fede-chat-btn.open svg.icon-close { display: block; }

#fede-chat-notif {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid var(--blanc);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#fede-chat-bubble {
  position: fixed;
  bottom: 112px; right: 110px;
  z-index: 99989;
  background: var(--blanc);
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15), 0 0 0 1px rgba(32,156,154,0.12);
  padding: 10px 15px;
  max-width: 220px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#fede-chat-bubble.fede-bubble-hidden { opacity: 0; transform: translateY(6px) scale(0.94); pointer-events: none; }
#fede-chat-bubble.fede-bubble-visible { opacity: 1; transform: translateY(0) scale(1); }
#fede-chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 14px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid var(--blanc);
}
#fede-bubble-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--noir);
  line-height: 1.45;
  white-space: nowrap;
  transition: opacity 0.25s, transform 0.25s;
}
#fede-bubble-text.fade { opacity: 0; transform: translateY(3px); }
#fede-bubble-text.show { opacity: 1; transform: translateY(0); }

#fede-chat-panel {
  position: fixed;
  bottom: 115px; right: 28px;
  z-index: 99988;
  width: 420px;
  max-width: calc(100vw - 32px);
  background: var(--blanc);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  max-height: calc(100vh - 155px);
}
#fede-chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
#fede-chat-head {
  padding: 16px 18px;
  background: linear-gradient(135deg, #041818 0%, #0f5a59 50%, #209C9A 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
#fede-chat-head::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
#fede-chat-head-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.4);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}
#fede-chat-head-info { flex: 1; position: relative; z-index: 1; }
#fede-chat-head-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--blanc);
  letter-spacing: 0.2px;
}
#fede-chat-head-role { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 1px; }
#fede-chat-head-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
#fede-chat-head-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3), 0 0 8px rgba(74,222,128,0.5);
}
#fede-chat-close-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  opacity: 0.7;
  transition: all 0.2s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
#fede-chat-close-btn:hover { opacity: 1; background: rgba(255,255,255,0.22); }
#fede-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  scroll-behavior: smooth;
}
#fede-chat-messages::-webkit-scrollbar { width: 4px; }
#fede-chat-messages::-webkit-scrollbar-thumb { background: #E0E0E0; border-radius: 4px; }
.fede-msg { display: flex; gap: 8px; animation: fedePopupIn 0.3s cubic-bezier(0.16,1,0.3,1); }
.fede-msg.user { flex-direction: row-reverse; }
.fede-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: 2px;
}
.fede-msg.bot .fede-msg-avatar {
  background: rgba(32,156,154,0.1);
  border: 1.5px solid rgba(32,156,154,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.fede-msg.user .fede-msg-avatar {
  background: linear-gradient(135deg, #525252, #1A1A1A);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fede-msg.user .fede-msg-avatar span {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--blanc);
}
.fede-msg-bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--noir);
}
.fede-msg.bot .fede-msg-bubble {
  background: #F7F7F7;
  border-radius: 4px 16px 16px 16px;
  border: 1px solid #EFEFEF;
}
.fede-msg.user .fede-msg-bubble {
  background: linear-gradient(135deg, #209C9A, #178786);
  color: var(--blanc);
  border-radius: 16px 4px 16px 16px;
}
.fede-msg-bubble a { color: var(--cyan-dark); text-decoration: underline; }
.fede-msg.user .fede-msg-bubble a { color: rgba(255,255,255,0.9); }
.fede-msg-time { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; color: #B0B0B0; margin-top: 3px; display: flex; }
.fede-msg.user .fede-msg-time { justify-content: flex-end; }
#fede-cta-banner {
  background: linear-gradient(135deg, rgba(32,156,154,0.08), rgba(32,156,154,0.04));
  border-top: 1px solid rgba(32,156,154,0.15);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
#fede-cta-banner span { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: var(--cyan-dark); font-weight: 500; }
#fede-cta-banner a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blanc);
  background: linear-gradient(135deg, #209C9A, #178786);
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(32,156,154,0.3);
}
#fede-cta-banner a:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(32,156,154,0.45); }
#fede-chat-powered {
  text-align: center;
  padding: 10px 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: #C8C8C8;
}

/* ============================================================
   RESPONSIVE BLOG + FOOTER + CHATBOT
   ============================================================ */
@media (max-width: 1100px) {
  .lf-blog-grid { grid-template-columns: 1fr 1fr; }
  .lf-card-featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 680px) {
  .lf-blog-grid { grid-template-columns: 1fr; }
  .lf-card-featured { grid-column: span 1; grid-row: span 1; }
  .lf-blog-section { padding: 24px 16px; }
  .lf-blog-title { font-size: 22px; }
  .lf-card-img { height: 140px; }
  .lf-card-featured .lf-card-img { height: 190px; }
  .lf-blog-cta-top { align-self: flex-start; }
  .lf-main { flex-direction: column; padding: 12px 16px; gap: 8px; }
  .lf-footer-right { align-items: center; }
  .lf-logo { height: 48px; }
  .lf-nav { gap: 4px 14px; }
  .lf-nav a { font-size: 13px; }
  .lf-legal { gap: 12px; }
  .lf-legal a { font-size: 10px; }
  .lf-copy { font-size: 11px; }
  #fede-chat-btn { bottom: 18px; right: 18px; width: 60px; height: 60px; }
  #fede-chat-panel { right: 12px; width: calc(100vw - 24px); bottom: 95px; border-radius: 18px; }
  #fede-chat-bubble { right: 90px; bottom: 100px; max-width: 185px; }
}

/* ============================================================
   NAVBAR — AMÉLIORATIONS v2
   Active state, user dropdown, logo shrink, focus visible
   ============================================================ */

/* --- Active page state --- */
#fede-injected-nav .fede-nav-center > a[aria-current="page"],
#fede-injected-nav .fede-nav-center > a.active {
  color: #178786;
  background: rgba(32, 156, 154, 0.10);
  font-weight: 700;
}
#fede-injected-nav.fede-inner-page .fede-nav-center > a[aria-current="page"],
#fede-injected-nav.fede-inner-page .fede-nav-center > a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.fede-mobile-menu a[aria-current="page"],
.fede-mobile-menu a.active {
  color: #178786;
  background: rgba(32, 156, 154, 0.10);
  font-weight: 700;
}

/* --- Focus visible (clavier) --- */
#fede-injected-nav a:focus-visible,
#fede-injected-nav button:focus-visible,
.fede-mobile-menu a:focus-visible,
.fede-mobile-menu button:focus-visible {
  outline: 2px solid #209C9A;
  outline-offset: 2px;
  border-radius: 10px;
}

/* --- Logo qui rétrécit au scroll --- */
#fede-injected-nav.fede-scrolled .fede-nav-logo img {
  height: 64px;
  transition: height 0.3s ease;
}
@media (max-width: 1200px) {
  #fede-injected-nav.fede-scrolled .fede-nav-logo img { height: 54px; }
}
@media (max-width: 950px) {
  #fede-injected-nav.fede-scrolled .fede-nav-logo img { height: 42px; }
}

/* --- USER DROPDOWN (Firebase auth) --- */
.fede-user-wrap { position: relative; }
.fede-user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  background: none;
  border: 2px solid #F0F0F0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
.fede-user-trigger:hover {
  border-color: rgba(32, 156, 154, 0.4);
  background: rgba(32, 156, 154, 0.03);
}
.fede-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #209C9A 0%, #178786 50%, #0a3535 100%);
  background-size: 200% 200%;
  animation: fedeGradientShift 6s ease infinite, fedeAvatarPulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.fede-user-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A1A1A;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 700px) { .fede-user-name { display: none; } }
.fede-user-chevron {
  width: 16px;
  height: 16px;
  color: #A3A3A3;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fede-user-wrap.open .fede-user-chevron { transform: rotate(180deg); }
.fede-user-wrap.open .fede-user-trigger {
  border-color: rgba(32, 156, 154, 0.4);
  background: rgba(32, 156, 154, 0.04);
}

.fede-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
}
.fede-user-wrap.open .fede-user-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.fede-user-email-header {
  padding: 12px 14px 10px;
  background: linear-gradient(135deg, rgba(32,156,154,0.06), rgba(10,53,53,0.04));
  border-radius: 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(32, 156, 154, 0.08);
}
.fede-user-email-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #A3A3A3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.fede-user-email-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #1A1A1A;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fede-user-menu a,
.fede-user-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  transition: background 0.2s;
  text-align: left;
}
.fede-user-menu a:hover,
.fede-user-menu button:hover { background: #F7F7F7; }
.fede-user-menu a.fede-admin-link { color: #178786; font-weight: 600; }
.fede-user-menu a.fede-admin-link:hover { background: rgba(32, 156, 154, 0.08); }
.fede-user-menu .fede-logout { color: #EF4444; }
.fede-user-menu .fede-logout:hover { background: rgba(239, 68, 68, 0.06); }
.fede-user-menu svg { width: 16px; height: 16px; flex-shrink: 0; }
.fede-menu-sep { height: 1px; background: #F2F2F2; margin: 6px 2px; }

/* Dark variant pour pages inner */
#fede-injected-nav.fede-inner-page .fede-user-trigger {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
#fede-injected-nav.fede-inner-page .fede-user-trigger:hover,
#fede-injected-nav.fede-inner-page .fede-user-wrap.open .fede-user-trigger {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}
#fede-injected-nav.fede-inner-page .fede-user-name { color: #fff; }
#fede-injected-nav.fede-inner-page .fede-user-chevron { color: rgba(255, 255, 255, 0.7); }

/* --- Body scroll lock quand menu mobile ouvert --- */
body.fede-menu-open { overflow: hidden; }

/* --- Animation entrée user dropdown (déjà visible une fois logged in) --- */
@keyframes fedeUserFadeIn {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.fede-user-wrap { animation: fedeUserFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards; }

/* ============================================================
   NAV-CENTER AUTH LINKS (Connexion / Profil / Administration)
   Toggled by main.js initAuth based on Firebase auth state.
   ============================================================ */
.fede-nav-auth-link {
  position: relative;
  margin-left: 6px;
  padding-left: 22px !important;
}
.fede-nav-auth-link::before {
  content: '';
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.08);
}
#fede-injected-nav.fede-inner-page .fede-nav-auth-link::before {
  background: rgba(255, 255, 255, 0.18);
}
.fede-nav-auth-link.fede-nav-auth-admin {
  color: var(--cyan-dark) !important;
  font-weight: 700 !important;
}
.fede-nav-auth-link.fede-nav-auth-admin::after {
  content: '✦';
  margin-left: 4px;
  color: var(--cyan);
  font-size: 0.8em;
}
#fede-injected-nav.fede-inner-page .fede-nav-auth-link.fede-nav-auth-admin {
  color: #fff !important;
}
#fede-injected-nav.fede-inner-page .fede-nav-auth-link.fede-nav-auth-admin::after {
  color: #fff;
}

/* ============================================================
   NAVBAR COMPACT (bandeau retiré — navbar seule en haut)
   Navbar = 72px (au lieu de 90), pas de banner
   ============================================================ */
body { padding-top: 72px !important; }
@media (max-width: 1200px) { body { padding-top: 64px !important; } }
@media (max-width: 950px)  { body { padding-top: 56px !important; } }
@media (max-width: 600px)  { body { padding-top: 50px !important; } }
@media (max-width: 400px)  { body { padding-top: 46px !important; } }

.fede-nav-inner { height: 72px !important; }
@media (max-width: 1200px) { .fede-nav-inner { height: 64px !important; } }
@media (max-width: 950px)  { .fede-nav-inner { height: 56px !important; } }
@media (max-width: 600px)  { .fede-nav-inner { height: 50px !important; } }
@media (max-width: 400px)  { .fede-nav-inner { height: 46px !important; } }

/* Logo plus petit pour matcher navbar plus basse */
.fede-nav-logo img { height: 56px !important; }
@media (max-width: 1200px) { .fede-nav-logo img { height: 48px !important; } }
@media (max-width: 950px)  { .fede-nav-logo img { height: 40px !important; } }
@media (max-width: 500px)  { .fede-nav-logo img { height: 34px !important; } }

#fede-injected-nav.fede-scrolled .fede-nav-logo img { height: 44px !important; }
@media (max-width: 1200px) { #fede-injected-nav.fede-scrolled .fede-nav-logo img { height: 40px !important; } }
@media (max-width: 950px)  { #fede-injected-nav.fede-scrolled .fede-nav-logo img { height: 34px !important; } }

/* Liens center plus compacts */
.fede-nav-center > a,
.fede-dropdown-trigger { padding: 9px 14px !important; font-size: 0.96rem !important; }
@media (max-width: 1200px) {
  .fede-nav-center > a,
  .fede-dropdown-trigger { padding: 8px 11px !important; font-size: 0.9rem !important; }
}

/* Mobile menu adapté à la nouvelle hauteur (navbar seule) */
.fede-mobile-menu { top: 72px !important; }
@media (max-width: 1200px) { .fede-mobile-menu { top: 64px !important; } }
@media (max-width: 950px)  { .fede-mobile-menu { top: 56px !important; } }
@media (max-width: 600px)  { .fede-mobile-menu { top: 50px !important; } }
@media (max-width: 400px)  { .fede-mobile-menu { top: 46px !important; } }

/* Force [hidden] sur les liens de navigation (sinon display:flex de .fede-nav-center > a gagne) */
.fede-nav-center > a[hidden],
.fede-nav-auth-link[hidden],
.fede-mobile-menu a[hidden] {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   FEDE TRUST STRIP — bandeau de confiance global
   À insérer sous chaque hero des pages produit pour cohérence.
   ════════════════════════════════════════════════════════════════ */
.fede-trust-strip {
  background: linear-gradient(135deg, #FAF8F3 0%, #fff 100%);
  border-top: 1px solid rgba(32,156,154,0.08);
  border-bottom: 1px solid rgba(32,156,154,0.08);
  padding: 18px 24px;
}
.fede-trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.fede-trust-strip .fede-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}
.fede-trust-strip .fede-trust-item svg {
  width: 18px; height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(32,156,154,0.12);
  color: #178786;
  flex-shrink: 0;
}
.fede-trust-strip .fede-trust-item.featured {
  padding: 6px 14px;
  background: linear-gradient(135deg, #209C9A, #178786);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(32,156,154,0.32);
}
.fede-trust-strip .fede-trust-item.featured svg {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
@media (max-width: 700px) {
  .fede-trust-strip { padding: 16px 18px; }
  .fede-trust-strip-inner { gap: 12px 16px; }
  .fede-trust-strip .fede-trust-item { font-size: 0.82rem; }
}

/* ════════════════════════════════════════════════════════════════
   FEDE PRODUCT HERO — pattern unifié pour pages produit
   ════════════════════════════════════════════════════════════════ */
.fede-hero-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #178786;
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════════
   FEDE PAGE EYEBROW — pill colorée par page produit (signature contexte)
   ════════════════════════════════════════════════════════════════ */
.fede-page-eyebrow-bar {
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.05);
  padding: 20px 24px 8px;
  text-align: center;
}
.fede-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg,
    hsl(var(--eb-hue, 178), 70%, 52%) 0%,
    hsl(var(--eb-hue, 178), 65%, 38%) 100%);
  border-radius: 100px;
  box-shadow:
    0 4px 14px hsl(var(--eb-hue, 178), 55%, 45%, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  isolation: isolate;
}
.fede-page-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 50%);
  z-index: -1;
}
.fede-page-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.fede-page-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  animation: ebDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ebDot {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%      { opacity: 0.4; transform: scale(0.65); }
}
@media (prefers-reduced-motion: reduce) {
  .fede-page-eyebrow-dot { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   SIGNATURE — Halo cyan qui suit le curseur (desktop only)
   ════════════════════════════════════════════════════════════════ */
.fede-cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  margin-left: -190px; margin-top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,156,154,0.18) 0%, rgba(32,156,154,0.08) 30%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
  will-change: transform;
}
.fede-cursor-halo.active { opacity: 1; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .fede-cursor-halo { display: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SIGNATURE — Reveal au scroll (fade-up + smooth)
   ════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM POLISH PASS — v23 (2026-05-21)
   ════════════════════════════════════════════════════════════════ */

/* ─── 1. SELECTION COLOR ─── */
::selection      { background: rgba(32,156,154,0.25); color: #178786; text-shadow: none; }
::-moz-selection { background: rgba(32,156,154,0.25); color: #178786; text-shadow: none; }

/* ─── 2. SCROLLBAR CUSTOM (slim cyan, webkit + firefox) ─── */
html { scrollbar-width: thin; scrollbar-color: rgba(32,156,154,0.55) transparent; scroll-behavior: smooth; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(32,156,154,0.5), rgba(23,135,134,0.7));
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(32,156,154,0.85), rgba(23,135,134,0.95));
  background-clip: padding-box;
  border: 2px solid transparent;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ─── 3. FOCUS VISIBLE UNIFORME ─── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid #209C9A;
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset 0.15s ease;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  box-shadow: 0 0 0 4px rgba(32,156,154,0.18);
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 0;
  border-radius: inherit;
}

/* ─── 4. PAGE FADE-IN AU LOAD ─── */
body { opacity: 0; transition: opacity 0.32s ease-out; }
body.fede-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  body { opacity: 1 !important; transition: none !important; }
}

/* ─── 5. IMG FADE-IN AU LOAD (utilitaire .fede-img-fade) ─── */
img.fede-img-fade { opacity: 0; transform: scale(0.985); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1); }
img.fede-img-fade.is-loaded { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  img.fede-img-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM BUTTONS — .fede-btn (utilitaire reusable)
   ════════════════════════════════════════════════════════════════ */
.fede-btn,
.fede-btn-primary,
.fede-btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.25s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
    background 0.2s ease,
    color 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}
.fede-btn-primary {
  background: linear-gradient(135deg, #209C9A 0%, #178786 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(32,156,154,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.fede-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(32,156,154,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
}
.fede-btn-primary:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }

.fede-btn-ghost {
  background: rgba(32,156,154,0.06);
  color: #178786;
  border: 1.5px solid rgba(32,156,154,0.25);
}
.fede-btn-ghost:hover {
  background: rgba(32,156,154,0.12);
  border-color: rgba(32,156,154,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(32,156,154,0.18);
}
.fede-btn-ghost:active { transform: translateY(0) scale(0.97); }

/* Disabled state */
.fede-btn:disabled,
.fede-btn-primary:disabled,
.fede-btn-ghost:disabled,
.fede-btn.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.3);
}

/* Loading state — spinner inline */
.fede-btn.is-loading,
.fede-btn-primary.is-loading,
.fede-btn-ghost.is-loading {
  pointer-events: none;
  color: transparent !important;
}
.fede-btn.is-loading::after,
.fede-btn-primary.is-loading::after,
.fede-btn-ghost.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  color: #fff;
  animation: fedeSpin 0.75s linear infinite;
}
.fede-btn-ghost.is-loading::after {
  border-color: rgba(23,135,134,0.25);
  border-top-color: #178786;
}
@keyframes fedeSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .fede-btn,
  .fede-btn-primary,
  .fede-btn-ghost { transition: none !important; }
  .fede-btn-primary:hover,
  .fede-btn-ghost:hover { transform: none; }
}

/* ─── HOVER LIFT GLOBAL : amélioration des CTAs existants ─── */
.fede-btn-connect,
.fede-btn-newsletter,
#fede-cta-banner a,
.lf-contact-link {
  transition:
    transform 0.25s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.fede-btn-connect:active,
.fede-btn-newsletter:active,
#fede-cta-banner a:active,
.lf-contact-link:active { transform: scale(0.96); transition-duration: 0.1s; }

/* ════════════════════════════════════════════════════════════════
   MAGNETIC BUTTONS — déplacement subtil vers le curseur
   ════════════════════════════════════════════════════════════════ */
[data-magnetic] {
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  [data-magnetic] { transform: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   ANIMATED UNDERLINE — .fede-link-anim
   Underline qui se dessine de gauche à droite au hover
   ════════════════════════════════════════════════════════════════ */
.fede-link-anim {
  position: relative;
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
  padding-bottom: 2px;
}
.fede-link-anim:hover,
.fede-link-anim:focus-visible { background-size: 100% 1.5px; }
@media (prefers-reduced-motion: reduce) {
  .fede-link-anim { transition: none; }
  .fede-link-anim:hover { background-size: 100% 1.5px; }
}

/* ════════════════════════════════════════════════════════════════
   LOGO NAVBAR — pulse au load + hover bounce
   ════════════════════════════════════════════════════════════════ */
@keyframes fedeLogoPulse {
  0%   { transform: scale(0.96); opacity: 0; }
  60%  { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
.fede-nav-logo img { animation: fedeLogoPulse 0.65s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes fedeLogoBounce {
  0%, 100% { transform: scale(1.02) translateY(0); }
  35%      { transform: scale(1.06) translateY(-2px); }
  70%      { transform: scale(1.03) translateY(0); }
}
.fede-nav-logo:hover img { animation: fedeLogoBounce 0.55s cubic-bezier(0.34,1.56,0.64,1); }
@media (prefers-reduced-motion: reduce) {
  .fede-nav-logo img,
  .fede-nav-logo:hover img { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS — .fede-toast / .fede-toast-stack
   ════════════════════════════════════════════════════════════════ */
.fede-toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}
@media (max-width: 600px) {
  .fede-toast-stack { right: 12px; left: 12px; max-width: none; bottom: 12px; }
}
.fede-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--noir);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.06),
    0 0 0 1px rgba(0,0,0,0.02);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.fede-toast.is-visible { transform: translateX(0); opacity: 1; }
.fede-toast.is-leaving { transform: translateX(120%); opacity: 0; }
@media (max-width: 600px) {
  .fede-toast { min-width: 0; max-width: none; transform: translateY(120%); }
  .fede-toast.is-visible { transform: translateY(0); }
  .fede-toast.is-leaving { transform: translateY(120%); }
}
.fede-toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.fede-toast-icon svg { width: 14px; height: 14px; stroke: currentColor; }
.fede-toast-body { flex: 1; min-width: 0; line-height: 1.4; }
.fede-toast-title { font-weight: 700; margin-bottom: 2px; font-size: 0.93rem; }
.fede-toast-msg { color: var(--gris); font-size: 0.86rem; }
.fede-toast-close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-500);
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
  line-height: 1;
}
.fede-toast-close:hover { background: rgba(0,0,0,0.05); color: var(--noir); }

/* Variants */
.fede-toast--success .fede-toast-icon { background: linear-gradient(135deg, #209C9A, #178786); }
.fede-toast--success { border-left: 4px solid #209C9A; }
.fede-toast--error .fede-toast-icon { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.fede-toast--error { border-left: 4px solid #ef4444; }
.fede-toast--warning .fede-toast-icon { background: linear-gradient(135deg, #f59e0b, #b45309); }
.fede-toast--warning { border-left: 4px solid #f59e0b; }
.fede-toast--info .fede-toast-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.fede-toast--info { border-left: 4px solid #3b82f6; }

@media (prefers-reduced-motion: reduce) {
  .fede-toast { transition: opacity 0.2s ease; transform: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SKELETON LOADERS — .fede-skeleton (shimmer cyan)
   ════════════════════════════════════════════════════════════════ */
.fede-skeleton {
  position: relative;
  background: linear-gradient(90deg,
    rgba(32,156,154,0.06) 0%,
    rgba(32,156,154,0.14) 40%,
    rgba(32,156,154,0.22) 50%,
    rgba(32,156,154,0.14) 60%,
    rgba(32,156,154,0.06) 100%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: fedeSkeletonShimmer 1.5s ease-in-out infinite;
  color: transparent !important;
  user-select: none;
  pointer-events: none;
}
.fede-skeleton::after {
  content: '\00a0';
  display: inline-block;
  vertical-align: middle;
}
.fede-skeleton-line { height: 0.95em; margin: 0.4em 0; border-radius: 4px; }
.fede-skeleton-line.lg { height: 1.4em; }
.fede-skeleton-line.sm { height: 0.75em; }
.fede-skeleton-circle { border-radius: 50%; }
.fede-skeleton-rect { border-radius: 12px; }
@keyframes fedeSkeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fede-skeleton { animation: none; background: rgba(32,156,154,0.12); }
}

/* ════════════════════════════════════════════════════════════════
   EMPTY STATES — .fede-empty
   ════════════════════════════════════════════════════════════════ */
.fede-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: rgba(32,156,154,0.03);
  border: 1.5px dashed rgba(32,156,154,0.18);
  border-radius: 18px;
  color: var(--noir);
}
.fede-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32,156,154,0.12), rgba(43,196,193,0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #178786;
}
.fede-empty-icon svg { width: 30px; height: 30px; stroke: currentColor; }
.fede-empty-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--noir);
}
.fede-empty-text { font-size: 0.92rem; color: var(--gris); max-width: 320px; line-height: 1.55; margin: 0 0 16px; }

/* ════════════════════════════════════════════════════════════════
   PREMIUM FOOTER — refonte grid 4 colonnes
   (override des styles .lf-footer existants)
   ════════════════════════════════════════════════════════════════ */
.lf-footer {
  background:
    radial-gradient(900px 600px at 12% 10%, rgba(32,156,154,0.18), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(43,196,193,0.10), transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #0d4a49 60%, #209C9A 130%);
  position: relative;
  isolation: isolate;
}
.lf-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1' fill='white' fill-opacity='0.04'/></svg>");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.lf-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 60px) 32px;
}
@media (max-width: 950px) {
  .lf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; padding-top: 40px; padding-bottom: 24px; }
  .lf-footer-col--brand { grid-column: 1 / -1; }
  .lf-footer-col--newsletter { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .lf-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.lf-footer-col h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.lf-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lf-footer-col li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.2s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.lf-footer-col li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--cyan-light);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lf-footer-col li a:hover { color: #fff; transform: translateX(2px); }
.lf-footer-col li a:hover::before { width: 12px; }

.lf-footer-col--brand .lf-footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.lf-footer-col--brand .lf-footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 0 20px;
}
.lf-footer-socials { display: flex; gap: 10px; }
.lf-footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.2s, border-color 0.2s, color 0.2s;
}
.lf-footer-social:hover {
  transform: translateY(-2px);
  background: rgba(32,156,154,0.25);
  border-color: rgba(32,156,154,0.55);
  color: #fff;
}
.lf-footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Newsletter inline */
.lf-footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 4px 4px 4px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.lf-footer-newsletter-form:focus-within {
  background: rgba(255,255,255,0.10);
  border-color: rgba(32,196,193,0.55);
  box-shadow: 0 0 0 4px rgba(32,156,154,0.15);
}
.lf-footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  min-width: 0;
}
.lf-footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.lf-footer-newsletter-form button {
  background: linear-gradient(135deg, #209C9A, #178786);
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.lf-footer-newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(32,156,154,0.45);
}
.lf-footer-newsletter-form button:active { transform: scale(0.96); }
.lf-footer-newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 10px; line-height: 1.4; }

/* Footer bottom strip */
.lf-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px clamp(20px, 4vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.lf-footer-bottom-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.lf-footer-bottom-legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.lf-footer-bottom-legal a:hover { color: #fff; }
.lf-footer-bottom-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.lf-footer-bottom-copy strong { color: #fff; font-weight: 700; }
.lf-footer-bottom-copy .lf-heart { color: #ff6b6b; }

/* ════════════════════════════════════════════════════════════════
   PRINT STYLESHEET — propre, no animations, no fond images
   ════════════════════════════════════════════════════════════════ */
@media print {
  body { padding-top: 0 !important; background: #fff !important; color: #000 !important; opacity: 1 !important; }
  #fede-injected-nav,
  #fede-banner,
  #fede-chat-btn,
  #fede-chat-bubble,
  #fede-chat-panel,
  #fede-cta-banner,
  .fede-cursor-halo,
  .fede-toast-stack,
  .lf-footer,
  .fede-page-eyebrow-bar { display: none !important; }
  *, *::before, *::after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
    color: #000 !important;
  }
  a { text-decoration: underline; color: #178786 !important; }
  img { max-width: 100%; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  section, article { page-break-inside: avoid; }
}

/* ════════════════════════════════════════════════════════════════
   HARDENING SVG — empêche les SVG des trust-bars de devenir géants
   en cas de FOUC ou de CSS lent à charger
   ════════════════════════════════════════════════════════════════ */
.trust-bar svg,
.trust-item svg,
.fede-trust-strip svg,
.fede-trust-item svg {
  max-width: 22px !important;
  max-height: 22px !important;
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
}
.trust-bar svg[viewBox="0 0 24 24"],
.fede-trust-strip svg[viewBox="0 0 24 24"] {
  width: 18px;
  height: 18px;
}

/* ════════════════════════════════════════════════════════════════
   SVG SAFETY NET — empêche les SVG "sans CSS" de devenir géants
   Cible : tous les SVG inline dans des contextes UI (boutons, liens, items)
   Les SVG spécifiquement stylés en CSS (avec width explicite) gardent leur taille
   ════════════════════════════════════════════════════════════════ */
button > svg,
a > svg,
.btn-main > svg,
.btn-ghost > svg,
.btn-main-cta > svg,
.fede-btn > svg,
.fede-link-anim > svg,
.trust-item > svg,
.fede-trust-item > svg,
li > svg,
.versus-list > li > svg {
  max-width: 28px;
  max-height: 28px;
  flex-shrink: 0;
}

/* Idem pour les SVG dans des spans inline d'icônes */
.fede-trust-strip svg,
.trust-bar svg,
[data-counter] + svg,
[data-magnetic] svg {
  max-width: 28px !important;
  max-height: 28px !important;
}
