/* ===================================================
   ADRÉNALINE PRÉVENTION — Global Stylesheet
   =================================================== */

/* Google Fonts — loaded via <link> in HTML, no @import needed */

/* ===================================================
   CSS CUSTOM PROPERTIES
   =================================================== */
:root {
  /* Colors */
  --blue-main:  #6B8DC4;
  --blue-dark:  #1a2a4a;
  --blue-light: #EBF1FA;
  --white:      #FFFFFF;
  --red-accent: #CC2222;
  --text-primary: #1a2a4a;
  --text-muted:   #5a6a8a;

  /* Typography */
  --font-body: 'Jost', sans-serif;
  --font-hero: 'Barlow Condensed', sans-serif;

  /* Layout */
  --container-width: 1100px;
  --radius:  12px;
  --shadow:  0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border: #e0e4ed;

  /* Spacing */
  --section-padding: 80px 0;
  --navbar-height: 72px;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================================
   SKIP TO CONTENT (accessibility)
   =================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ===================================================
   FOCUS VISIBLE (accessibility)
   =================================================== */
:focus-visible {
  outline: 3px solid var(--blue-main);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--blue-main);
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section         { padding: var(--section-padding); }
.section--white  { background: var(--white); }
.section--light  { background: var(--blue-light); }
.section--dark   { background: var(--blue-dark); color: var(--white); }

.text-center { text-align: center; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem,   5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 0.6rem;
}

.section-title    { margin-bottom: 0.85rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.28s ease;
  text-align: center;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--blue-main);
  color: var(--white);
  border: 2px solid var(--blue-main);
}
.btn-primary:hover {
  background: #5a7ab0;
  border-color: #5a7ab0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 141, 196, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-secondary--blue {
  color: var(--blue-main);
  border-color: var(--blue-main);
}
.btn-secondary--blue:hover {
  background: var(--blue-main);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red-accent);
  color: var(--white);
  border: 2px solid var(--red-accent);
}
.btn-red:hover {
  background: #aa1a1a;
  border-color: #aa1a1a;
  transform: translateY(-2px);
}

/* ===================================================
   NAVBAR
   =================================================== */

/* La navbar et le hero home passent en pleine largeur viewport */
.navbar .container,
.navbar__inner.container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blue-dark);
  height: var(--navbar-height);
  transition: height 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  height: 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo img {
  height: 44px;
  transition: height 0.3s ease;
  display: block;
  flex-shrink: 0;
}
.navbar.scrolled .navbar__logo img { height: 34px; }

.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0;
}
.navbar__brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.navbar__brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar__brand-tld {
  color: var(--blue-main);
  font-weight: 800;
  letter-spacing: 0;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__menu li {
  display: flex;
  align-items: center;
}

.navbar__menu li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.navbar__menu li a:hover { color: var(--white); background: rgba(107,141,196,0.18); }

.navbar__menu li a.active {
  color: var(--white);
  font-weight: 700;
}

/* Middle dot separator between nav items (desktop only) */
.navbar__menu li + li::before {
  content: '·';
  color: rgba(255,255,255,0.22);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  pointer-events: none;
  margin: 0 1px;
}
/* No dot before dropdown sub-menus */
.navbar__dropdown-menu li + li::before { display: none; }
.navbar__menu li a.active::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px;
  bottom: 3px;
  height: 2px;
  background: var(--blue-main);
  border-radius: 2px;
}

/* ── Dropdown menus ── */
.navbar__dropdown {
  position: relative;
}
.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.navbar__dropdown-toggle .nav-chevron {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}
.navbar__dropdown:hover .navbar__dropdown-toggle .nav-chevron,
.navbar__dropdown.open .navbar__dropdown-toggle .nav-chevron {
  transform: rotate(-135deg);
}
.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--blue-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 1000;
}
.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown-menu li + li::before { display: none !important; }
.navbar__dropdown-menu li a {
  display: block;
  padding: 10px 20px !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  border-radius: 0 !important;
}
.navbar__dropdown-menu li a:hover {
  background: rgba(107,141,196,0.25) !important;
}
.navbar__dropdown-menu li a.active::after { display: none; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: var(--blue-dark);
  color: var(--white);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* Overlay : zone sombre à gauche pour lisibilité + grain */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(95deg, var(--blue-dark) 0%, var(--blue-dark) 25%, rgba(26,42,74,0.88) 38%, rgba(26,42,74,0.15) 50%, transparent 58%),
    linear-gradient(to top, rgba(10,18,45,0.65) 0%, transparent 30%),
    radial-gradient(ellipse at 16% 45%, rgba(107,141,196,0.18) 0%, transparent 50%),
    repeating-linear-gradient(
      -18deg,
      transparent 0px, transparent 72px,
      rgba(107,141,196,0.03) 72px, rgba(107,141,196,0.03) 73px,
      transparent 73px, transparent 144px,
      rgba(107,141,196,0.015) 144px, rgba(107,141,196,0.015) 145px
    );
  pointer-events: none;
  z-index: 1;
}
/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px 250px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__speed-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Home hero */
.hero--home {
  min-height: 100vh;
  padding: 0;
}
.hero--home .container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 4vw, 40px);
}
.hero--home .hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--navbar-height) + 32px) 0 3rem;
  gap: 2.5rem;
}
.hero--home .hero__stats-bar {
  width: 100%;
  margin-top: 2rem;
  min-width: 0;
}

/* ── Ticker villes ───────────────────────────────── */
.hero__ticker {
  overflow: hidden;
  contain: paint;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.hero__ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
}
.hero__ticker {
  cursor: ew-resize;
}
.hero__ticker-intro {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__ticker-city {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.hero__ticker-city--main {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.hero__ticker-sep {
  color: rgba(107,141,196,0.45);
  font-size: 0.5rem;
  padding: 0 8px;
  flex-shrink: 0;
  line-height: 1;
}

/* Text + photo side by side */
.hero__main {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 3rem;
  align-items: stretch;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Sur la home, contraindre la largeur pour aligner stats sur le titre */
.hero--home .hero__content {
  max-width: clamp(360px, 52vw, 780px);
}

/* Single large photo on the right, fills full column height */
.hero__mosaic {
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
}

.hero__mosaic-photo {
  height: 100%;
}

.hero__mosaic-photo:not(:first-child) {
  display: none;
}

.hero__mosaic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__stats-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
.hero__stats-bar .stats-grid {
  margin: 0;
  width: 100%;
}
.hero__stats-bar .stat-item {
  min-width: 0;
}
/* Désactive le fade-in-up du conteneur — les items gèrent leur propre apparition */
.hero__stats-bar .stats-grid.fade-in-up {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero__stats-bar .stat-item {
  padding: 1rem 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-stat-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__stats-bar .stat-item:nth-child(1) { animation-delay: 0.9s; }
.hero__stats-bar .stat-item:nth-child(2) { animation-delay: 1.05s; }
.hero__stats-bar .stat-item:nth-child(3) { animation-delay: 1.2s; }

@keyframes hero-stat-in {
  to { opacity: 1; transform: translateY(0); }
}


.hero__stats-bar .stat-number {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
}
.hero__stats-bar .stat-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.12);
}

/* Icône en filigrane derrière le chiffre */
.stat-item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  opacity: 0.07;
  pointer-events: none;
  color: var(--white);
  z-index: 0;
}
.stat-item__icon svg {
  width: 100%;
  height: 100%;
}
.stat-item .stat-number,
.stat-item .stat-label {
  position: relative;
  z-index: 1;
}

/* Label unifié pour toutes les stats de la barre */
.hero__stats-bar .stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}
.hero__stats-bar .stat-label em {
  display: block;
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.6;
  font-weight: 400;
}

/* Scroll arrow */
.hero__scroll-arrow {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
  cursor: default;
  z-index: 2;
}
.hero__scroll-arrow svg {
  width: 48px;
  height: 48px;
  display: block;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* Photos diagonales en arrière-plan */
.hero__photo-credit {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: .65rem;
  color: rgba(255,255,255,.45);
  z-index: 3;
  margin: 0;
  pointer-events: none;
}

.hero__bg-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-photo {
  position: absolute;
  width: 22vw;
  height: 130%;
  top: -15%;
  border-radius: 20px;
  overflow: hidden;
}

.hero__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Photo gauche — commence à 50% */
.hero__bg-photo--1 {
  left: 50%;
  opacity: 0.80;
  transform: rotate(-10deg);
}
.hero__bg-photo--1 img {
  object-position: center 38%;
  animation: bgPan 30s ease-in-out infinite alternate;
}

/* Photo centrale */
.hero__bg-photo--2 {
  left: 72%;
  opacity: 0.80;
  transform: rotate(-10deg);
}
.hero__bg-photo--2 img {
  object-position: center 25%;
  animation: bgPan 24s ease-in-out infinite alternate;
  animation-delay: -9s;
}

/* Photo droite */
.hero__bg-photo--3 {
  left: 94%;
  opacity: 0.80;
  transform: rotate(-10deg);
}
.hero__bg-photo--3 img {
  object-position: center 18%;
  animation: bgPan 20s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes bgPan {
  from { transform: rotate(-10deg) scale(1.05) translateY(0); }
  to   { transform: rotate(-10deg) scale(1.05) translateY(-4%); }
}

/* Texte keyword en gras — pas de coupure */
.hero__keyword {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* Garder le badge SVG existant si encore utilisé ailleurs */
.hero__badge {
  display: flex;
  justify-content: center;
  opacity: 0.12;
  animation: float 7s ease-in-out infinite;
}
.hero__badge img { width: 220px; height: 220px; object-fit: contain; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}


/* ── Animations d'entrée hero home ─────────────────── */
@keyframes heroRevealDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-56px) skewX(5deg); }
  to   { opacity: 1; transform: translateX(0) skewX(0deg); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroPop {
  from { opacity: 0; transform: scale(0.82) translateY(12px); }
  65%  { transform: scale(1.04) translateY(-3px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Application aux éléments du hero home */
.hero--home .hero__eyebrow {
  animation: heroRevealDown 0.5s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}
.hero--home .hero__title-main {
  animation: heroSlideLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.22s both;
}
.hero--home .hero__title-sub {
  animation: heroSlideLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.42s both;
}
.hero--home .hero__subtitle-line {
  animation: heroFadeUp 0.55s ease 0.62s both;
}
.hero--home .hero__subtitle-line:last-child {
  animation-delay: 0.76s;
}
.hero--home .hero__actions {
  animation: heroPop 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.92s both;
}

/* ────────────────────────────────────────────────── */

.hero__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: rgba(107,141,196,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(107,141,196,0.35);
  gap: 0;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero__title-main {
  display: block;
}
.hero__title-sub {
  font-size: 0.52em;
  font-weight: 700;
  color: #7AAEE8;
  letter-spacing: 0.12em;
  display: block;
  text-transform: uppercase;
}

/* Subtitle restructuré en lignes indépendantes */
.hero__subtitle {
  margin-bottom: 2.5rem;
}
.hero__subtitle-line {
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  margin-bottom: 0.3rem;
}
.hero__subtitle-line:last-child { margin-bottom: 0; }

/* Mobile : retour à la ligne autorisé */
@media (max-width: 900px) {
  .hero__subtitle-line {
    white-space: normal;
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sub-page heroes */
.hero--sub {
  padding: 120px 0 64px;
  min-height: auto;
}
.hero--sub .hero__inner {
  text-align: center;
}
.hero--sub .hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.hero--sub .hero__subtitle {
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   STATS
   =================================================== */
.stats-section {
  padding: 70px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--blue-light);
}

.stat-number {
  font-family: var(--font-hero);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-section--dark {
  background: var(--blue-dark);
}
.stats-section--dark .stat-number {
  color: var(--white);
}
.stats-section--dark .stat-label {
  color: rgba(255, 255, 255, 0.65);
}
.stats-section--dark .stat-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.12);
}
.stats-section--dark .stat-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ===================================================
   CARDS
   =================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card--light { background: var(--blue-light); box-shadow: none; }
.card--light:hover { box-shadow: var(--shadow); }

.card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card__title  { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.card__text   { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ===================================================
   TEAM CARDS
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.team-card__photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--blue-main);
  margin: 0 auto 1.25rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-hero);
  border: 4px solid var(--blue-light);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo--placeholder {
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo--placeholder span {
  font-size: 1.5rem; font-weight: 800; color: var(--blue-main); letter-spacing: 0.05em;
}

.team-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card__role { color: var(--blue-main); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.75rem; display: block; }
.team-card__bio  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ===================================================
   VIDEO PLACEHOLDER
   =================================================== */
.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  gap: 1rem;
  position: relative;
  cursor: pointer;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,141,196,0.18) 0%, transparent 65%);
}

.video-play-btn {
  position: relative;
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.video-play-btn:hover { background: var(--blue-main); border-color: var(--blue-main); transform: scale(1.08); }

.video-play-btn svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }

.video-caption {
  position: relative;
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
  padding: 0 1.5rem;
}

.video-section-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

/* ===================================================
   QUOTE
   =================================================== */
.quote-block {
  border-left: 4px solid var(--blue-main);
  padding: 1.5rem 2rem;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blue-dark);
  margin: 2rem 0;
  line-height: 1.5;
}

.quote-big {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--blue-dark);
  padding: 2.5rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

.quote-big::before { content: '\201C'; color: var(--blue-main); }
.quote-big::after  { content: '\201D'; color: var(--blue-main); }

/* ===================================================
   FORMAT CARDS (spectacle/débat)
   =================================================== */
.format-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue-main);
}
.format-card--debate { border-top-color: var(--red-accent); }

.format-duration {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.format-card--debate .format-duration { color: var(--red-accent); }
.format-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }

/* ===================================================
   PUBLIC CIBLE BLOCK (spectacle.html)
   =================================================== */
.public-cible-block {
  background: var(--blue-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue-main);
  padding: 2rem 2.25rem;
  margin-top: 1rem;
}
.public-cible__header {
  margin-bottom: 1.5rem;
}
.public-cible__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0.35rem 0 0;
  line-height: 1.3;
}
.public-cible__audiences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.public-cible__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
}
.public-cible__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}
.public-cible__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}
.public-cible__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 768px) {
  .public-cible-block { padding: 1.5rem 1.25rem; }
}

/* ===================================================
   INFO GRID
   =================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.info-item {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-main);
  margin-bottom: 0.4rem;
}
.info-item__value { font-size: 0.95rem; font-weight: 600; }

/* ===================================================
   TRUST BADGES
   =================================================== */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  min-width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
}
.trust-badge:hover { transform: translateY(-3px); }

/* ===================================================
   TWO COLUMN
   =================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(107,141,196,0.2); }
.faq-item:first-child { border-top: 1px solid rgba(107,141,196,0.2); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question:hover   { color: var(--blue-main); }
.faq-question.active  { color: var(--blue-main); }

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue-main);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-main);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 0.96rem;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ===================================================
   CONTACT FORM
   =================================================== */
.contact-info { padding: 0.5rem 0; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-main);
  margin-bottom: 0.25rem;
}
.contact-info__value { font-size: 0.95rem; line-height: 1.5; }
.contact-info__value a { color: var(--blue-main); font-weight: 500; }
.contact-info__value a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(107,141,196,0.22);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(107,141,196,0.15);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a8a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red-accent); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  display: none;
}
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error-msg { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* Honeypot (hidden from humans) */
.form-pot { display: none !important; }

/* ===================================================
   EPISODE CARDS (podcast)
   =================================================== */
.episodes-list { display: flex; flex-direction: column; gap: 1.25rem; }

.episode-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.episode-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.episode-number {
  width: 56px; height: 56px;
  background: var(--blue-main);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-hero);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.episode-info { flex: 1; }
.episode-meta { display: flex; gap: 1rem; margin-bottom: 0.4rem; align-items: center; }
.episode-title { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.45rem; }
.episode-duration { font-size: 0.78rem; color: var(--blue-main); font-weight: 600; background: var(--blue-light); padding: 3px 10px; border-radius: 50px; }
.episode-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }

/* Platforms */
.platforms-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platform-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.platform-badge span { font-size: 1.4rem; }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, #2d60be 0%, #1a3870 45%, #0e1e3a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 65% 90% at 12% 50%, rgba(107, 141, 196, 0.22) 0%, transparent 100%),
    radial-gradient(ellipse 65% 90% at 88% 50%, rgba(107, 141, 196, 0.14) 0%, transparent 100%),
    repeating-linear-gradient(
      -22deg,
      transparent 0px, transparent 44px,
      rgba(255, 255, 255, 0.013) 44px, rgba(255, 255, 255, 0.013) 45px
    );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 1rem;
  padding: 4px 14px;
  border: 1px solid rgba(107, 141, 196, 0.45);
  border-radius: 50px;
  background: rgba(107, 141, 196, 0.14);
}

.cta-title {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.cta-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s ease;
}

.cta-social__link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}

/* ===================================================
   PODCAST
   =================================================== */

.podcast-badge-production {
  display: inline-block;
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.guest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.guest-card:hover {
  box-shadow: var(--shadow-hover);
}
.guest-card__name-header {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-family: var(--font-hero);
  font-size: 1.35rem;
  font-weight: 800;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-height: 80px;
  letter-spacing: 0.02em;
}
.guest-card__name-header--blue {
  background: var(--blue-dark);
  color: var(--white);
}
.guest-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.guest-card__episode {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-main);
}
.guest-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}
.guest-card__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}
.guest-card__desc {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0.5rem 0 0;
}
.guest-card__badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--blue-light);
  color: var(--blue-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ===================================================
   FOOTER
   =================================================== */
/* ===================================================
   PRÉVENTION — APPROCHE & FLIP CARDS
   =================================================== */

/* Brand name */
.brand-name {
  color: var(--blue-main);
  font-weight: 800;
}

/* Tooltip catharsis */
.tooltip {
  position: relative;
  cursor: help;
  border-bottom: 1px dashed var(--blue-main);
  color: var(--blue-main);
  font-weight: 600;
}
.tooltip__text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  width: 270px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 20;
}
.tooltip:hover .tooltip__text,
.tooltip:focus .tooltip__text,
.tooltip:active .tooltip__text {
  opacity: 1;
}
@media (max-width: 768px) {
  .tooltip__text {
    width: 220px;
    font-size: 0.78rem;
    left: 0;
    transform: none;
  }
}

/* Quote professeurs */
.approche-quote {
  font-style: italic;
  border-left: 3px solid var(--blue-main);
  padding-left: 1rem;
  color: var(--text-muted);
  margin: 1.25rem 0;
}

/* Approche cards (remplace les .card--light en colonne) */
.approche-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.approche-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.approche-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.approche-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.approche-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Flip cards */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  min-height: 220px;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.flip-card__front {
  background: var(--white);
  box-shadow: var(--shadow);
}
.flip-card__back {
  transform: rotateY(180deg);
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.flip-card__back p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.flip-card__back-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.flip-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--blue-main);
  margin-top: 0.75rem;
  font-weight: 600;
}

/* ===================================================
   TEAM FLIP CARDS
   =================================================== */
.team-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.flip-card--team {
  height: 440px;
  min-height: unset;
}
.flip-card--team .flip-card__front {
  padding: 0;
  background: var(--blue-light);
  overflow: hidden;
}
.flip-card--team .flip-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-flip__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(10,20,50,0.82) 100%);
  padding: 2rem 1rem 1rem;
  text-align: center;
}
.team-flip__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.team-flip__role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 500;
}
.team-flip__hint {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  font-style: italic;
}
/* Placeholder front (sans photo) */
.team-flip__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light) 0%, #d0dff4 100%);
  position: absolute;
  inset: 0;
}
.team-flip__initials {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.flip-card--team .flip-card__back {
  padding: 1rem;
  justify-content: flex-start;
  gap: 0.3rem;
  overflow-y: auto;
}
.team-flip__back-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.team-flip__back-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: #7aaee8;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-flip__back-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
@media (max-width: 768px) {
  .team-flip-grid { grid-template-columns: repeat(2, 1fr); }
  .flip-card--team { height: 300px; }
}
@media (max-width: 400px) {
  .team-flip-grid { grid-template-columns: 1fr; }
  .flip-card--team { height: 320px; }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer__logo img { height: 54px; margin-bottom: 1rem; }
.footer__tagline  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.footer__col ul li { margin-bottom: 0.45rem; }
.footer__col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s ease; word-break: break-word; }
.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.footer__social a:hover { background: var(--blue-main); color: var(--white); }

.footer__badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer__badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-up--d1 { transition-delay: 0.1s; }
.fade-in-up--d2 { transition-delay: 0.2s; }
.fade-in-up--d3 { transition-delay: 0.3s; }
.fade-in-up--d4 { transition-delay: 0.4s; }

/* ===================================================
   MEDIA — TABLET (max 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__badge  { display: none; }
  .hero__main   { grid-template-columns: 1fr; }
  .hero__mosaic { display: none; }
  .hero__bg-photo--1 { left: 60%; opacity: 0.35; }
  .hero__bg-photo--2 { display: none; }
  .hero__bg-photo--3 { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero__bg-photos { display: none; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   MEDIA — MOBILE (max 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --navbar-height: 64px;
  }

  .navbar__hamburger { display: flex; }

  .navbar__menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0; right: 0; bottom: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .navbar__menu.open { transform: translateX(0); }

  .navbar__menu li { width: 100%; }
  .navbar__menu li + li::before { display: none; }
  .navbar__menu li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .navbar__menu li a.active::after { display: none; }
  .navbar__menu li a.active {
    background: rgba(107,141,196,0.2);
    border-left: 3px solid var(--blue-main);
    border-radius: 0 8px 8px 0;
  }

  /* Dropdown mobile */
  .navbar__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(107,141,196,0.08);
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar__dropdown.open .navbar__dropdown-menu {
    max-height: 300px;
    transform: none;
  }
  .navbar__dropdown:hover .navbar__dropdown-menu {
    max-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .navbar__dropdown.open:hover .navbar__dropdown-menu {
    max-height: 300px;
  }
  .navbar__dropdown-menu li a {
    padding: 12px 16px 12px 32px !important;
    font-size: 0.92rem !important;
  }

  /* Layouts */
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(107,141,196,0.2); padding: 1rem 0.5rem; }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer__columns { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .episode-card { flex-direction: column; }

  .trust-logos { gap: 1.25rem; }

  /* Typography — mobile */
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero--home .hero__title-main { font-size: clamp(3rem, 12vw, 5rem); }
  .hero--home .hero__title-sub  { font-size: clamp(1.6rem, 7vw, 2.8rem); }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Section headers centering */
  .section-header:not(.section-header--left) {
    text-align: center;
  }
  .section-header .section-label,
  .section-header .section-title,
  .section-header .section-subtitle {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form { padding: 1.5rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__columns { grid-template-columns: 1fr; }
  .platforms-row { flex-direction: column; align-items: center; }
  .photo-grid { grid-template-columns: 1fr; }
  .medias-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   PHOTO GALLERY
   =================================================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.photo-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-light);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.06); }

/* Placeholder (avant que les vraies photos soient ajoutées) */
.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed rgba(107, 141, 196, 0.35);
  color: var(--text-muted);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.photo-placeholder:hover {
  background: rgba(107, 141, 196, 0.12);
  border-color: var(--blue-main);
}
.photo-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.35;
  display: block;
  flex-shrink: 0;
}
.photo-placeholder__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

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

/* ===================================================
   SECTION MÉDIAS (interviews)
   =================================================== */
.medias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.media-item {}

.media-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.media-caption__source {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-main);
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .medias-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================================================
   TOURNÉE — CARTE DE FRANCE
   =================================================== */
.tournee-section {
  background: var(--blue-dark);
}

.section-label--light  { color: rgba(255,255,255,0.5); }
.section-title--light  { color: var(--white); }
.section-subtitle--light { color: rgba(255,255,255,0.65); }

.tournee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tournee-text { padding: 2rem 0; }

.tournee-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tournee-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tournee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-main);
  flex-shrink: 0;
}
.tournee-ville {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.tournee-region {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Carte SVG */
.tournee-map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.france-map {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(107,141,196,0.15));
}

.france-outline {
  fill: rgba(107,141,196,0.06);
  stroke: rgba(255,255,255,0.8);
  stroke-width: 6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* City markers */
.map-city {
  animation: city-appear 0.5s ease-out both;
}
@keyframes city-appear {
  from { opacity: 0; transform: scale(0.3); transform-box: fill-box; transform-origin: center; }
  to   { opacity: 1; transform: scale(1);   transform-box: fill-box; transform-origin: center; }
}
.map-city-dot {
  fill: var(--white);
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}
.map-city-label {
  font-size: 11px;
  fill: rgba(255,255,255,0.85);
  text-anchor: middle;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  font-weight: 600;
  pointer-events: none;
}

@media (max-width: 900px) {
  .tournee-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tournee-map-wrap { order: -1; }
  .france-map { max-width: 300px; }
}

/* ===================================================
   INITIATIVES — LIVRE
   =================================================== */
.livre-photos {
  position: relative;
  width: 280px;
  height: 340px;
}
.livre-photo {
  position: absolute;
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(26,42,74,0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.livre-photo--recto {
  top: 0; left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}
.livre-photo--verso {
  bottom: 0; right: 0;
  z-index: 1;
  transform: rotate(4deg);
  opacity: 0.85;
}
.livre-photos:hover .livre-photo--recto {
  transform: rotate(-6deg) translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,42,74,0.4);
}
.livre-photos:hover .livre-photo--verso {
  transform: rotate(7deg) translateY(6px);
}

/* ===================================================
   INITIATIVES — BADGES #JEVEILLESURTOI
   =================================================== */
.badge-svg-wrap {
  filter: drop-shadow(0 12px 32px rgba(26,42,74,0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.badge-svg-wrap:hover {
  transform: rotate(-5deg) scale(1.05);
  filter: drop-shadow(0 18px 40px rgba(26,42,74,0.45));
}
.badge-photo-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,42,74,0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.badge-photo-wrap:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 56px rgba(26,42,74,0.4);
}
.badge-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  display: block;
}
.badge-hashtag-display {
  display: inline-block;
  background: var(--blue-dark);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
}
.badge-hashtag {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .livre-photos { width: 230px; height: 290px; }
  .livre-photo { width: 170px; height: 255px; }
  .badge-svg-wrap svg { width: 180px; height: 180px; }
}
@media (max-width: 768px) {
  .livre-photos, .badge-svg-wrap { margin: 0 auto; }
}

/* ===================================================
   BACK TO TOP BUTTON
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(107, 141, 196, 0.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--blue-dark); }

@media (max-width: 768px) {
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
}

/* ===================================================
   ANCHOR HEADING LINK
   =================================================== */
.anchor-heading {
  position: relative;
}
.anchor-heading .anchor-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  opacity: 0;
  color: var(--blue-main);
  text-decoration: none;
  vertical-align: middle;
  transition: opacity 0.2s;
}
.anchor-heading:hover .anchor-link {
  opacity: 1;
}
.anchor-link svg {
  width: 0.65em;
  height: 0.65em;
}

/* Justification des blocs de texte en lecture mobile */
@media (max-width: 768px) {
  .faq-answer-inner,
  .card__text,
  .section-subtitle,
  .contact-info__value,
  .dossier-page p,
  .dossier-encart p,
  .dossier-temoignage p,
  .dossier-format__item p {
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
