/* ============================================================
   GMS CONCIERGERIE — style.css
   DA : bleu marine #112C50 · or #C9A646 · blanc #ffffff
   ============================================================ */

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Variables ── */
:root {
  --blue-dark: #112C50;
  --blue-darker: #0D223D;
  --blue-light: #1D3E73;
  --gold: #C9A646;
  --gold-light: #dfc07a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: hidden;
  font-size: 1rem;
}

/* ── Curseur ── */
.fancy-cursor {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(201, 166, 70, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, transform 0.1s ease-out;
}

.fancy-cursor.cursor-hover {
  width: 42px;
  height: 42px;
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .fancy-cursor {
    display: none;
  }
}

/* ── CTA flottant ── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(201, 166, 70, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s, box-shadow 0.25s;
  pointer-events: none;
}

.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(201, 166, 70, 0.5);
}

/* ── HEADER — Option B : transparent → bleu au scroll ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Transparent sur le hero */
  background: transparent;
  /* Ligne or invisible par défaut */
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease, padding 0.35s ease;
}

/* État scrollé : fond bleu + ligne or */
.header.header-scrolled {
  background: rgba(13, 34, 61, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 166, 70, 0.35);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s ease;
}

/* Padding réduit une fois scrollé */
.header.header-scrolled .header-container {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.header-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 110;
  transition: color 0.3s;
}

.header-logo:hover {
  color: var(--gold);
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  transition: color 0.3s;
}

/* Soulignement or au hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Indicateur section active */
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  background: transparent;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 166, 70, 0.6);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── BURGER — 3 lignes animées ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 110;
  width: 36px;
  height: 36px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.burger-line:nth-child(3) {
  width: 16px;
}

/* Animation X quand ouvert */
.menu-toggle.active .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .burger-line:nth-child(3) {
  width: 24px;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MENU MOBILE PLEIN ÉCRAN ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0D223D;
  background: linear-gradient(160deg, #0D223D 0%, #112C50 55%, #1a3a62 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  /* État fermé */
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  transition: opacity 0.45s ease, clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
}

/* Décoration or en fond */
.mobile-menu::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Liens du menu plein écran */
.mobile-menu-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0.65rem 2rem;
  text-align: center;
  transition: color 0.25s, transform 0.25s;
  position: relative;
  z-index: 1;
}

.mobile-menu-link:hover {
  color: var(--gold);
  transform: translateX(6px);
}

/* Séparateur fin entre liens */
.mobile-menu-link+.mobile-menu-link {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Contact en bas du menu mobile */
.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.mobile-menu-phone:hover {
  opacity: 1;
}

.mobile-menu-phone i {
  font-size: 0.85rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(13, 30, 55, 0.72) 0%,
      rgba(13, 30, 55, 0.35) 55%,
      rgba(13, 30, 55, 0.1) 100%),
    linear-gradient(to top,
      rgba(13, 30, 55, 0.55) 0%,
      transparent 30%);
  z-index: 2;
}

/* Layout hero : texte gauche + KPIs droite sur desktop */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 0;
  min-width: 0;
  /* évite le débordement flex */
  color: var(--white);
}

/* KPIs intégrés dans le flux — plus d'absolute */
.hero-kpis {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-end;
  /* Fond flouté discret — lisibilité garantie quelle que soit la photo */
}

.hero-kpi {
  text-align: right;
}

/* Mobile : tout en colonne */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 7rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }

  .hero-kpis {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    gap: 0.5rem;
    background: rgba(13, 30, 55, 0.48);
    padding: 1.25rem 0.75rem;
    border-radius: 0.75rem;
  }

  .hero-kpi {
    text-align: center;
    flex: 1 1 0;
    /* partage égal de l'espace, pas de débordement */
    min-width: 0;
    /* autorise le retour à la ligne si nécessaire */
  }

  .kpi-value {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
  }

  .kpi-label {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    word-break: break-word;
    /* "NOTE MOYENNE" peut passer sur 2 lignes sans couper */
  }

  .kpi-context {
    font-size: 0.58rem;
  }
}

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero-eyebrow strong {
  font-weight: 700;
  color: var(--gold);
  opacity: 1;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* Hero title */
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.18;
  margin-bottom: 0.6rem;
}

.text-gold {
  color: var(--gold);
}

/* H2 sous-titre SEO */
.hero-subtitle {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
  font-style: italic;
}

.hero-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* KPI chiffre */
.kpi-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* KPI label — plus visible */
.kpi-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.3rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* KPI contexte — lisible mais discret */
.kpi-context {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(252, 252, 252, 0.96);
  letter-spacing: 0.03em;
  margin-top: 0.12rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(6px);
  }
}

/* Boutons */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 166, 70, 0.45);
  transform: translateY(-1px);
}

.btn-gold-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-link {
  color: var(--blue-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}

.btn-link:hover {
  color: var(--gold);
}

/* Curseur agrandi sur CTA */
.cta-hover {
  cursor: pointer;
}

/* Fade-in hero initial */
.fade-in-up {
  animation: fadeInUp 0.9s ease-out forwards;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTIONS & CONTAINERS ── */
.section {
  position: relative;
  padding: 5.5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-600);
  font-size: 0.97rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* Section title large */
.section-title-large {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title-large em {
  font-style: italic;
  color: var(--gold);
}

/* Section intro */
.section-intro {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-600);
  font-size: 0.97rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Backgrounds */
.bg-gradient {
  background: linear-gradient(to bottom right, var(--white), var(--gray-50));
}

.bg-white {
  background-color: var(--white);
}

.bg-dark {
  background: linear-gradient(135deg, #112C50, #1D3E73, #0D223D);
  color: var(--white);
}

.bg-dark-alt {
  background: linear-gradient(135deg, #0D223D 0%, #112C50 60%, #1a3a62 100%);
  color: var(--white);
}

.bg-dark-alt .section-title {
  color: var(--white);
}

.bg-dark-alt .section-title-large {
  color: var(--white);
}

.bg-dark-alt .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.bg-dark-alt .section-label {
  color: var(--gold);
}

.decorative-wave {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.decorative-wave svg {
  color: var(--gold);
}

/* Section separator gold */
.section-sep {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

/* ── ANIMATIONS ── */
/* Fade simple */
.animate-on-scroll.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

/* Stagger (grilles) */
.animate-on-scroll.anim-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

/* Zoom léger (images) */
.animate-on-scroll.anim-zoom {
  opacity: 0;
  transform: scale(0.97) translateY(16px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── SECTION ② PROBLÈME — 2 grandes cartes aérées ── */

.problem-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

/* Duo de cartes côte à côte */
.problem-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .problem-duo {
    grid-template-columns: 1fr;
  }

  .pain-divider {
    display: none;
  }
}

/* Séparateur vertical or */
.pain-divider {
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(201, 166, 70, 0.3) 20%,
      rgba(201, 166, 70, 0.3) 80%,
      transparent);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Grande carte épurée */
.pain-card-large {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Icône sobre — juste la couleur, pas de fond */
.pain-card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1;
}

.pain-card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  line-height: 1.25;
}

.pain-card-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Liste des sous-points — discrets, sans puces standard */
.pain-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pain-card-list li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pain-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Phrase pivot */
.problem-pivot {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

/* ── Citation éditoriale — composant réutilisable ── */
.editorial-quote {
  position: relative;
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
  margin: 0 auto;
  max-width: 680px;
  border: none;
}

/* Grand guillemet décoratif */
.editorial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

/* Texte principal — blanc sur fond sombre par défaut */
.editorial-quote-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

/* Mots mis en valeur : or */
.editorial-quote-text em {
  font-style: normal;
  color: var(--gold-light);
}

/* Signature discrète */
.editorial-quote-cite {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  position: relative;
  z-index: 1;
}

/* Variante fond clair : texte bleu foncé */
.editorial-quote-light .editorial-quote-text {
  color: var(--blue-dark);
}

.editorial-quote-light .editorial-quote-text em {
  color: var(--gold);
}

.editorial-quote-light .editorial-quote-cite {
  color: var(--gray-500);
}

.editorial-quote-light::before {
  color: var(--gold);
  opacity: 0.15;
}

/* ── SECTION ③ SERVICES ── */
/* Carte héros Revenue Management */
.service-card-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border: 1px solid rgba(201, 166, 70, 0.3);
  border-radius: 1rem;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 36px rgba(17, 44, 80, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(17, 44, 80, 0.25);
}

.service-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
}

.service-hero-content {
  flex: 1 1 300px;
}

.service-hero-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-title-lg {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  color: var(--white);
}

.service-icon-lg {
  background: rgba(201, 166, 70, 0.15);
  color: var(--gold);
}

.service-list-hero {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list-hero li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.service-list-hero .fa-check {
  color: var(--gold);
}

.service-hero-stat {
  text-align: center;
  flex-shrink: 0;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201, 166, 70, 0.25);
  border-radius: 0.75rem;
  background: rgba(201, 166, 70, 0.08);
}

.service-hero-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.service-hero-sublabel {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: rgba(13, 13, 13, 0.55);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Grille 5 services */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

/* Mobile : 2 colonnes dès 580px */
@media (min-width: 580px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop : grille 6 colonnes
   - 2 premières cartes : span 3 chacune → 50% de largeur
   - 3 dernières cartes  : span 2 chacune → 33% de largeur
   Résultat : 2 rangées pleines, zéro trou */
@media (min-width: 1024px) {
  .services-grid-5 {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-grid-5 .service-card:nth-child(-n+2) {
    grid-column: span 3;
  }

  .services-grid-5 .service-card:nth-child(n+3) {
    grid-column: span 2;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(17, 44, 80, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(17, 44, 80, 0.12);
  border-color: rgba(201, 166, 70, 0.3);
}

.service-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--gold);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon {
  background: rgba(17, 44, 80, 0.08);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--blue-dark);
  line-height: 1.3;
}

.service-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 44, 80, 0.07);
}

.service-list {
  list-style: none;
  margin-bottom: 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.45rem;
}

.service-list .fa-check {
  color: var(--gold);
  font-size: 0.7rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--gold);
}

/* CTA sortie de section */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}

.section-cta-or {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── SECTION ④ POURQUOI NOUS ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 5rem;
}

@media (min-width: 900px) {
  .why-layout {
    grid-template-columns: 5fr 6fr;
  }
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0.875rem;
  box-shadow: 0 14px 40px rgba(17, 44, 80, 0.22);
  display: block;
  transition: transform 0.5s ease-out;
}

.why-image:hover img {
  transform: scale(1.02);
}

.why-image::after {
  content: '';
  position: absolute;
  bottom: -1.1rem;
  right: -1.1rem;
  width: 55%;
  height: 55%;
  border: 2px solid rgba(201, 166, 70, 0.25);
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}

.about-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-700);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon-wrap {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(201, 166, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.feature-item:hover .feature-icon-wrap {
  background: rgba(201, 166, 70, 0.2);
}

.feature-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.feature-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Témoignages */
.testimonials {
  margin-top: 1rem;
}

.testimonials-label {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.testimonials-label::before,
.testimonials-label::after {
  content: ' — ';
  color: rgba(201, 166, 70, 0.4);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.875rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(17, 44, 80, 0.1);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--blue-dark);
}

.testimonial-author span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── SECTION ⑤ PROCESS ── */
.process-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
}

@media (min-width: 768px) {
  .process-step {
    text-align: left;
  }
}

.process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .process-header {
    justify-content: flex-start;
  }
}

.process-number {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

.process-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
}

.process-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 20rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-text {
    margin: 0;
  }
}

.process-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.process-cta-note {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ── SECTION ⑥ TARIFS ── */

.pricing-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(17, 44, 80, 0.12);
}

/* Carte 20% : en premier sur mobile, au centre sur desktop */
.pricing-card-center {
  order: -1;
  /* Mobile : passe en tête */
}

@media (min-width: 768px) {
  .pricing-card-center {
    order: 0;
    /* Desktop : reprend sa position naturelle au centre */
    transform: translateY(-12px);
    /* Légèrement surélevée */
    box-shadow: 0 20px 48px rgba(17, 44, 80, 0.16);
  }

  .pricing-card-center:hover {
    transform: translateY(-18px);
  }
}

.pricing-card-featured {
  border: 2px solid var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.pricing-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.pricing-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.pricing-emphasis {
  font-style: italic;
  color: rgba(17, 44, 80, 0.75);
}

.pricing-note {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: auto;
  font-style: italic;
}

/* Liste "ce qui est inclus" — alignée à gauche */
.pricing-includes-list {
  list-style: none;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pricing-includes-list li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pricing-includes-list .fa-check {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.pricing-checklist li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-checklist .fa-check {
  color: var(--gold);
  font-size: 0.72rem;
}

.pricing-disclaimer {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

/* ── SECTION ⑦ FAQ ── */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem;
  transition: background 0.25s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: rgba(17, 44, 80, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  list-style: none;
  gap: 0.75rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-item[open] .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  margin-top: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* CTA sortie FAQ */
.faq-cta {
  text-align: center;
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.faq-cta-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.faq-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--blue-dark);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  max-width: 100%;
  white-space: normal;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.faq-cta-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 166, 70, 0.05);
}

.faq-cta-phone i {
  color: var(--gold);
}

/* ── SECTION ⑧ CONTACT ── */
.contact-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--gold);
}

.contact-subtitle {
  margin-top: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.contact-location {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

/* Switch formulaires */
.form-switch {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
}

.form-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.form-switch-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.form-switch-btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 166, 70, 0.35);
}

.form-switch-btn--active:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}

.contact-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.form-optional {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.form-input {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--blue-dark);
  color: var(--white);
}

/* Preuve sociale avant le bouton */
.form-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem;
  border: 1px solid rgba(201, 166, 70, 0.2);
  border-radius: 0.75rem;
  background: rgba(201, 166, 70, 0.06);
  margin-top: 0.5rem;
}

.form-proof-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.form-proof-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

#submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-message {
  text-align: center;
  margin-top: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-message.success {
  color: var(--gold);
}

.form-message.error {
  color: #f87171;
}

.form-privacy {
  margin-top: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.contact-direct {
  margin-top: 3rem;
}

.contact-direct-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.contact-method i {
  color: var(--gold);
  font-size: 1.15rem;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  background-color: var(--blue-darker);
  color: var(--white);
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grille 4 colonnes */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col {}

.footer-col--brand {}

/* Logo & description */
.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.025em;
  margin-bottom: 0.875rem;
  display: block;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 166, 70, 0.1);
  border: 1px solid rgba(201, 166, 70, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
}

/* Titres colonnes */
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Nav liens */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link i {
  font-size: 0.65rem;
  color: rgba(201, 166, 70, 0.5);
  flex-shrink: 0;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-link:hover i {
  color: var(--gold);
}

/* Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

a.footer-contact-item:hover {
  color: var(--gold);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  padding: 0.7rem 1.25rem;
}

/* Barre du bas */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--gold);
}

.footer-dot {
  color: rgba(201, 166, 70, 0.4);
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 120px;
  background: rgba(201, 166, 70, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ── KPIs section (hors hero, section "why" original) ── */
.kpis-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .kpis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kpi-label-plain {
  margin-top: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── Utilities ── */
.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PAGES SECONDAIRES — Blog, FAQ Hub, FAQ Articles
   ═══════════════════════════════════════════════════════════ */

/* ── Breadcrumb (partagé) ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb--center {
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.18);
}

.breadcrumb-current {
  color: var(--gold);
}

/* ── Bouton outline or (partagé) ── */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 166, 70, 0.4);
  color: var(--gold);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.btn-outline-gold:hover {
  background: rgba(201, 166, 70, 0.1);
  border-color: var(--gold);
}

/* ── Section label variante claire ── */
.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label-light::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}


/* ══════════════════════════════════
   ARTICLES DE BLOG
   ══════════════════════════════════ */

.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #dfc07a);
  z-index: 9999;
  transition: width 0.1s linear;
}

.article-hero {
  background: linear-gradient(135deg, #0D223D 0%, #112C50 60%, #1D3E73 100%);
  padding: 7rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 40%, rgba(201, 166, 70, 0.07), transparent);
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 0;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 166, 70, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.article-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.article-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  padding-bottom: 2rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.article-hero-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .article-hero-img {
    height: 220px;
  }
}

.article-body {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-prose h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--blue-dark);
  line-height: 1.3;
  margin: 2.75rem 0 1rem;
  font-weight: normal;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose h3 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin: 1.75rem 0 0.75rem;
  font-weight: 700;
}

.article-prose p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.article-prose strong {
  color: var(--blue-dark);
  font-weight: 600;
}

.article-prose a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.article-prose a:hover {
  text-decoration: underline;
}

.article-intro-box {
  background: linear-gradient(135deg, #0D223D, #112C50);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.article-intro-box-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article-intro-box p {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}

.article-intro-box p em {
  font-style: normal;
  color: var(--gold-light);
}

/* Cartes quartiers */
.quartier-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  margin: 1.5rem 0 2rem;
  transition: box-shadow 0.2s;
}

.quartier-card:hover {
  box-shadow: 0 8px 28px rgba(17, 44, 80, 0.08);
}

.quartier-card-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #0D223D, #112C50);
  flex-wrap: wrap;
}

.quartier-card-name {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: normal;
}

.quartier-card-stars {
  display: flex;
  gap: 0.25rem;
}

.quartier-star {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.quartier-star.filled {
  background: var(--gold);
}

.quartier-card-body {
  padding: 1.5rem;
}

.quartier-card-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
  .quartier-card-kpis {
    grid-template-columns: 1fr;
  }

  .quartier-kpi {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-100);
  }

  .quartier-kpi:last-child {
    border-bottom: none;
  }
}

.quartier-kpi {
  text-align: center;
  padding: 0.875rem 0.5rem;
  border-right: 1px solid var(--gray-100);
}

.quartier-kpi:last-child {
  border-right: none;
}

.quartier-kpi-value {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.quartier-kpi-label {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.quartier-card-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.quartier-card-profiles {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quartier-profile-tag {
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(17, 44, 80, 0.05);
  color: var(--blue-dark);
  border: 1px solid rgba(17, 44, 80, 0.1);
}

.article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.article-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.article-list li strong {
  color: var(--blue-dark);
}

/* Tableaux — scrollables sur mobile */
.article-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0 2rem;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.85rem;
}

.article-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.article-table th:first-child {
  border-radius: 0.5rem 0 0 0;
}

.article-table th:last-child {
  border-radius: 0 0.5rem 0 0;
}

.article-table td {
  padding: 0.75rem 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table tr:nth-child(even) td {
  background: #f9fafb;
}

.article-table td.gold {
  color: var(--gold);
  font-weight: 700;
}

.article-table td.strong {
  color: var(--blue-dark);
  font-weight: 700;
}

/* Stats Armada */
.article-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 480px) {
  .article-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(201, 166, 70, 0.2);
  background: linear-gradient(135deg, rgba(201, 166, 70, 0.04), rgba(17, 44, 80, 0.02));
}

.article-stat-value {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.article-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Timeline Armada */
.article-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 2rem;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4b565);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.timeline-track {
  width: 2px;
  background: var(--gray-100);
  flex: 1;
  margin-top: 0.35rem;
}

.timeline-item:last-child .timeline-track {
  display: none;
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.timeline-text {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Alerte Armada */
.article-alert {
  background: rgba(201, 166, 70, 0.06);
  border: 1px solid rgba(201, 166, 70, 0.3);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.article-alert i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.article-alert-title {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.article-alert-text {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Checklist Armada */
.article-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-600);
}

.check-item i {
  color: var(--gold);
  flex-shrink: 0;
}

/* Sidebar article */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-toc {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.article-toc-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.article-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.article-toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
  line-height: 1.4;
}

.article-toc li:last-child a {
  border-bottom: none;
}

.article-toc a:hover {
  color: var(--gold);
}

.article-toc a i {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.article-sidebar-card {
  background: linear-gradient(135deg, #0D223D, #112C50);
  border-radius: 1rem;
  padding: 1.75rem;
}

.article-sidebar-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.875rem;
  font-weight: normal;
}

.article-sidebar-title em {
  font-style: italic;
  color: var(--gold);
}

.article-sidebar-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.article-sidebar-card .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.article-related {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.article-related-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.article-related ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.article-related a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.article-related li:last-child a {
  border-bottom: none;
}

.article-related a:hover {
  color: var(--gold);
}

.article-related a i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.article-cta {
  background: linear-gradient(135deg, #0D223D, #112C50);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 166, 70, 0.07), transparent);
  pointer-events: none;
}

.article-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.article-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.article-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.article-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.article-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════
   HUB FAQ
   ══════════════════════════════════ */

.faq-hub-hero {
  background: linear-gradient(135deg, #0D223D 0%, #112C50 60%, #1D3E73 100%);
  padding: 7rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(201, 166, 70, 0.08), transparent), radial-gradient(ellipse 45% 50% at 85% 30%, rgba(29, 62, 115, 0.4), transparent);
  pointer-events: none;
}

.faq-hub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.faq-hub-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.faq-hub-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.faq-hub-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.faq-hub-hero-sub {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.faq-search {
  max-width: 520px;
  margin: 2rem auto 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 166, 70, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
}

.faq-search i {
  color: rgba(201, 166, 70, 0.5);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-search span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.3);
}

.faq-hub-body {
  background: var(--white);
  padding: 4.5rem 1.5rem;
  overflow-x: hidden;
}

.faq-hub-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-filters {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.faq-filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.faq-category {
  margin-bottom: 3.5rem;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}

.faq-category-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #112C50, #1D3E73);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}

.faq-category-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  color: var(--blue-dark);
  font-weight: normal;
}

.faq-category-count {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 166, 70, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid var(--gray-100);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.faq-card:hover {
  border-color: rgba(201, 166, 70, 0.3);
  box-shadow: 0 6px 20px rgba(17, 44, 80, 0.07);
  transform: translateY(-1px);
}

.faq-card--featured {
  background: linear-gradient(135deg, rgba(17, 44, 80, 0.03), rgba(201, 166, 70, 0.03));
  border-color: rgba(201, 166, 70, 0.2);
}

.faq-card-badge {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4b565);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
}

.faq-card-content {
  flex: 1;
  min-width: 0;
}

.faq-card-question {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
  line-height: 1.35;
  font-weight: 700;
}

.faq-card-excerpt {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faq-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.625rem;
}

.faq-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 166, 70, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.faq-card-read {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.faq-card-arrow {
  flex-shrink: 0;
  color: rgba(201, 166, 70, 0.4);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  transition: transform 0.2s, color 0.2s;
}

.faq-card:hover .faq-card-arrow {
  transform: translateX(3px);
  color: var(--gold);
}

.faq-quick {
  margin-top: 3.5rem;
}

.faq-quick-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-quick-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.faq-quick-list {
  display: flex;
  flex-direction: column;
}

.faq-quick-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 560px) {
  .faq-quick-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.faq-quick-item:last-child {
  border-bottom: none;
}

.faq-quick-question {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.faq-quick-answer {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-hub-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .faq-hub-layout {
    grid-template-columns: 1fr;
  }
}

.faq-hub-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar-card {
  background: linear-gradient(135deg, #0D223D, #112C50);
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.faq-sidebar-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: normal;
}

.faq-sidebar-title em {
  font-style: italic;
  color: var(--gold);
}

.faq-sidebar-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.faq-sidebar-card .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.faq-city-card {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-city-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.faq-city-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-city-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.faq-city-links a:last-child {
  border-bottom: none;
}

.faq-city-links a:hover {
  color: var(--gold);
}

.faq-city-links a i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.faq-hub-cta {
  background: linear-gradient(135deg, #0D223D, #112C50);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hub-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 166, 70, 0.07), transparent);
  pointer-events: none;
}

.faq-hub-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.faq-hub-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.faq-hub-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.faq-hub-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.faq-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════
   ARTICLES FAQ
   ══════════════════════════════════ */

.faq-article-hero {
  background: linear-gradient(135deg, #0D223D 0%, #112C50 60%, #1D3E73 100%);
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.faq-article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(201, 166, 70, 0.08), transparent);
  pointer-events: none;
}

.faq-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.faq-article-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-article-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.faq-article-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.faq-article-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.faq-article-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.faq-article-body {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.faq-article-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-article-layout {
    grid-template-columns: 1fr;
  }
}

.faq-prose h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--blue-dark);
  line-height: 1.3;
  margin: 2.5rem 0 1rem;
  font-weight: normal;
}

.faq-prose h2:first-child {
  margin-top: 0;
}

.faq-prose h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin: 1.75rem 0 0.75rem;
  font-weight: 700;
}

.faq-prose p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.faq-prose strong {
  color: var(--blue-dark);
  font-weight: 600;
}

.faq-prose a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.faq-prose a:hover {
  text-decoration: underline;
}

/* Tableau FAQ — scrollable mobile */
.faq-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0 2rem;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.88rem;
}

.faq-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.faq-table th:first-child {
  border-radius: 0.5rem 0 0 0;
}

.faq-table th:last-child {
  border-radius: 0 0.5rem 0 0;
}

.faq-table td {
  padding: 0.75rem 1rem;
  color: var(--gray-600);
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-100);
}

.faq-table tr:last-child td {
  border-bottom: none;
}

.faq-table tr:nth-child(even) td {
  background: #f9fafb;
}

.faq-table td.highlight {
  color: var(--blue-dark);
  font-weight: 700;
}

.faq-table tr.featured td {
  background: rgba(201, 166, 70, 0.06);
}

.faq-table tr.featured td.highlight {
  color: var(--gold);
}

.faq-answer-box {
  background: linear-gradient(135deg, #0D223D, #112C50);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.faq-answer-box-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.faq-answer-box p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}

.faq-answer-box p em {
  font-style: normal;
  color: var(--gold-light);
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.faq-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.faq-list li strong {
  color: var(--blue-dark);
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-related-card {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.faq-related-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.faq-related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-related-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.faq-related-list a:last-child {
  border-bottom: none;
}

.faq-related-list a:hover {
  color: var(--gold);
}

.faq-related-list a i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.faq-article-cta {
  background: linear-gradient(135deg, #0D223D, #112C50);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 166, 70, 0.07), transparent);
  pointer-events: none;
}

.faq-article-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.faq-article-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.faq-article-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.faq-article-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ══════════════════════════════════
   TABLEAUX RESPONSIVE — cartes mobile
   ══════════════════════════════════ */

/* Synthèse article blog : desktop tableau / mobile cartes */
.synth-desktop { display: block; }
.synth-mobile  { display: none;  }
@media (max-width: 640px) {
  .synth-desktop { display: none; }
  .synth-mobile  { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
}
.synth-card { border: 1px solid var(--gray-100); border-radius: 0.875rem; overflow: hidden; }
.synth-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #112C50, #1D3E73);
}
.synth-card-name { font-family: Georgia, serif; font-size: 0.95rem; color: var(--white); font-weight: 700; }
.synth-card-stars { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.synth-card-stars.gold { color: var(--gold); }
.synth-card-row { display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; border-bottom: 1px solid var(--gray-100); }
.synth-card-row:last-child { border-bottom: none; }
.synth-label { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.synth-value { font-size: 0.88rem; color: var(--blue-dark); font-weight: 600; }
.synth-value.gold { color: var(--gold); }
 
/* FAQ article : desktop tableau / mobile cartes */
.faq-table-mobile { display: none; }
@media (max-width: 640px) {
  .faq-table-wrapper { display: none !important; }
  .faq-table-mobile  { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
}
.faq-tcard { border: 1px solid var(--gray-100); border-radius: 0.875rem; overflow: hidden; }
.faq-tcard-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #112C50, #1D3E73);
}
.faq-tcard-header.featured { background: linear-gradient(135deg, var(--gold), #d4b565); }
.faq-tcard-name { font-family: Georgia, serif; font-size: 0.9rem; color: var(--white); font-weight: 700; }
.faq-tcard-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 1rem; border-bottom: 1px solid var(--gray-100); }
.faq-tcard-row:last-child { border-bottom: none; }
.faq-tcard-row:nth-child(even) { background: #f9fafb; }
.faq-tcard-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.faq-tcard-val { font-size: 0.85rem; color: var(--blue-dark); font-weight: 600; }
.faq-tcard-val.gold { color: var(--gold); }

/* ═══ BLOG HUB ═══ */
.blog-hero {
  background: linear-gradient(135deg, #0D223D 0%, #112C50 60%, #1D3E73 100%);
  padding: 7rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(201, 166, 70, 0.08), transparent),
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(29, 62, 115, 0.4), transparent);
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.18);
}

.breadcrumb-current {
  color: var(--gold);
}

.blog-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.blog-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.blog-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.blog-hero-sub {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* Filtres */
.blog-body {
  background: var(--white);
  padding: 4.5rem 1.5rem;
}

.blog-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-filters {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.blog-filter {
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-600);
  cursor: default;
  white-space: nowrap;
  transition: all 0.2s;
}

.blog-filter.active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Article featured (hero card) */
.blog-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  margin-bottom: 2rem;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.2s;
}

.blog-card-featured:hover {
  box-shadow: 0 12px 40px rgba(17, 44, 80, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
}

.blog-card-featured-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.blog-card-featured-body {
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 166, 70, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.875rem;
  width: fit-content;
}

.blog-card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--blue-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-card-meta-item {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.blog-card-featured:hover .blog-card-readmore {
  gap: 0.65rem;
}

/* Grille articles normaux */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(201, 166, 70, 0.3);
  box-shadow: 0 8px 28px rgba(17, 44, 80, 0.08);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body .blog-card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.blog-card-body .blog-card-excerpt {
  font-size: 0.82rem;
  flex: 1;
  margin-bottom: 0.875rem;
}

.blog-card-body .blog-card-readmore {
  margin-top: auto;
}

/* À venir */
.blog-coming {
  background: linear-gradient(135deg, rgba(17, 44, 80, 0.03), rgba(201, 166, 70, 0.03));
  border: 1px dashed rgba(201, 166, 70, 0.25);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.blog-coming-icon {
  color: rgba(201, 166, 70, 0.4);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.blog-coming-title {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}

.blog-coming-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar-card {
  background: linear-gradient(135deg, #0D223D, #112C50);
  border-radius: 1rem;
  padding: 1.75rem;
}

.blog-sidebar-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.875rem;
  font-weight: normal;
}

.blog-sidebar-title em {
  font-style: italic;
  color: var(--gold);
}

.blog-sidebar-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-sidebar-card .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.blog-sidebar-links {
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.blog-sidebar-links-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.blog-sidebar-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.blog-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.blog-sidebar-links li:last-child a {
  border-bottom: none;
}

.blog-sidebar-links a:hover {
  color: var(--gold);
}

.blog-sidebar-links a i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* CTA bas */
.blog-cta {
  background: linear-gradient(135deg, #0D223D, #112C50);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 166, 70, 0.07), transparent);
  pointer-events: none;
}

.blog-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.blog-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.blog-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.blog-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.blog-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 166, 70, 0.4);
  color: var(--gold);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.btn-outline-gold:hover {
  background: rgba(201, 166, 70, 0.1);
  border-color: var(--gold);
}


/* ══════════════════════════════════
   FAQ HUB — CORRECTIONS MOBILE
   ══════════════════════════════════ */

@media (max-width: 600px) {
  .faq-hub-body { padding: 2.5rem 1rem; }
  .faq-hub-hero { padding: 5.5rem 1rem 3rem; }
  .faq-search { display: none; }
  .faq-category-header { flex-wrap: wrap; gap: 0.5rem; }
  .faq-category-count { margin-left: 0; }
  .faq-card { padding: 1rem; gap: 0.75rem; }
  .faq-card-badge { width: 1.5rem; height: 1.5rem; font-size: 0.6rem; flex-shrink: 0; }
  .faq-card-excerpt { display: none; }
  .faq-card-arrow { display: none; }
  .faq-quick-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .faq-quick-item .btn-gold { width: 100%; justify-content: center; text-align: center; }
  .faq-hub-sidebar { gap: 1rem; }
  .faq-sidebar-card { padding: 1.25rem; }
  .faq-hub-cta { padding: 3rem 1rem; }
}

/* Empêcher tout débordement horizontal global */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 860px) {
  .faq-hub-layout {
    display: flex;
    flex-direction: column;
  }
  .faq-hub-sidebar { order: 2; }
}

/* ══ FALLBACK ANIMATION — sécurité si JS lent ou IntersectionObserver raté ══ */
@keyframes fallbackReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-on-scroll {
  animation: fallbackReveal 0.6s ease-out 1.5s forwards;
}
.animate-on-scroll.animated {
  animation: none;
  opacity: 1;
  transform: translateY(0) scale(1);
}