/* ============================================================
   FRANCE-USA-NET.COM — Feuille de style moderne & responsive
   Couleurs symbolisant la France et les États-Unis (Bleu/Blanc/Rouge)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ---------- Variables de thème ---------- */
:root {
  --fr-blue: #0055a4;
  --fr-red: #ef4135;
  --us-blue: #0a2463;
  --us-red: #b22234;
  --accent-blue: #1e6fd9;
  --accent-red: #e63946;
  --gold: #f4c14b;

  --bg-900: #0b1020;
  --bg-800: #111831;
  --bg-700: #18203f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-soft: rgba(255, 255, 255, 0.12);

  --text-100: #f7f9ff;
  --text-300: #c6cee0;
  --text-500: #97a0b8;

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --header-h: 158px;
  --maxw: 1240px;

  --font-title: "Cinzel", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-100);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(30, 111, 217, 0.18), transparent 60%),
    radial-gradient(1000px 600px at 100% 0%, rgba(178, 34, 52, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-900), var(--bg-800) 60%, var(--bg-900));
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Ligne tricolore décorative réutilisable */
.tricolore {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--fr-blue) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--fr-red) 66.66% 100%
  );
}

/* ============================================================
   HEADER + NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.82);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 150px;
  width: auto;
  transition: transform 0.4s var(--ease);
}

.brand:hover img {
  transform: scale(1.06) rotate(-1deg);
}

/* Menu principal */
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu > li > .subnavbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-300);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.menu > li > a:hover,
.menu > li > .subnavbtn:hover {
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.06);
}

.menu > li > a:hover::after {
  transform: scaleX(1);
}

.menu .caret {
  font-size: 0.6rem;
  transition: transform 0.3s var(--ease);
}

/* Sous-menus */
.subnav-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--bg-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s;
  overflow: hidden;
}

.subnav-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--fr-blue), #fff, var(--fr-red));
}

.subnav:hover > .subnav-content,
.subnav:focus-within > .subnav-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav:hover .caret {
  transform: rotate(180deg);
}

.subnav-content li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-300);
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    padding-left 0.2s var(--ease);
}

.subnav-content li a:hover {
  background: rgba(30, 111, 217, 0.18);
  color: var(--text-100);
  padding-left: 20px;
}

/* Sélecteur de langue */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.lang-switch a img {
  height: 20px;
  width: auto;
  border-radius: 2px;
}

.lang-switch a:hover {
  transform: translateY(-2px);
  border-color: var(--accent-blue);
  box-shadow: 0 8px 18px rgba(30, 111, 217, 0.3);
}

.lang-switch a.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(244, 193, 75, 0.35);
}

/* Bouton hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-100);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO + CARROUSEL
   ============================================================ */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 22px;
}

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  aspect-ratio: 16 / 7;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s var(--ease), transform 6s linear;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 24, 0.15) 0%,
    rgba(7, 11, 24, 0.35) 45%,
    rgba(7, 11, 24, 0.85) 100%
  );
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 40px 44px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.3s, transform 0.7s var(--ease) 0.3s;
}

.slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-caption .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 193, 75, 0.4);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.slide-caption h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.slide-caption p {
  margin-top: 8px;
  max-width: 560px;
  color: var(--text-300);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}

/* Flèches */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: rgba(11, 16, 32, 0.55);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.car-btn:hover {
  background: rgba(30, 111, 217, 0.75);
  transform: translateY(-50%) scale(1.08);
}

.car-btn.prev {
  left: 38px;
}
.car-btn.next {
  right: 38px;
}

/* Points indicateurs */
.dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 9px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ============================================================
   SECTION INTRO
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 22px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.15;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-300);
  font-size: 1.05rem;
}

/* ---------- Cartes ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--fr-blue), #fff, var(--fr-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 111, 217, 0.5);
  box-shadow: var(--shadow-md);
}

.card:hover::before {
  transform: scaleX(1);
}

.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.25), rgba(230, 57, 70, 0.25));
  border: 1px solid var(--border-soft);
}

.card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-100);
}

.card p {
  color: var(--text-300);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.card ul.links li {
  margin-bottom: 8px;
}

.card ul.links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-300);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.card ul.links a::before {
  content: "›";
  color: var(--accent-red);
  font-weight: 700;
}

.card ul.links a:hover {
  color: var(--text-100);
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent-blue), var(--fr-blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 111, 217, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn.red {
  background: linear-gradient(135deg, var(--accent-red), var(--us-red));
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(30, 111, 217, 0.4);
}

/* ---------- Bandeau statistiques ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 18px;
}

.stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Bandeau CTA ---------- */
.cta-band {
  max-width: var(--maxw);
  margin: 20px auto;
  padding: 0 22px;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 54px 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(10, 36, 99, 0.85), rgba(178, 34, 52, 0.7));
}

.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 50% 0%, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  position: relative;
  z-index: 1;
}

.cta-inner p {
  max-width: 620px;
  margin: 12px auto 24px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.cta-inner .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--us-blue);
}

.cta-inner .btn:hover {
  background: var(--gold);
  color: #1a1300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, var(--bg-800), var(--bg-900));
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 54px 22px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 34px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text-100);
}

.footer-col p,
.footer-col a {
  color: var(--text-300);
  font-size: 0.92rem;
}

.footer-col a {
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--text-100);
  transform: translateX(3px);
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 18px 22px;
  text-align: center;
  color: var(--text-500);
  font-size: 0.85rem;
}

.footer-hlg {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.footer-hlg img {
  height: 40px;
}

/* ============================================================
   ANIMATIONS AU DÉFILEMENT
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bouton retour en haut */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0.3s;
  box-shadow: var(--shadow-md);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablette paysage / petit portable */
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablette */
@media (max-width: 960px) {
  .burger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: var(--header-h);
    right: 0;
    height: calc(100vh - var(--header-h));
    width: min(86vw, 360px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2px;
    padding: 18px;
    background: var(--bg-800);
    border-left: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu > li > a,
  .menu > li > .subnavbtn {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 14px 12px;
  }

  .menu > li > a::after {
    display: none;
  }

  .menu > li {
    border-bottom: 1px solid var(--border-soft);
  }

  /* Sous-menus en accordéon sur mobile */
  .subnav-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    min-width: 0;
    max-height: 0;
    padding: 0 8px;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }

  .subnav.open .subnav-content {
    max-height: 600px;
    padding: 8px;
  }

  .subnav.open .caret {
    transform: rotate(180deg);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .car-btn.prev {
    left: 14px;
  }
  .car-btn.next {
    right: 14px;
  }
}

/* Smartphone */
@media (max-width: 1080px) {
  :root {
    --header-h: 110px;
  }

  .brand img {
    height: 100px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 78px;
  }

  .brand img {
    height: 68px;
  }

  .footer-brand img {
    height: 72px;
  }

  .carousel {
    aspect-ratio: 4 / 5;
  }

  .slide-caption {
    padding: 22px 20px;
  }

  .car-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-hlg {
    justify-content: center;
  }

  .section {
    padding: 48px 18px;
  }

  .cta-inner {
    padding: 40px 22px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE « À PROPOS »
   ============================================================ */

/* Bannière de titre */
.page-hero {
  position: relative;
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 56px 22px 48px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 0 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(30, 111, 217, 0.28), transparent 70%),
    radial-gradient(700px 240px at 80% 100%, rgba(178, 34, 52, 0.26), transparent 70%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.5), rgba(17, 24, 49, 0.7));
  border: 1px solid var(--border-soft);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.12;
}

.page-hero p {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--text-300);
  font-size: 1.06rem;
}

.breadcrumb {
  max-width: var(--maxw);
  margin: 18px auto 0;
  padding: 0 30px;
  font-size: 0.84rem;
  color: var(--text-500);
}

.breadcrumb a {
  color: var(--text-300);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Bloc de prose / texte enrichi */
.prose {
  max-width: 880px;
  margin: 0 auto;
}

.prose p {
  color: var(--text-300);
  font-size: 1.06rem;
  line-height: 1.8;
  text-align: justify;
}

.prose p + p {
  margin-top: 18px;
}

/* Mise en avant (citation / mission) */
.highlight-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 34px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, var(--fr-blue), #fff, var(--fr-red)) 1;
}

.highlight-box p {
  font-size: 1.12rem;
  color: var(--text-100);
  font-style: italic;
  line-height: 1.7;
}

/* Sections alternées image / texte */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.feature-row + .feature-row {
  margin-top: 56px;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.feature-text h2 .underline {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
}

.feature-text p {
  color: var(--text-300);
  font-size: 1.02rem;
  line-height: 1.8;
  text-align: justify;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 30px;
}

/* Timeline évolution des logos */
.logo-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.logo-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 111, 217, 0.5);
}

.logo-card .logo-frame {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.logo-card .logo-frame img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.logo-card .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.logo-card .badge.old {
  color: var(--gold);
  background: rgba(244, 193, 75, 0.14);
  border: 1px solid rgba(244, 193, 75, 0.4);
}

.logo-card .badge.mid {
  color: #a8d4ff;
  background: rgba(0, 85, 164, 0.18);
  border: 1px solid rgba(0, 85, 164, 0.4);
}

.logo-card .badge.new {
  color: #7ee0a0;
  background: rgba(126, 224, 160, 0.12);
  border: 1px solid rgba(126, 224, 160, 0.4);
}

.logo-timeline--three {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  max-width: 1180px;
}

.logo-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.logo-card p {
  color: var(--text-300);
  font-size: 0.92rem;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-blue);
}

/* Grille de valeurs */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.value {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.5);
}

.value .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.25), rgba(230, 57, 70, 0.25));
  border: 1px solid var(--border-soft);
}

.value h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value p {
  color: var(--text-300);
  font-size: 0.95rem;
}

/* Responsive page À propos */
@media (max-width: 960px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row.reverse .feature-text {
    order: 0;
  }

  .values {
    grid-template-columns: 1fr 1fr;
  }

  .logo-timeline,
  .logo-timeline--three {
    grid-template-columns: 1fr;
  }

  .timeline-arrow {
    transform: rotate(90deg);
    font-size: 1.6rem;
  }
}

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

  .page-hero {
    padding: 40px 18px 36px;
  }

  .highlight-box {
    padding: 24px 22px;
  }
}

/* ============================================================
   PAGE « PARTIR AUX USA »
   ============================================================ */

/* Héro avec image principale */
.travel-hero {
  position: relative;
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 22px;
}

.travel-hero-inner {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(30, 111, 217, 0.22), transparent 70%),
    radial-gradient(600px 300px at 100% 100%, rgba(178, 34, 52, 0.2), transparent 70%),
    linear-gradient(135deg, rgba(10, 36, 99, 0.55), rgba(17, 24, 49, 0.75));
}

.travel-hero-text {
  padding: 38px 40px 44px;
}

.travel-hero-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.travel-hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.14;
}

.travel-hero-text .lead {
  margin-top: 14px;
  color: var(--text-300);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Bandeau image en pleine largeur, en tête de la zone de texte */
.travel-hero-media {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--border-soft);
}

.travel-hero-media img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-100);
}

/* Encadrés d'alerte / information */
.alert {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px 22px 58px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  font-size: 1rem;
  line-height: 1.65;
}

.alert + .alert {
  margin-top: 18px;
}

.alert::before {
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 1.3rem;
}

.alert.info {
  border-left: 4px solid var(--accent-blue);
}
.alert.info::before {
  content: "ℹ️";
}

.alert.warning {
  border-left: 4px solid var(--gold);
  background: rgba(244, 193, 75, 0.08);
}
.alert.warning::before {
  content: "⚠️";
}

.alert.danger {
  border-left: 4px solid var(--accent-red);
  background: rgba(230, 57, 70, 0.1);
}
.alert.danger::before {
  content: "🚫";
}

.alert strong {
  color: var(--text-100);
}

/* Étapes (deux cas de figure) */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 111, 217, 0.5);
  box-shadow: var(--shadow-md);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-300);
  font-size: 0.98rem;
  line-height: 1.7;
}

.step-card .tagline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(244, 193, 75, 0.12);
  border: 1px solid rgba(244, 193, 75, 0.35);
}

/* Boutons liens officiels */
.gov-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, var(--us-blue), var(--fr-blue));
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.gov-link::before {
  content: "🔗";
}

.gov-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(30, 111, 217, 0.35);
}

.gov-link.verified::after {
  content: "Officiel";
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(126, 224, 160, 0.18);
  color: #7ee0a0;
  border: 1px solid rgba(126, 224, 160, 0.4);
}

.gov-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Grille des frais de visa (MRV) */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.fee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.fee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 111, 217, 0.5);
}

.fee-card .fee-head {
  text-align: center;
  padding: 22px 16px;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.18), rgba(230, 57, 70, 0.18));
  border-bottom: 1px solid var(--border-soft);
}

.fee-card .fee-amount {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-100);
}

.fee-card .fee-amount span {
  font-size: 0.9rem;
  color: var(--text-300);
}

.fee-card ul {
  padding: 18px 18px 22px;
}

.fee-card ul li {
  font-size: 0.9rem;
  color: var(--text-300);
  padding: 7px 0;
  border-bottom: 1px dashed var(--border-soft);
  line-height: 1.5;
}

.fee-card ul li:last-child {
  border-bottom: none;
}

.fee-card ul li b {
  display: inline-block;
  min-width: 42px;
  color: var(--gold);
}

/* Vidéo responsive */
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tableau des sanctions légales */
.legal-section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 57, 70, 0.4);
  background:
    linear-gradient(180deg, rgba(230, 57, 70, 0.08), rgba(17, 24, 49, 0.4));
  padding: 36px 32px;
}

.legal-section .legal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 8px;
}

.legal-section .legal-title .badge-law {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--accent-red);
  background: rgba(230, 57, 70, 0.14);
  border: 1px solid rgba(230, 57, 70, 0.45);
}

.legal-section > p.intro {
  color: var(--text-300);
  margin-bottom: 24px;
  max-width: 820px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.legal-table thead th {
  text-align: left;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-100);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border-soft);
}

.legal-table tbody td {
  padding: 14px 16px;
  color: var(--text-300);
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  line-height: 1.6;
}

.legal-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.legal-table .law-ref {
  display: inline-block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
  color: var(--gold);
  background: rgba(244, 193, 75, 0.1);
  border: 1px solid rgba(244, 193, 75, 0.3);
  border-radius: 6px;
  padding: 2px 8px;
  margin: 2px 0;
}

.legal-disclaimer {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--text-500);
  font-style: italic;
  line-height: 1.6;
}

/* Responsive page Partir */
@media (max-width: 960px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .fee-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .travel-hero-text {
    padding: 32px 22px;
  }

  .fee-grid {
    grid-template-columns: 1fr;
  }

  .legal-section {
    padding: 26px 18px;
  }

  /* Tableau légal en mode "cartes" sur mobile */
  .legal-table thead {
    display: none;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .legal-table td {
    border-bottom: 1px solid var(--border-soft);
  }

  .legal-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

/* ============================================================
   PAGE « AMBASSADE / EMBASSY »
   ============================================================ */

/* Bandeau de zone (drapeau de la zone : USA en France / France aux USA) */
.embassy-zone {
  max-width: var(--maxw);
  margin: 0 auto;
}

.zone-banner {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.zone-banner img {
  width: 100%;
  height: clamp(180px, 30vw, 340px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.zone-banner .zone-flagline {
  height: 5px;
  width: 100%;
}

.zone-flagline.us {
  background: linear-gradient(90deg, var(--us-red) 0 50%, var(--us-blue) 50% 100%);
}

.zone-flagline.fr {
  background: linear-gradient(
    90deg,
    var(--fr-blue) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--fr-red) 66.66% 100%
  );
}

.zone-title {
  text-align: center;
  margin: 26px auto 6px;
}

.zone-title .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.zone-title h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.15;
}

.zone-title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-300);
  font-size: 1.02rem;
}

/* Accordéon des représentations */
.accordion {
  max-width: 980px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.acc-item.open {
  border-color: rgba(30, 111, 217, 0.5);
  box-shadow: var(--shadow-md);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-100);
  font-size: 1.02rem;
  font-weight: 600;
  transition: background 0.25s var(--ease);
}

.acc-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.acc-header .acc-city {
  flex: 1;
}

.acc-header .acc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-300);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.acc-header .acc-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  color: #fff;
  border-color: transparent;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.acc-panel-inner {
  padding: 0 20px 20px 64px;
  color: var(--text-300);
  line-height: 1.8;
  font-size: 0.98rem;
}

.acc-panel-inner address {
  font-style: normal;
}

.acc-panel-inner .contact-line {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.acc-panel-inner .contact-line .lbl {
  color: var(--text-500);
  min-width: 70px;
}

.acc-panel-inner a {
  color: var(--accent-blue);
  transition: color 0.2s var(--ease);
}

.acc-panel-inner a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.acc-panel-inner .acc-note,
.acc-panel-inner .acc-hours {
  margin: 10px 0 6px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.acc-panel-inner .acc-hours-list {
  margin: 4px 0 10px;
  padding-left: 1.25rem;
}

.acc-panel-inner .acc-hours-list li {
  margin-bottom: 4px;
}

.acc-panel-inner .contact-line em {
  font-size: 0.88rem;
  color: var(--text-500);
  font-style: normal;
}

@media (max-width: 640px) {
  .acc-header {
    flex-wrap: wrap;
    font-size: 0.95rem;
  }

  .acc-header .acc-tag {
    order: 3;
    width: 100%;
    margin-left: 44px;
  }

  .acc-panel-inner {
    padding: 0 18px 18px 18px;
  }
}

/* ============================================================
   PAGE « ENTREPRENDRE AUX USA » — Guide
   ============================================================ */
/* Bandeau image complet (non rogné) — l'image entière reste visible */
.travel-hero-media.full img {
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #0b1020;
}

/* Sommaire / table des matières */
.toc {
  max-width: var(--maxw);
  margin: 0 auto 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toc-head h2 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.toc-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-100);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.toc-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

.toc-links a {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text-300);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 12px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease), transform 0.2s var(--ease);
}

.toc-links a:hover {
  color: #fff;
  border-color: var(--accent-blue);
  background: rgba(30, 111, 217, 0.18);
  transform: translateY(-2px);
}

/* Défilement horizontal des grands tableaux sur mobile */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.table-scroll .legal-table {
  min-width: 680px;
}

.table-scroll .legal-table tbody td:first-child {
  color: var(--text-100);
  font-weight: 600;
}

/* Grille de liens officiels */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.link-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--fr-blue), var(--fr-red));
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
}

.link-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.link-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card a {
  color: var(--accent-blue);
  transition: color 0.2s var(--ease);
}

.link-card a:hover {
  color: var(--gold);
}

/* Liste de contrôle (checklist) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.checklist li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-300);
  line-height: 1.6;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-red));
}

.checklist li:hover {
  border-color: var(--accent-blue);
  transform: translateX(4px);
}

/* FAQ (details/summary) */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-blue);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-body {
  padding: 0 22px 18px;
  color: var(--text-300);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .toc-toggle {
    display: inline-flex;
  }
  .toc-links {
    display: none;
  }
  .toc-links.open {
    display: flex;
  }
}

/* ============================================================
   PAGE « FAQ »
   ============================================================ */
.faq-search-wrap {
  max-width: var(--maxw);
  margin: 0 auto 6px;
  position: relative;
}

.faq-search {
  width: 100%;
  padding: 16px 18px 16px 50px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-100);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-search::placeholder {
  color: var(--text-500);
}

.faq-search:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(30, 111, 217, 0.18);
}

.faq-search-wrap::before {
  content: "🔎";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  opacity: 0.7;
  pointer-events: none;
}

.faq-search-count {
  max-width: var(--maxw);
  margin: 0 auto 10px;
  font-size: 0.85rem;
  color: var(--text-500);
}

.faq-noresult {
  max-width: var(--maxw);
  margin: 10px auto;
  padding: 22px;
  text-align: center;
  color: var(--text-300);
  background: var(--bg-card);
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius-md);
  display: none;
}

.faq-category {
  scroll-margin-top: 90px;
}

.faq-category > h2 {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-category > h2 .cat-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-blue);
  background: rgba(30, 111, 217, 0.14);
  border: 1px solid rgba(30, 111, 217, 0.4);
  border-radius: 999px;
  padding: 3px 11px;
}

.faq-category > p.cat-intro {
  color: var(--text-300);
  margin-bottom: 18px;
  max-width: 820px;
}

/* Lien .gov mis en valeur dans les réponses */
.faq-body code,
.faq-item p code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.86rem;
  color: var(--gold);
  background: rgba(244, 193, 75, 0.1);
  border: 1px solid rgba(244, 193, 75, 0.28);
  border-radius: 6px;
  padding: 1px 7px;
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-300);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PAGE « CONTACT » — Formulaire
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}

/* Colonne latérale d'informations */
.contact-aside {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}

.contact-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fr-blue), #fff, var(--fr-red));
}

.contact-aside h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.contact-aside p {
  color: var(--text-300);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
}

.contact-info-item .ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.25), rgba(230, 57, 70, 0.25));
  border: 1px solid var(--border-soft);
}

.contact-info-item .ci-text {
  font-size: 0.94rem;
  color: var(--text-300);
  line-height: 1.5;
}

.contact-info-item .ci-text strong {
  display: block;
  color: var(--text-100);
  margin-bottom: 2px;
}

.contact-info-item a {
  color: var(--accent-blue);
  transition: color 0.2s var(--ease);
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* Carte formulaire */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-100);
}

.field label .req {
  color: var(--accent-red);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-500);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2397a0b8' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field select option {
  background: var(--bg-800);
  color: var(--text-100);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 111, 217, 0.18);
}

/* État d'erreur */
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--accent-red);
  background: rgba(230, 57, 70, 0.08);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.field .field-error {
  font-size: 0.8rem;
  color: #ff8a93;
  min-height: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s var(--ease), max-height 0.2s var(--ease);
}

.field.error .field-error {
  opacity: 1;
  max-height: 40px;
  margin-top: 2px;
}

/* Champ caché anti-spam */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bouton d'envoi */
.contact-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-blue), var(--us-red));
  box-shadow: 0 12px 26px rgba(30, 111, 217, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(230, 57, 70, 0.34);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-submit .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}

.contact-submit.loading .spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Bannières de retour (succès / erreur) */
.form-feedback {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  padding: 16px 18px 16px 50px;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.6;
  display: none;
}

.form-feedback::before {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 1.2rem;
}

.form-feedback.show {
  display: block;
  animation: fb-in 0.4s var(--ease);
}

@keyframes fb-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-feedback.success {
  background: rgba(126, 224, 160, 0.12);
  border: 1px solid rgba(126, 224, 160, 0.45);
  color: #b8f0cc;
}
.form-feedback.success::before {
  content: "✅";
}

.form-feedback.error {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.45);
  color: #ff9aa2;
}
.form-feedback.error::before {
  content: "⚠️";
}

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

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 24px 20px;
  }
}

/* ============================================================
   REPORTAGE « ROUTE 66 »
   ============================================================ */
.r66-emblem {
  display: flex;
  justify-content: center;
  margin: 6px auto 0;
}

.r66-emblem img {
  width: 180px;
  max-width: 48vw;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
  animation: r66-float 5s ease-in-out infinite;
}

@keyframes r66-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Bande de statistiques */
.r66-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.r66-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}

.r66-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.r66-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-300);
}

/* Badges des États traversés */
.r66-states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.r66-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-100);
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.3), rgba(178, 34, 52, 0.3));
  border: 1px solid var(--border-soft);
}

.r66-state span {
  font-weight: 800;
  color: var(--gold);
}

/* Citation mise en avant */
.r66-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.55), rgba(178, 34, 52, 0.45));
  border: 1px solid var(--border-soft);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 26px 0;
}

.r66-quote p {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-style: italic;
  font-family: var(--font-title);
  color: var(--text-100);
  margin: 0;
}

.r66-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Galerie d'images */
.r66-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.r66-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.r66-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.r66-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.r66-card:hover img {
  transform: scale(1.05);
}

.r66-card figcaption {
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--text-300);
  font-style: italic;
}

/* Galerie pleine largeur — image entière visible (sans rognage) */
.r66-gallery.full {
  grid-template-columns: 1fr;
  gap: 24px;
}

.r66-gallery.full .r66-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0b1020;
}

.r66-gallery.full .r66-card:hover img {
  transform: none;
}

/* Carte / plan du circuit en bandeau */
.r66-map {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.r66-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* Frise chronologique verticale */
.r66-timeline {
  position: relative;
  margin: 22px 0 6px;
  padding-left: 8px;
}

.r66-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--accent-blue), var(--gold), var(--accent-red));
}

.r66-tl-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 26px;
}

.r66-tl-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--bg-800);
  box-shadow: 0 0 0 3px rgba(244, 193, 75, 0.35);
}

.r66-tl-date {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

.r66-tl-title {
  font-weight: 700;
  color: var(--text-100);
  margin: 2px 0 4px;
}

.r66-tl-text {
  color: var(--text-300);
  font-size: 0.95rem;
}

/* Anecdotes vérifiées */
.r66-anecdotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.r66-anecdote {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  border-top: 3px solid var(--accent-red);
}

.r66-anecdote h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.r66-anecdote h3 .ic {
  font-size: 1.3rem;
}

.r66-anecdote p {
  color: var(--text-300);
  font-size: 0.95rem;
  margin: 0;
}

.r66-anecdote .src {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-500);
}

@media (max-width: 760px) {
  .r66-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .r66-tl-item {
    padding-left: 56px;
  }
}

/* ============================================================
   PAGE « GUERRE D'INDÉPENDANCE »
   ============================================================ */
.iw-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.iw-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.4), rgba(178, 34, 52, 0.35));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}

.iw-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
}

.iw-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--text-300);
}

.iw-timeline .r66-tl-item.us::before { background: var(--accent-blue); box-shadow: 0 0 0 3px rgba(30, 111, 217, 0.35); }
.iw-timeline .r66-tl-item.uk::before { background: var(--accent-red); box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.35); }
.iw-timeline .r66-tl-item.fr::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(244, 193, 75, 0.35); }
.iw-timeline .r66-tl-item.neutral::before { background: var(--text-300); }

.iw-tl-who {
  display: inline-block;
  margin: 4px 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.iw-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 12px 0 4px;
  font-size: 0.86rem;
  color: var(--text-300);
}

.iw-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.iw-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.iw-legend .us i { background: var(--accent-blue); }
.iw-legend .uk i { background: var(--accent-red); }
.iw-legend .fr i { background: var(--gold); }
.iw-legend .neutral i { background: var(--text-300); }

@media (max-width: 760px) {
  .iw-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGE « ÉLECTION PRÉSIDENTIELLE US »
   ============================================================ */
.travel-hero-media.half img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 512px;
  background: #0b1020;
}

.election-infographic-wrap {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.election-infographic-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #0b1020;
}

.election-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.election-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.4), rgba(178, 34, 52, 0.35));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}

.election-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.election-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-300);
}

@media (max-width: 760px) {
  .travel-hero-media.half img {
    max-height: min(512px, 45vw);
  }
  .election-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Comparaison USA vs France */
.election-compare {
  margin-top: 18px;
}

.election-compare-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 36px);
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.35), rgba(0, 85, 164, 0.25));
  border: 1px solid var(--border-soft);
  margin-bottom: 20px;
}

.election-compare-nation {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text-100);
}

.election-compare-nation img {
  height: 28px;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.election-compare-vs {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bg-900);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  animation: election-vs-pulse 3s ease-in-out infinite;
}

@keyframes election-vs-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12); }
}

.election-compare-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.election-compare-row {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.election-compare-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.election-compare-criterion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-soft);
}

.election-compare-criterion .ec-ic {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.5), rgba(178, 34, 52, 0.4));
}

.election-compare-criterion h3 {
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--text-100);
  margin: 0;
}

.election-compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.election-compare-col {
  position: relative;
  padding: 18px 20px 18px 24px;
  transition: background 0.2s ease;
}

.election-compare-col.us {
  border-right: 1px solid var(--border-soft);
}

.election-compare-col.us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--us-red), var(--us-blue));
}

.election-compare-col.fr::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--fr-blue) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--fr-red) 66.66% 100%
  );
}

.election-compare-col.us:hover {
  background: rgba(10, 36, 99, 0.12);
}

.election-compare-col.fr:hover {
  background: rgba(0, 85, 164, 0.1);
}

.election-compare-col .ec-nation {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.election-compare-col.us .ec-nation {
  color: #7eb8ff;
}

.election-compare-col.fr .ec-nation {
  color: #ff9a9a;
}

.election-compare-col .ec-nation img {
  height: 16px;
  width: auto;
  border-radius: 2px;
}

.election-compare-col p {
  margin: 0;
  color: var(--text-300);
  font-size: 0.93rem;
  line-height: 1.55;
}

.election-compare-col p + p {
  margin-top: 6px;
}

.election-compare-col strong {
  color: var(--text-100);
  font-size: 0.98rem;
}

.election-compare-col .ec-detail {
  font-size: 0.84rem;
  color: var(--text-500);
}

.election-compare-col .ec-highlight {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.election-compare-col.us .ec-highlight {
  background: rgba(10, 36, 99, 0.45);
  color: #a8c8ff;
}

.election-compare-col.fr .ec-highlight {
  background: rgba(0, 85, 164, 0.35);
  color: #ffc8c8;
}

@media (max-width: 680px) {
  .election-compare-header {
    flex-direction: column;
    gap: 14px;
    padding: 20px 16px;
  }

  .election-compare-cols {
    grid-template-columns: 1fr;
  }

  .election-compare-col.us {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
}

/* ============================================================
   PAGE « MENTIONS LÉGALES »
   ============================================================ */
.legal-section {
  scroll-margin-top: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 18px;
}

.legal-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2 .num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-900);
  background: var(--gold);
}

.legal-section h3 {
  font-size: 1.02rem;
  margin: 16px 0 6px;
  color: var(--text-100);
}

.legal-section p,
.legal-section li {
  color: var(--text-300);
  line-height: 1.75;
}

.legal-section p + p {
  margin-top: 10px;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 4px;
}

.legal-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.legal-section ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section strong {
  color: var(--text-100);
}

/* Logo partenaire centré (RPLG, LWS, HLG) */
.legal-logo {
  display: flex;
  justify-content: center;
  margin: 4px 0 16px;
}

.legal-logo img {
  height: 150px;
  width: auto;
  max-width: 100%;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
}

.legal-cookies-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(30, 111, 217, 0.08);
}

.legal-cookies-box p {
  flex: 1 1 220px;
  margin: 0;
}

.legal-cookie-manage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-height: 48px;
  text-align: center;
}

/* Encart « dernière mise à jour » */
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legal-meta .pill {
  background: rgba(30, 111, 217, 0.16);
  border: 1px solid rgba(30, 111, 217, 0.4);
}

/* ============================================================
   PAGE « MÉTIERS EN TENSION »
   ============================================================ */
.jobs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.jobs-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.4), rgba(178, 34, 52, 0.35));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
}

.jobs-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.jobs-stat .label {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--text-300);
}

/* Cartes métiers */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 193, 75, 0.5);
}

.job-card .job-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-100);
}

.job-card .job-ic {
  font-size: 1.6rem;
  line-height: 1;
}

.job-card .job-desc {
  color: var(--text-300);
  font-size: 0.93rem;
  margin: 10px 0 14px;
}

.job-card .job-salary {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}

.job-card .job-demand {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-100);
  background: rgba(30, 111, 217, 0.2);
  border: 1px solid rgba(30, 111, 217, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Avantages / Inconvénients */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.proscons-col {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.proscons-col.pros {
  border-top: 3px solid #2ecc71;
}

.proscons-col.cons {
  border-top: 3px solid var(--gold);
}

.proscons-col h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.proscons-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-300);
  font-size: 0.93rem;
}

.proscons-item .pc-ic {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.proscons-col.pros .pc-ic {
  background: #2ecc71;
}

.proscons-col.cons .pc-ic {
  background: var(--gold);
  color: var(--bg-900);
}

.proscons-item strong {
  color: var(--text-100);
}

/* Étapes / procédure */
.jobs-steps {
  position: relative;
  margin-top: 18px;
  padding-left: 8px;
}

.jobs-steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-blue), var(--accent-red));
  border-radius: 3px;
}

.jobs-step {
  position: relative;
  padding-left: 66px;
  margin-bottom: 22px;
}

.jobs-step .step-n {
  position: absolute;
  left: 6px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--bg-900);
  background: var(--gold);
  border: 4px solid var(--bg-800);
}

.jobs-step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-100);
}

.jobs-step p {
  color: var(--text-300);
  font-size: 0.93rem;
}

.jobs-step a {
  color: var(--gold);
  text-decoration: underline;
}

/* Budget */
.budget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 16px;
}

.budget-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text-300);
}

.budget-row.total {
  border-bottom: none;
  border-top: 2px solid var(--gold);
  margin-top: 6px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-100);
}

.budget-row .amount {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .jobs-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .proscons {
    grid-template-columns: 1fr;
  }
  .jobs-step {
    padding-left: 58px;
  }
}

/* ============================================================
   PAGE « CREDIT SCORE »
   ============================================================ */
.credit-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}

.credit-tier {
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.credit-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.credit-tier .range {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.credit-tier .label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-300);
  line-height: 1.35;
}

.credit-tier.excellent { background: linear-gradient(135deg, rgba(46, 204, 113, 0.25), rgba(39, 174, 96, 0.15)); border-top: 3px solid #2ecc71; }
.credit-tier.verygood  { background: linear-gradient(135deg, rgba(52, 152, 219, 0.25), rgba(41, 128, 185, 0.15)); border-top: 3px solid #3498db; }
.credit-tier.good      { background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(243, 156, 18, 0.12)); border-top: 3px solid var(--gold); }
.credit-tier.fair      { background: linear-gradient(135deg, rgba(230, 126, 34, 0.22), rgba(211, 84, 0, 0.12)); border-top: 3px solid #e67e22; }
.credit-tier.poor      { background: linear-gradient(135deg, rgba(178, 34, 52, 0.28), rgba(139, 0, 0, 0.15)); border-top: 3px solid var(--accent-red); }

.credit-gauge {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b22234 0%, #e67e22 25%, #f4c14b 50%, #3498db 75%, #2ecc71 100%);
  margin: 20px 0 8px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.credit-gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-300);
}

/* Problèmes score faible */
.credit-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.credit-problem {
  background: var(--bg-card);
  border: 1px solid rgba(178, 34, 52, 0.35);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform 0.3s var(--ease);
}

.credit-problem:hover {
  transform: translateY(-3px);
}

.credit-problem h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-100);
}

.credit-problem p {
  font-size: 0.92rem;
  color: var(--text-300);
  margin: 0;
}

.credit-steps {
  counter-reset: credstep;
  margin-top: 16px;
}

.credit-step {
  position: relative;
  padding-left: 56px;
  margin-bottom: 18px;
}

.credit-step::before {
  counter-increment: credstep;
  content: counter(credstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-900);
  background: var(--gold);
}

.credit-step h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.credit-step p {
  color: var(--text-300);
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  .credit-scale {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .credit-scale {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE « BLOG »
   ============================================================ */
.travel-hero-media.full.ninety img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 250px;
  background: #0b1020;
}

.blog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.blog-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.4), rgba(0, 85, 164, 0.35));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}

.blog-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.blog-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-300);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  color: var(--text-300);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--us-blue), var(--fr-blue));
  color: var(--text-100);
  border-color: transparent;
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  margin-top: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fr-blue), #fff, var(--fr-red), var(--us-red), var(--us-blue));
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.35);
}

.blog-card .bc-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card .bc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}

.blog-card .bc-tag.diplomatie { background: rgba(0, 85, 164, 0.35); color: #a8d4ff; }
.blog-card .bc-tag.defense { background: rgba(178, 34, 52, 0.35); color: #ffb8c8; }
.blog-card .bc-tag.economie { background: rgba(212, 175, 55, 0.25); color: var(--gold); }
.blog-card .bc-tag.immigration { background: rgba(46, 204, 113, 0.25); color: #7dffb0; }
.blog-card .bc-tag.tech { background: rgba(138, 43, 226, 0.3); color: #d4b8ff; }
.blog-card .bc-tag.culture { background: rgba(255, 127, 80, 0.3); color: #ffd4c8; }

.blog-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text-100);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-300);
  line-height: 1.55;
  flex: 1;
}

.blog-card .bc-read {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 10px;
}

.blog-post {
  scroll-margin-top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.blog-post:hover {
  box-shadow: var(--shadow-md);
}

.blog-post-head {
  padding: 24px 28px 0;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-post-meta time {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-post-meta .bc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.blog-post-meta .bc-tag.diplomatie { background: rgba(0, 85, 164, 0.35); color: #a8d4ff; }
.blog-post-meta .bc-tag.defense { background: rgba(178, 34, 52, 0.35); color: #ffb8c8; }
.blog-post-meta .bc-tag.economie { background: rgba(212, 175, 55, 0.25); color: var(--gold); }
.blog-post-meta .bc-tag.immigration { background: rgba(46, 204, 113, 0.25); color: #7dffb0; }
.blog-post-meta .bc-tag.tech { background: rgba(138, 43, 226, 0.3); color: #d4b8ff; }
.blog-post-meta .bc-tag.culture { background: rgba(255, 127, 80, 0.3); color: #ffd4c8; }

.blog-post h2 {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  line-height: 1.25;
  color: var(--text-100);
  margin-bottom: 14px;
}

.blog-post .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-100);
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 18px;
}

.blog-post-body {
  padding: 0 28px 28px;
}

.blog-post-body p {
  color: var(--text-300);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.blog-post-body p:last-child {
  margin-bottom: 0;
}

.blog-post-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.blog-post {
  position: relative;
}

.blog-post-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--fr-blue), #fff, var(--fr-red), var(--us-red), var(--us-blue));
}

@media (max-width: 760px) {
  .travel-hero-media.full.ninety img {
    max-height: min(250px, 40vw);
  }
  .blog-stats {
    grid-template-columns: 1fr;
  }
  .blog-post-head,
  .blog-post-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .blog-post-head {
    padding-top: 20px;
  }
  .blog-post-body {
    padding-bottom: 22px;
  }
}

/* ============================================================
   PAGE « COMMUNICATION OFFICIELLE »
   ============================================================ */
.travel-hero-media.full.comm30 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 307px;
  background: #0b1020;
}

.comm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.comm-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.4), rgba(178, 34, 52, 0.35));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}

.comm-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gold);
}

.comm-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-300);
}

.comm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.comm-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  color: var(--text-300);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.comm-filter-btn:hover,
.comm-filter-btn.active {
  background: linear-gradient(135deg, var(--us-blue), var(--fr-blue));
  color: var(--text-100);
  border-color: transparent;
}

.comm-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 16px;
  margin-top: 20px;
}

.comm-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-left: 4px solid var(--gold);
}

.comm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.comm-card .cc-ref {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-500);
  margin-bottom: 6px;
}

.comm-card .cc-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.comm-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text-100);
  margin-bottom: 8px;
}

.comm-card p {
  font-size: 0.86rem;
  color: var(--text-300);
  line-height: 1.5;
  flex: 1;
}

.comm-card .cc-read {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.comm-releases {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.comm-release {
  scroll-margin-top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.comm-release:hover {
  box-shadow: var(--shadow-md);
}

.comm-release-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--fr-blue), #fff, var(--fr-red), var(--us-red), var(--us-blue));
}

.comm-release-inner {
  padding: 26px 28px 28px;
}

.comm-release-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.comm-release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-500);
}

.comm-release-meta .cr-ref {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-300);
}

.comm-release-meta time {
  font-weight: 600;
  color: var(--gold);
}

.comm-release h2 {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.3;
  color: var(--text-100);
  margin-bottom: 16px;
}

.comm-release-body p {
  color: var(--text-300);
  line-height: 1.75;
  font-size: 0.96rem;
  margin-bottom: 14px;
}

.comm-release-body p:last-child {
  margin-bottom: 0;
}

.comm-release-sign {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-300);
  font-style: italic;
}

.comm-release-sign strong {
  color: var(--text-100);
  font-style: normal;
}

.comm-intro {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.25), rgba(0, 85, 164, 0.15));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 8px;
}

.comm-intro p {
  color: var(--text-300);
  line-height: 1.7;
  font-size: 0.97rem;
}

@media (max-width: 760px) {
  .travel-hero-media.full.comm30 img {
    max-height: min(307px, 30vw);
  }
  .comm-stats {
    grid-template-columns: 1fr;
  }
  .comm-release-inner {
    padding: 20px 18px 22px;
  }
}

/* ============================================================
   PAGE « REJOIGNEZ-NOUS » / JOIN US
   ============================================================ */
.join-hero-banner {
  background: #0b1020;
}

.join-hero-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 307px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.join-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.join-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.45), rgba(178, 34, 52, 0.3));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
}

.join-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.join-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-300);
  line-height: 1.35;
}

.join-form-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 20px;
  text-align: center;
}

.join-submit {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .join-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .join-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE « RETRAITE AUX USA » / RETIREMENT
   Bandeau image complet + titre en dessous
   ============================================================ */
.retirement-hero {
  background: linear-gradient(180deg, rgba(10, 36, 99, 0.12) 0%, rgba(178, 34, 52, 0.06) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.retirement-hero-banner {
  background: #0b1020;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px 0;
  overflow: hidden;
}

.retirement-hero-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: min(420px, 52vw);
  object-fit: contain;
  object-position: center;
  display: block;
}

.retirement-hero-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 36px;
  text-align: center;
}

.retirement-hero-intro .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.retirement-hero-intro h1 {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--text-100);
}

.retirement-hero-intro .lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-300);
  line-height: 1.65;
  margin: 0 auto 18px;
  max-width: 780px;
}

.retirement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.retirement-stat {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.45), rgba(178, 34, 52, 0.3));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
}

.retirement-stat .num {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.retirement-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-300);
  line-height: 1.35;
}

.retirement-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.retirement-pillar {
  background: rgba(10, 36, 99, 0.25);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.retirement-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.retirement-pillar h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 8px;
}

.retirement-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-300);
  line-height: 1.5;
}

.retirement-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.retirement-link-card {
  background: rgba(10, 36, 99, 0.22);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.retirement-link-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(10, 36, 99, 0.35);
}

.retirement-link-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 10px;
}

.retirement-link-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.retirement-link-card li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.retirement-link-card a {
  color: var(--text-200);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.retirement-link-card a:hover {
  color: var(--gold);
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.data-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  color: var(--text-200);
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.data-table thead th {
  text-align: left;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-100);
  font-weight: 700;
  border-bottom: 1px solid var(--border-soft);
}

.data-table tbody td {
  padding: 14px 16px;
  color: var(--text-300);
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  line-height: 1.55;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(244, 193, 75, 0.12);
  color: var(--text-100);
}

.cta-inner .btn-ghost {
  margin-left: 10px;
}

@media (max-width: 900px) {
  .retirement-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .retirement-pillars {
    grid-template-columns: 1fr;
  }
  .retirement-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .retirement-hero-intro {
    padding: 22px 16px 28px;
  }
  .retirement-stats {
    grid-template-columns: 1fr;
  }
  .cta-inner .btn-ghost {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}

/* Accessibilité : réduire les animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
