﻿﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Jost:wght@300;400;500&display=swap');

/* ─── VARIABLES ─── */
:root {
  /* Palette */
  --bleu-clair:    #378ADD;
  --bleu-moyen:    #185FA5;
  --bleu-fonce:    #042C53;
  --bleu-primary:  #2563eb;
  --bleu-primary-hover: #1d4ed8;
  --blanc:         #FFFFFF;
  --blanc-doux:    #F0F7FF;
  --gris-bg:       #F8FAFC;
  --gris-bordure:  #E2E8F0;

  /* Typographie */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', sans-serif;
  --font-inter:    'Inter', 'Jost', sans-serif;

  /* Layout */
  --nav-height:    72px;
  --radius-card:   16px;
  --shadow-card:   0 4px 24px rgba(4, 44, 83, 0.07);
  --shadow-card-hover: 0 16px 48px rgba(4, 44, 83, 0.14);
  --transition:    0.25s ease;
}

/* ─── RESET ─── */
html {
  /* overflow-x: hidden; */
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  background: var(--blanc);
  /* overflow-x: hidden; */
  /* padding-top: 80px; */
}

img, video {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV — DESIGN PREMIUM
═══════════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(4, 44, 83, 0.07);
  box-shadow: 0 1px 24px rgba(4, 44, 83, 0.06);
}

/* Wrapper centré */
.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Barre principale */
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ─── LOGO ─── */

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.nav__logo:hover {
  opacity: 0.82;
}

/* Image logo */
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.nav__logo-mark img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

/* Texte du logo */
.nav__logo-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d6b45;
  line-height: 1.2;
  white-space: nowrap;
}

.nav__logo-accent {
  color: var(--bleu-clair);
}

.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gris-texte);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
  opacity: 0.65;
  align-self: center;
}

/* ─── LIENS DESKTOP ─── */

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--bleu-primary);
  background: rgba(37, 99, 235, 0.07);
}

.nav__link--active {
  color: var(--bleu-primary);
  background: rgba(37, 99, 235, 0.09);
  font-weight: 500;
}

/* ─── ACTIONS (CTA + Hamburger) ─── */

.nav__actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

/* Bouton CTA jaune */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  background: var(--jaune);
  color: var(--bleu-fonce);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(245, 200, 66, 0.42);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav__cta:hover {
  background: var(--jaune-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 200, 66, 0.5);
}

.nav__cta:active {
  transform: translateY(0);
}

.nav__cta-annonce {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  background: var(--bleu-clair);
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(55, 138, 221, 0.30);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav__cta-annonce:hover {
  background: var(--bleu-moyen);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(55, 138, 221, 0.45);
}

.nav__cta-annonce:active {
  transform: translateY(0);
}

/* ─── BOUTONS CONNEXION / INSCRIPTION ─── */

.nav__btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--bleu-fonce);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1.5px solid rgba(4,44,83,0.2);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav__btn-outline:hover {
  border-color: var(--bleu-clair);
  color: var(--bleu-clair);
  background: rgba(55,138,221,0.05);
}

.nav__btn-filled {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--bleu-fonce);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: var(--jaune);
  box-shadow: 0 2px 10px rgba(245,200,66,0.42);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav__btn-filled:hover {
  background: var(--jaune-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,200,66,0.5);
}

/* ─── AUTH mobile ─── */

.nav__mobile-auth {
  display: flex;
  gap: 10px;
  margin: 8px 24px 20px;
}

.nav__mobile-auth .nav__btn-outline {
  flex: 1;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.nav__mobile-auth .nav__btn-filled {
  flex: 1;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: none;
}

/* ─── HAMBURGER ─── */

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px 9px;
  background: none;
  border: 1.5px solid rgba(4, 44, 83, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav__hamburger:hover {
  border-color: var(--bleu-clair);
  background: rgba(55, 138, 221, 0.05);
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--bleu-fonce);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Animation → croix */
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MENU MOBILE ─── */

.nav__mobile {
  overflow: hidden;
  max-height: 0;
  background: var(--blanc);
  border-top: 1px solid rgba(4, 44, 83, 0.06);
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__mobile.open {
  max-height: 560px;
}

.nav__mobile-list {
  list-style: none;
  padding: 10px 24px 6px;
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bleu-fonce);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 44, 83, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.nav__mobile-link::after {
  content: '›';
  font-size: 18px;
  color: var(--gris-doux);
  transition: color 0.2s, transform 0.2s;
}

.nav__mobile-link:hover {
  color: var(--bleu-primary);
  padding-left: 5px;
}

.nav__mobile-link:hover::after {
  color: var(--bleu-primary);
  transform: translateX(3px);
}

.nav__mobile-list li:last-child .nav__mobile-link {
  border-bottom: none;
}

.nav__mobile-cta {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--jaune);
  color: var(--bleu-fonce);
  text-decoration: none;
  margin: 8px 24px 10px;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(245, 200, 66, 0.38);
  transition: background 0.2s, transform 0.15s;
}

.nav__mobile-cta:hover {
  background: var(--jaune-hover);
  transform: translateY(-1px);
}

.nav__mobile-cta-annonce {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--bleu-clair);
  color: #fff;
  text-decoration: none;
  margin: 0 24px 20px;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(55, 138, 221, 0.28);
  transition: background 0.2s, transform 0.15s;
}

.nav__mobile-cta-annonce:hover {
  background: var(--bleu-moyen);
  transform: translateY(-1px);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 860px) {
  .nav__links,
  .nav__cta,
  .nav__cta-annonce,
  .nav__actions .nav__btn-outline,
  .nav__actions .nav__btn-filled {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Boutons auth dans le menu déroulant mobile — toujours visibles */
  .nav__mobile-auth .nav__btn-outline,
  .nav__mobile-auth .nav__btn-filled {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  /* body { padding-top: 90px; } */
  .nav {
    height: 90px;
  }

  .nav__logo-mark {

    width: 88px;
    height: 88px;
  }

  .nav__logo-mark img {
    width: 88px;
    height: 88px;
  }

  .nav__logo-text {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .nav-wrapper {
    padding: 0 14px;
  }

  .nav {
    height: 80px;
  }

  .nav__logo-mark {
    width: 76px;
    height: 76px;
  }

  .nav__logo-mark img {
    width: 76px;
    height: 76px;
  }

  .nav__logo-text {
    font-size: 16px;
  }

  .nav__logo-sub {
    display: none;
  }
}





@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --bleu-clair:  #378ADD;
  --bleu-moyen:  #185FA5;
  --bleu-fonce:  #042C53;
  --bleu-bg:     #EBF4FD;
  --jaune:       #F5C842;
  --jaune-hover: #E0B430;
  --blanc:       #FFFFFF;
  --gris-texte:  #4A5568;
  --gris-doux:   #A0AEC0;
  --vert:        #38A169;
  --font-body:   'Jost', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--blanc);
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #f7fbff 0%, #eaf4fd 60%, #fffdf0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 32px 0 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ─── COLONNE GAUCHE ─── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanc);
  border: 1px solid rgba(55, 138, 221, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gris-texte);
  width: fit-content;
  box-shadow: 0 2px 12px rgba(55, 138, 221, 0.08);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vert);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* Titre */
.hero-title {
  font-family: var(--font-body);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  color: var(--bleu-fonce);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  color: var(--bleu-clair);
}

/* Sous-titre */
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--gris-texte);
  line-height: 1.85;
  max-width: 500px;
}

.hero-sub strong {
  font-weight: 600;
  color: var(--bleu-fonce);
}

/* Boutons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--jaune);
  color: var(--bleu-fonce);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.45);
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--jaune-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 200, 66, 0.5);
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bleu-moyen);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, letter-spacing 0.2s;
}

.btn-secondary:hover {
  color: var(--bleu-fonce);
  letter-spacing: 0.04em;
}

.btn-hero-cv {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--bleu-moyen) 0%, var(--bleu-clair) 100%);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(55, 138, 221, 0.35);
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-hero-cv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-hero-cv:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(55, 138, 221, 0.45);
  background: linear-gradient(135deg, #1a6fc4 0%, #4a9de0 100%);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bleu-moyen);
  background: transparent;
  border: 2px solid var(--bleu-moyen);
  padding: 12px 26px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-hero-outline:hover {
  background: var(--bleu-moyen);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-talents {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--font-body);
  text-decoration: none;
  background: linear-gradient(135deg, #0f5c3a 0%, #38A169 100%);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(56,161,105,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-talents__main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-hero-talents__sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  padding-left: 24px;
}
.btn-hero-talents:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(56,161,105,0.5);
}

/* ── NEWSLETTER ─────────────────────────────── */

.newsletter {
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0d3d73 60%, var(--bleu-moyen) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(55,138,221,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245,200,66,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.newsletter__content {
  flex: 1;
  min-width: 0;
}

.newsletter__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jaune);
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.newsletter__title {
  font-family: var(--font-body);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
}

.newsletter__title span {
  color: var(--jaune);
}

.newsletter__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.newsletter__form-side {
  flex-shrink: 0;
  width: 380px;
}

.newsletter__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}

.newsletter__form-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 10px;
}

.newsletter__form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter__input {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.42);
}

.newsletter__input:focus {
  border-color: var(--jaune);
  background: rgba(255,255,255,0.12);
}

.newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--bleu-fonce);
  background: var(--jaune);
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245,200,66,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
}

.newsletter__btn:hover {
  background: var(--jaune-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245,200,66,0.5);
}

.newsletter__privacy {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.80);
  text-align: center;
  margin: 14px 0 0;
}

.newsletter__stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.newsletter__stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter__stat-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jaune);
  flex-shrink: 0;
}

.newsletter__stat-text {
  display: flex;
  flex-direction: column;
}

.newsletter__stat-num {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.newsletter__stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 860px) {
  .newsletter {
    padding: 60px 0;
  }
  .newsletter__inner {
    flex-direction: column;
    gap: 36px;
  }
  .newsletter__form-side {
    width: 100%;
  }
  .newsletter__sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 48px 0;
  }
  .newsletter__form {
    padding: 24px 20px;
  }
  .newsletter__title {
    font-size: 22px;
  }
  .newsletter__stats {
    gap: 14px;
  }
}

/* Stats inline */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--bleu-fonce);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--gris-doux);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  
  background: #CBD5E0;
  flex-shrink: 0;
}

/* ─── COLONNE DROITE ─── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  width: 100%;
  max-width: 690px;
}

.hero-svg {
  width: 100%;
  height: auto;
  animation: floatSvg 5s ease-in-out infinite;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
    text-align: center;
  }

  .hero-left { align-items: center; }
  .hero-sub  { max-width: 100%; }
  .hero-right { display: none; }

  .hero-stats {
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   UTILITAIRES RÉUTILISABLES
═══════════════════════════════════════════════════════════ */

/* Conteneur centré */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Section de base */
.section {
  padding: 80px 0;
}

.section--blue-bg {
  background: var(--bleu-clair);
}

/* En-tête de section */
.section-header {
  margin-bottom: 48px;
}

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

/* Titres de section */
.section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--bleu-fonce);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-title--white {
  color: var(--blanc);
}

/* Sous-titres de section */
.section-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--gris-texte);
  line-height: 1.6;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.85);
}

.section-subtitle--accent {
  color: var(--bleu-clair);
}

/* Grille générique */
.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}


/* ═══════════════════════════════════════════════════════════
   CARTES OBSTACLES
═══════════════════════════════════════════════════════════ */

.obstacle-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  transition: background 0.25s, transform 0.2s;
}

.obstacle-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

/* Cercle icône */
.card-icon-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--blanc);
  line-height: 1.35;
}

.card-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   PANNEAU SOLUTION (fond blanc)
═══════════════════════════════════════════════════════════ */

.solution-panel {
  margin-top: 48px;
  background: var(--blanc);
  border-radius: 24px;
  padding: 56px 48px 40px;
  box-shadow: 0 8px 40px rgba(4, 44, 83, 0.14);
}

/* Grille 3 colonnes des solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.solution-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Icône checkmark circulaire */
.check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bleu-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
}

.solution-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--bleu-fonce);
  line-height: 1.35;
}

.solution-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--bleu-clair);
  line-height: 1.7;
}

/* Pied du panneau */
.solution-panel__footer {
  border-top: 1px solid #E2E8F0;
  padding-top: 28px;
  text-align: center;
}

.solution-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--bleu-moyen);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, letter-spacing 0.2s;
}

.solution-link:hover {
  color: var(--bleu-fonce);
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — OBSTACLES & APPROCHE
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

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

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solution-panel {
    padding: 40px 24px 32px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .solution-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .solution-item .check-icon {
    margin-top: 2px;
  }

  .solution-item > div:not(.check-icon) {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}


/* ═══════════════════════════════════════════════════════════
   BASE — CARD GÉNÉRIQUE
   (réutilisable sur toutes les pages)
═══════════════════════════════════════════════════════════ */

.card {
  background: var(--blanc);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--gris-bordure);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

/* S'assure que les card-title dans les obstacles (fond bleu) restent blancs */
.obstacle-card .card-title { color: var(--blanc); }


/* ═══════════════════════════════════════════════════════════
   BASE — BOUTONS GÉNÉRIQUES
═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition), color var(--transition);
}

.btn--yellow {
  background: var(--jaune);
  color: var(--bleu-fonce);
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.45);
}

.btn--yellow:hover {
  background: var(--jaune-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 200, 66, 0.55);
}

.btn--blue {
  background: var(--bleu-primary);
  color: var(--blanc);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.32);
}

.btn--blue:hover {
  background: var(--bleu-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.42);
}

.btn--outline {
  background: transparent;
  color: var(--bleu-fonce);
  border: 2px solid var(--bleu-fonce);
}

.btn--outline:hover {
  background: var(--bleu-fonce);
  color: var(--blanc);
}


/* ═══════════════════════════════════════════════════════════
   BADGE GÉNÉRIQUE
═══════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}

.badge--yellow {
  background: rgba(245, 200, 66, 0.18);
  color: #6B4800;
  border: 1px solid rgba(245, 200, 66, 0.55);
}

.badge--green {
  background: rgba(56, 161, 105, 0.14);
  color: #14532d;
  border: 1px solid rgba(56, 161, 105, 0.35);
}

.badge--blue {
  background: rgba(37, 99, 235, 0.09);
  color: var(--bleu-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}


/* ═══════════════════════════════════════════════════════════
   UTILITAIRES TEXTE
═══════════════════════════════════════════════════════════ */

.text-accent { color: var(--jaune); }
.text-center { text-align: center; }


/* ═══════════════════════════════════════════════════════════
   SECTION SERVICES
═══════════════════════════════════════════════════════════ */

.services-section {
  background: var(--gris-bg);
}

/* Surcharge du subtitle dans ce contexte */
.services-section .section-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gris-texte);
  line-height: 1.75;
}

/* Espacement badge → titre → sous-titre */
.services-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.services-section .section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--bleu-fonce);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 0;
}


/* ─── GRILLE 3 CARTES ─── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}


/* ─── CARTE SERVICE ─── */

.service-card {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--jaune);
}

/* Vignette illustrée */
.card__thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .card__img {
  transform: scale(1.04);
}

/* Corps texte */
.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bleu-fonce);
  line-height: 1.35;
}

.card__text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gris-texte);
  line-height: 1.75;
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bleu-moyen);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: gap var(--transition), color var(--transition),
              border-color var(--transition);
}

.card__link:hover {
  gap: 8px;
  color: var(--bleu-fonce);
  border-bottom-color: var(--jaune);
}


/* ─── BOUTON CTA ─── */

.services-cta {
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SERVICES
═══════════════════════════════════════════════════════════ */

/* Tablette : 2 colonnes */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Mobile : 1 colonne */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section .section-header {
    margin-bottom: 36px;
  }

  .card__body {
    padding: 20px;
  }

  .btn {
    width: 100%;
    padding: 15px 24px;
  }
}


/* ═══════════════════════════════════════════════════════════
   SECTION ARTICLES — DESIGN MINIMALISTE ÉPURÉ
═══════════════════════════════════════════════════════════ */

.articles-section {
  background: var(--blanc);
  padding: 56px 0;
}

.articles-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.articles-section .section-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--bleu-fonce);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.articles-section .section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-texte);
  line-height: 1.6;
}

/* ─── GRILLE ─── */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* ─── CARTE ARTICLE ─── */

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gris-bordure);
  box-shadow: 0 2px 10px rgba(4, 44, 83, 0.05);
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.article-card:hover {
  border-color: var(--jaune);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 44, 83, 0.10);
}

/* ─── IMAGE ─── */

.article-card__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  flex-shrink: 0;
}

.article-card:hover .article-card__cover .card__img {
  transform: scale(1.04);
}

/* Badge catégorie */
.article-card__category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jaune);
  color: var(--bleu-fonce);
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 1;
}

/* ─── CORPS ─── */

.article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

/* Méta */
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card__date,
.article-card__read {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6b7280;
}

.article-card__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--bleu-clair);
  font-weight: 500;
}

.article-card__dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gris-doux);
  flex-shrink: 0;
}

/* Titre */
.article-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bleu-fonce);
  line-height: 1.45;
  transition: color var(--transition);
}

.article-card:hover .article-card__title {
  color: var(--bleu-moyen);
}

/* Description : 2 lignes max */
.article-card__text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gris-texte);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Lien */
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--bleu-moyen);
  text-decoration: none;
  margin-top: 4px;
  padding: 6px 10px;
  min-height: 36px;
  transition: color var(--transition), gap var(--transition);
}

.article-card__link svg {
  transition: transform var(--transition);
}

.article-card__link:hover {
  color: var(--bleu-fonce);
  gap: 8px;
}

.article-card__link:hover svg {
  transform: translateX(3px);
}

/* ─── LIEN CTA ─── */

.articles-cta {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.articles-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bleu-moyen);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--jaune);
  transition: color var(--transition), gap var(--transition);
}

.articles-cta__link svg {
  transition: transform var(--transition);
}

.articles-cta__link:hover {
  color: var(--bleu-fonce);
  gap: 10px;
}

.articles-cta__link:hover svg {
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — ARTICLES
═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .articles-grid .article-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .articles-section {
    padding: 40px 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .articles-grid .article-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}


/* ═══════════════════════════════════════════════════════════
   BADGE GLASS (pour sections sombres)
═══════════════════════════════════════════════════════════ */

.badge--glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--blanc);
  border: 1px solid rgba(255, 255, 255, 0.3);
}


/* ═══════════════════════════════════════════════════════════
   SECTION PARTENAIRE
═══════════════════════════════════════════════════════════ */

.partner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0f3d7a 50%, var(--bleu-moyen) 100%);
  padding: 80px 0;
}

/* Cercles décoratifs d'arrière-plan */
.partner-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.partner-bg-circle--1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.18) 0%, transparent 70%);
}

.partner-bg-circle--2 {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.08) 0%, transparent 70%);
}

/* Container positionné au-dessus des cercles */
.partner-container {
  position: relative;
  z-index: 1;
}

/* En-tête */
.partner-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.partner-section .section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 0;
}

.partner-section .section-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
}


/* ─── LAYOUT 2 COLONNES ─── */

.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.partner-col__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}


/* ─── CARTES AVANTAGES (glassmorphism) ─── */

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22),
              0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* Icône de la carte avantage */
.benefit-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 200, 66, 0.18);
  border: 1px solid rgba(245, 200, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jaune);
}

.benefit-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blanc);
  line-height: 1.3;
}

.benefit-card__text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Bouton CTA colonne gauche */
.partner-cta {
  align-self: flex-start;
}


/* ─── PANNEAU FORMES DE PARTENARIAT (glass card) ─── */

.glass-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-forms {
  padding: 36px 32px;
}

.partner-forms__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-forms__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-forms__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.partner-forms__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Icône checkmark */
.partner-forms__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 200, 66, 0.15);
  border: 1px solid rgba(245, 200, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jaune);
  margin-top: 1px;
}

.partner-forms__name {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--blanc);
  line-height: 1.3;
  margin-bottom: 2px;
}

.partner-forms__desc {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — PARTENAIRE
═══════════════════════════════════════════════════════════ */

/* Tablette & Mobile : 1 colonne */
@media (max-width: 860px) {
  .partner-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .partner-section {
    padding: 56px 0;
  }

  .partner-section .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .partner-section {
    padding: 44px 0;
  }

  .partner-forms {
    padding: 24px 20px;
  }

  .benefit-card {
    padding: 14px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMMENT ÇA FONCTIONNE — process-section
═══════════════════════════════════════════════════════════ */

.process-section {
  background: #fff;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 52px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 16px;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jaune);
  color: var(--bleu-fonce);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,200,66,0.35);
}

.process-step__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
}

.process-step__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--bleu-fonce);
  margin: 0;
}

.process-step__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-texte);
  line-height: 1.65;
  margin: 0;
}

.process-step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--jaune), var(--bleu-clair));
  margin-top: 27px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    max-width: 400px;
    width: 100%;
    gap: 16px;
  }
  .process-step__body {
    max-width: none;
  }
  .process-step__connector {
    width: 2px;
    height: 32px;
    margin: 0 0 0 27px;
    background: linear-gradient(180deg, var(--jaune), var(--bleu-clair));
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION DERNIÈRES OFFRES
═══════════════════════════════════════════════════════════ */

.offres-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #f8fafc 100%);
}

.offres-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.offres-header__cta { flex-shrink: 0; }

/* ── Section offres : conteneur lo-list (cv section) ── */
.lo-list { display: flex; flex-direction: column; gap: 16px; }

/* ══════════════════════════════════════
   OFFRES HOMEPAGE — GRILLE OIC
══════════════════════════════════════ */
.oic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.oic-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .15s;
}
.oic-card:hover {
  border-color: #185FA5;
  box-shadow: 0 6px 24px rgba(24,95,165,0.12);
  transform: translateY(-2px);
}

/* En-tête : avatar + titre */
.oic-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.oic-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #042C53;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.oic-card__info { flex: 1; min-width: 0; }
.oic-card__title {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #042C53;
  line-height: 1.3;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oic-card:hover .oic-card__title { color: #185FA5; }
.oic-card__company {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Localisation */
.oic-card__loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #6b7280;
}

/* Badge type */
.oic-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.01em; white-space: nowrap;
}
.oic-badge--cdi          { background: #dbeafe; color: #1d4ed8; }
.oic-badge--cdd          { background: #fef9c3; color: #92400e; }
.oic-badge--stage        { background: #dcfce7; color: #15803d; }
.oic-badge--freelance    { background: #ede9fe; color: #6d28d9; }
.oic-badge--bourse       { background: #fce7f3; color: #9d174d; }
.oic-badge--tempspartiel { background: #f3f4f6; color: #374151; }
.oic-badge--autre        { background: #f1f5f9; color: #475569; }

/* Pied de carte */
.oic-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f2f5;
}
.oic-card__date {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6b7280;
}
.oic-card__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #185FA5;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.oic-card:hover .oic-card__cta { gap: 7px; }

@media (max-width: 900px) {
  .oic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .oic-grid { grid-template-columns: 1fr; }
  .offres-header { flex-direction: column; align-items: flex-start; }
}

/* ── Bouton retour flottant ── */
.back-fab {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #042C53;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 20px 11px 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(4,44,83,0.35);
  transition: background .18s, transform .18s, box-shadow .18s;
  text-decoration: none;
}
.back-fab:hover {
  background: #185FA5;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4,44,83,0.42);
}
.back-fab svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .back-fab span { display: none; }
  .back-fab { padding: 12px; border-radius: 50%; }
}

/* ═══════════════════════════════════════════════════════════
   MODALS AUTH — Connexion / Inscription
═══════════════════════════════════════════════════════════ */

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,44,83,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 20px;
}

.auth-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.auth-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 24px 80px rgba(4,44,83,0.18);
  transform: translateY(20px);
  transition: transform 0.28s ease;
}

.auth-overlay.active .auth-modal {
  transform: translateY(0);
}

.auth-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.auth-modal__close:hover {
  background: #e2e8f0;
  color: var(--bleu-fonce);
}

.auth-modal__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bleu-fonce);
  margin-bottom: 24px;
}

.auth-modal__logo-icon {
  width: 34px; height: 34px;
  background: var(--bleu-fonce);
  color: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.auth-modal__brand strong { color: var(--bleu-clair); }

.auth-modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--bleu-fonce);
  margin: 0 0 6px;
  line-height: 1.2;
}

.auth-modal__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-texte);
  margin: 0 0 28px;
}

/* Formulaire */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.auth-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--bleu-fonce);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-form__forgot {
  font-size: 11px;
  font-weight: 500;
  color: var(--bleu-clair);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.auth-form__forgot:hover { text-decoration: underline; }

.auth-form__input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bleu-fonce);
  background: #f8fafc;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.auth-form__input::placeholder { color: #a0aec0; }

.auth-form__input:focus {
  border-color: var(--bleu-clair);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.12);
  background: #fff;
}

.auth-form__select { cursor: pointer; }

.auth-form__submit {
  margin-top: 4px;
  background: var(--bleu-fonce);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.auth-form__submit:hover {
  background: var(--bleu-moyen);
  transform: translateY(-1px);
}

.auth-modal__switch {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-texte);
  text-align: center;
  margin: 20px 0 0;
}

.auth-modal__switch-link {
  color: var(--bleu-clair);
  font-weight: 500;
  text-decoration: none;
}

.auth-modal__switch-link:hover { text-decoration: underline; }

@media (max-width: 500px) {
  .auth-modal { padding: 32px 22px 28px; }
  .auth-form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE SERVICES — grille de cartes (page Services.html)
═══════════════════════════════════════════════════════════ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 24px;
  border: 1.5px solid #e8eef6;
  border-radius: var(--radius-card);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.svc-item:hover {
  border-color: var(--jaune);
  box-shadow: 0 8px 28px rgba(245,200,66,0.13);
  transform: translateY(-3px);
}

.svc-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-item__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--bleu-fonce);
  line-height: 1.3;
  margin: 0;
}

.svc-item__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-texte);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.svc-item__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bleu-clair);
  text-decoration: none;
  margin-top: 4px;
  transition: color var(--transition);
}

.svc-item__link:hover {
  color: var(--bleu-moyen);
}

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

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

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (sous-pages)
═══════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 60%, #fff9e6 100%);
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(4,44,83,0.07);
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--bleu-fonce);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--gris-texte);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGES DÉTAIL / SOUS-PAGES — classes partagées
═══════════════════════════════════════════════════════════ */

/* Lien retour standard */
.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #185FA5;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.page-back-link:hover { color: var(--bleu-fonce); }

/* Carte contenu principal */
.pub-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px;
}
.pub-card__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--bleu-fonce);
  margin: 16px 0 12px;
}
.pub-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 24px;
}
.pub-card__section {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1.5px solid #f1f5f9;
}
.pub-card__section-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--bleu-fonce);
  margin: 0 0 14px;
}
.pub-card__checklist { display: flex; flex-direction: column; gap: 8px; }
.pub-card__check-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pub-card__check-icon {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tags inline */
.pub-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pub-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  color: #374151;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Layout détail 2 colonnes */
.pub-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* Colonne prix sticky */
.pub-sidebar { position: sticky; top: 24px; }
.pub-price-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px;
}
.pub-price-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #94a3b8;
  margin: 0 0 8px;
}
.pub-price-card__amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--bleu-primary);
  margin: 0 0 4px;
}
.pub-price-card__currency {
  font-family: var(--font-body);
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 24px;
}
.pub-price-card__delay {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #f8fafc;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #374151;
  margin-bottom: 16px;
}
.pub-price-card__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  margin: 12px 0 0;
  text-align: center;
}

/* Responsive layout détail */
@media (max-width: 760px) {
  .pub-detail-layout {
    grid-template-columns: 1fr;
  }
  .pub-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   CVthèque TARIF — classes des cartes packs
═══════════════════════════════════════════════════════════ */

.cvt-tarif-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #bae6fd;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 36px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #0369a1;
}
.cvt-tarif-info svg { color: #0284c7; }

.cvt-tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.cvt-tarif-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.cvt-tarif-card:hover {
  box-shadow: 0 8px 28px rgba(4,44,83,.1);
  transform: translateY(-3px);
}
.cvt-tarif-card--featured {
  background: linear-gradient(145deg, var(--bleu-fonce), var(--bleu-primary));
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(4,44,83,.25);
}

.cvt-tarif-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jaune);
  color: var(--bleu-fonce);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: .04em;
}

.cvt-tarif-card__credits {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--bleu-fonce);
  line-height: 1;
  margin: 0;
}
.cvt-tarif-card--featured .cvt-tarif-card__credits { color: var(--jaune); }

.cvt-tarif-card__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 4px 0 18px;
}
.cvt-tarif-card--featured .cvt-tarif-card__label { color: rgba(255,255,255,.6); }

.cvt-tarif-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bleu-fonce);
  margin: 0 0 4px;
}
.cvt-tarif-card--featured .cvt-tarif-card__price { color: #fff; }

.cvt-tarif-card__unit {
  font-family: var(--font-body);
  font-size: 12px;
  color: #94a3b8;
  margin: 0 0 22px;
}
.cvt-tarif-card--featured .cvt-tarif-card__unit { color: rgba(255,255,255,.5); }

.cvt-tarif-card__cta {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px 16px;
}
.cvt-tarif-card__disabled {
  font-family: var(--font-body);
  font-size: 12px;
  color: #94a3b8;
  margin-top: auto;
}

.cvt-tarif-footer {
  font-family: var(--font-body);
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION WHATSAPP
═══════════════════════════════════════════════════════════ */

.whatsapp-section {
  background: var(--gris-bg);
  padding: 72px 0;
}

/* Carte centrale */
.whatsapp-card {
  max-width: 660px;
  margin: 0 auto;
  background: var(--blanc);
  border-radius: 24px;
  border: 1px solid var(--gris-bordure);
  box-shadow: 0 4px 32px rgba(4, 44, 83, 0.07);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Icône avec pulsation */
.whatsapp-card__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.whatsapp-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  animation: waPulse 2.4s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.18); opacity: 0.5; }
}

.whatsapp-card__icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Texte */
.whatsapp-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.whatsapp-card__title {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--bleu-fonce);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.whatsapp-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-texte);
  line-height: 1.7;
  max-width: 460px;
}

/* Bouton WhatsApp */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn--whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.48);
}

/* Statistiques */
.whatsapp-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--gris-bordure);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.whatsapp-stat__num {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--bleu-fonce);
  letter-spacing: -0.02em;
}

.whatsapp-stat__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--gris-doux);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.whatsapp-stat__divider {
  width: 1px;
  height: 28px;
  background: var(--gris-bordure);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */

.footer {
  background: #0f172a;
}

/* Ligne dégradée en haut du footer */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--jaune) 0%, var(--bleu-clair) 50%, var(--bleu-moyen) 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 48px;
  padding: 56px 0 52px;
}

/* ─── COLONNES ─── */

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Marque */
.footer__brand {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--blanc);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  padding: 4px 0;
  min-height: 36px;
}

.footer__brand-accent {
  color: var(--jaune);
}

.footer__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* Bouton outline blanc */
.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--blanc);
}

/* Titre de colonne */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

/* Liens de navigation */
.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav-list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__nav-list a:hover {
  color: var(--jaune);
  padding-left: 4px;
}

/* Liste contact */
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jaune);
}

.footer__contact-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-all;
  padding: 8px 0;
  display: block;
  min-height: 36px;
}

a.footer__contact-link:hover {
  color: var(--blanc);
}

/* ─── RÉSEAUX SOCIAUX ─── */

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.footer__social:hover {
  background: rgba(245, 200, 66, 0.15);
  border-color: rgba(245, 200, 66, 0.4);
  color: var(--jaune);
  transform: translateY(-2px);
}


/* ─── NEWSLETTER FOOTER ─── */

.footer__newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}
.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer__newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.footer__newsletter-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer__newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.footer__newsletter-input {
  width: 280px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-input:focus { border-color: rgba(255,255,255,0.35); }
.footer__newsletter-btn {
  padding: 11px 22px;
  background: var(--jaune, #F5C842);
  color: #042C53;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.footer__newsletter-btn:hover { opacity: .88; }

@media (max-width: 768px) {
  .footer__newsletter-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__newsletter-form { width: 100%; }
  .footer__newsletter-input { flex: 1; width: auto; }
}

/* ─── BAS DU FOOTER ─── */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

.footer__copyright,
.footer__credit {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — WHATSAPP & FOOTER
═══════════════════════════════════════════════════════════ */

/* ── Tablette (≤ 860px) ── */
@media (max-width: 860px) {
  .whatsapp-card {
    padding: 36px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    padding: 48px 0 44px;
  }

  /* Colonne marque : toute la largeur */
  .footer-col:first-child {
    grid-column: 1 / -1;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  /* CTA plus large */
  .footer-col:first-child .btn--outline-white {
    padding: 12px 28px;
    min-height: 44px;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .whatsapp-section {
    padding: 48px 0;
  }

  .whatsapp-card {
    padding: 32px 22px;
    gap: 16px;
    border-radius: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 36px 0 28px;
  }

  /* Séparateurs entre chaque colonne */
  .footer-col {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-col:first-child {
    grid-column: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 24px;
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }

  /* CTA pleine largeur */
  .footer-col:first-child .btn--outline-white {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    min-height: 46px;
    text-align: center;
  }

  /* Navigation : grille 2 cols pour compacité */
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  /* Footer bottom */
  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    text-align: center;
  }

  .footer__legal {
    order: -1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .footer__copyright,
  .footer__credit {
    font-size: 11.5px;
  }
}

/* ── Petits mobiles (≤ 480px) ── */
@media (max-width: 480px) {
  .footer__grid {
    padding: 28px 0 20px;
  }

  .footer-col {
    padding: 18px 0;
  }

  .footer__col-title {
    font-size: 10.5px;
    margin-bottom: 10px;
  }

  .footer__nav-list {
    gap: 10px 12px;
  }

  .footer__nav-list a {
    font-size: 13.5px;
  }

  .footer__contact-list {
    gap: 10px;
  }

  .footer__contact-link {
    font-size: 12.5px;
  }

  .footer__text {
    font-size: 13px;
  }

  .footer__brand {
    font-size: 16px;
  }
}

/* ── Très petits écrans (≤ 400px) ── */
@media (max-width: 400px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    padding: 14px 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — LIENS LÉGAUX
═══════════════════════════════════════════════════════════ */

.footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__legal-link {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-link:hover,
.footer__legal-link--active {
  color: var(--jaune);
}

.footer__legal-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   POPUP DE BIENVENUE
═══════════════════════════════════════════════════════════ */

/* ── Animations ── */
@keyframes welcomeFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes welcomeZoomIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

@keyframes welcomePulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);   }
}

/* ── Overlay ── */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 44, 83, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: welcomeFadeIn 0.35s ease both;
}

.welcome-overlay.hidden {
  display: none;
}

/* ── Carte ── */
.welcome-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: 0 24px 80px rgba(4, 44, 83, 0.28), 0 8px 24px rgba(0,0,0,0.12);
  animation: welcomeZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ── Bouton fermer ── */
.welcome-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.welcome-modal__close:hover {
  background: #e2e8f0;
  color: var(--bleu-fonce);
  transform: rotate(90deg);
}

.welcome-modal__close[hidden] { display: none; }

/* ── En-tête marque ── */
.welcome-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.welcome-modal__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--bleu-fonce);
  text-decoration: none;
}

.welcome-modal__brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bleu-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jaune);
  flex-shrink: 0;
}

.welcome-modal__brand-accent { color: var(--bleu-clair); }

.welcome-modal__badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vert);
  background: rgba(56, 161, 105, 0.1);
  border: 1px solid rgba(56, 161, 105, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Titre & texte ── */
.welcome-modal__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--bleu-fonce);
  line-height: 1.3;
  margin-bottom: 10px;
}

.welcome-modal__title em {
  font-style: normal;
  color: var(--bleu-clair);
}

.welcome-modal__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Bouton WhatsApp ── */
.welcome-modal__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: welcomePulse 2s ease-in-out infinite;
  margin-bottom: 14px;
}

.welcome-modal__whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  animation: none;
}

.welcome-modal__whatsapp.done {
  background: #16a34a;
  animation: none;
}

/* ── Checkbox ── */
.welcome-modal__already {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  cursor: pointer;
  user-select: none;
}

.welcome-modal__already input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.welcome-modal__already input[type="checkbox"]:checked {
  background: #25D366;
  border-color: #25D366;
}

.welcome-modal__already input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.welcome-modal__already span {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748b;
}

/* ── Séparateur ── */
.welcome-modal__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.welcome-modal__divider::before,
.welcome-modal__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* ── Boutons d'action ── */
.welcome-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.welcome-modal__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.welcome-modal__action--primary {
  background: var(--bleu-fonce);
  color: #fff;
  border-color: var(--bleu-fonce);
}

.welcome-modal__action--primary:hover:not(.locked) {
  background: var(--bleu-moyen);
  border-color: var(--bleu-moyen);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 44, 83, 0.25);
}

.welcome-modal__action--secondary {
  background: #fff;
  color: var(--bleu-fonce);
  border-color: #e2e8f0;
}

.welcome-modal__action--secondary:hover:not(.locked) {
  border-color: var(--bleu-clair);
  color: var(--bleu-clair);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(55, 138, 221, 0.15);
}

.welcome-modal__action.locked {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.3);
}

.welcome-modal__action-icon {
  font-size: 22px;
  line-height: 1;
}

/* ── Message de verrouillage ── */
.welcome-modal__lock-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748b;
  margin-top: 14px;
  transition: opacity 0.3s;
}

.welcome-modal__lock-hint svg {
  flex-shrink: 0;
}

.welcome-modal__lock-hint.unlocked {
  opacity: 0;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .welcome-modal {
    padding: 28px 22px 26px;
    border-radius: 16px;
  }

  .welcome-modal__title { font-size: 19px; }

  .welcome-modal__actions {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   BARRE DE RECHERCHE HERO — Index.html
═══════════════════════════════════════════════════════════ */
.hero-search-wrap {
  margin: 10px 0 28px;
}

/* Carte flottante blanche */
.hero-search-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 10px 10px 10px 0;
  box-shadow:
    0 24px 64px rgba(4,44,83,.24),
    0 4px 16px rgba(4,44,83,.10),
    inset 0 0 0 1px rgba(255,255,255,.6);
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: box-shadow .3s ease;
}
.hero-search-card:focus-within {
  box-shadow:
    0 28px 72px rgba(4,44,83,.28),
    0 4px 16px rgba(55,138,221,.18),
    inset 0 0 0 1px rgba(55,138,221,.3);
}

/* Groupe de champ (label + input) */
.hero-search-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 14px;
  transition: background 0.2s ease;
}
.hero-search-group:focus-within {
  background: rgba(55, 138, 221, 0.04);
}
.hero-search-group + .hero-search-group::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 1px;
  background: #e8eef8;
}
.hero-search-group__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bleu-clair);
  margin-bottom: 5px;
}
.hero-search-group__label svg { flex-shrink: 0; }

.hero-search-group input,
.hero-search-group select {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bleu-fonce);
  background: transparent;
  width: 100%;
  padding: 0;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.2s ease;
}
.hero-search-group input::placeholder { color: #9db8d8; font-weight: 400; }
.hero-search-group input:focus::placeholder { color: #bccfe6; }
.hero-search-group select { cursor: pointer; color: var(--bleu-fonce); }

/* Bouton Rechercher */
.hero-search-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--bleu-fonce);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 0 32px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  min-width: 152px;
  min-height: 54px;
  transition: background .25s ease, transform .22s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.hero-search-cta:hover {
  background: var(--bleu-clair);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(55,138,221,.4);
}
.hero-search-cta svg { flex-shrink: 0; }

/* Tags populaires */
.hero-search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-search-tags__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--bleu-moyen);
  text-transform: uppercase;
}
.hero-search-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(55, 138, 221, 0.08);
  border: 1.5px solid rgba(55, 138, 221, 0.22);
  color: var(--bleu-fonce);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s ease;
}
.hero-search-tag:hover {
  background: var(--jaune);
  border-color: var(--jaune);
  color: var(--bleu-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245,200,66,.35);
}

/* Responsive */
@media (max-width: 700px) {
  .hero-search-card {
    flex-direction: column;
    padding: 0 0 10px;
    border-radius: 18px;
  }
  .hero-search-group + .hero-search-group::before {
    top: 0; bottom: auto;
    left: 16px; right: 16px;
    width: auto; height: 1px;
  }
  .hero-search-group { padding: 14px 20px; }
  .hero-search-cta {
    margin: 0 12px 0;
    border-radius: 12px;
    padding: 15px 20px;
    min-height: 48px;
    justify-content: center;
  }
  .hero-search-tags { margin-top: 16px; }
}


/* ═══════════════════════════════════════════════════════════
   OPTIMISATIONS MOBILE GLOBALES — priorité mobile-first
═══════════════════════════════════════════════════════════ */

/* ── iOS Safari : empêche le zoom automatique sur les inputs ── */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ── Réduction de padding container à 600px ── */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .nav-wrapper {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .hero-container {
    padding: 0 14px;
  }

  .hero {
    padding: 16px 0 40px;
  }
}

/* ── Tablette (768px) : ajustements padding ── */
@media (max-width: 768px) {
  .hero-container {
    gap: 32px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .process-steps {
    padding: 0 8px;
  }
}

/* ── Petits mobiles (375px) ── */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }

  .hero-container {
    padding: 0 14px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 12px 0 36px;
  }

  /* Stats hero compactées */
  .hero-stats {
    gap: 12px;
  }

  .hero-stat-num {
    font-size: 17px;
  }

  .hero-stat-divider {
    height: 24px;
  }
}

/* ── Touch targets : hauteur min 44px sur tous les boutons ── */
.btn,
.btn-primary,
.nav__btn-outline,
.nav__btn-filled,
.nav__cta,
.nav__cta-annonce,
.nav__mobile-cta,
.nav__mobile-cta-annonce,
.fc-btn-primary,
.fc-btn-outline {
  min-height: 44px;
}

/* ── Empêcher tout overflow horizontal ── */
.hero,
.hero-container,
.section,
.container,
.split-cta-section,
.split-cta-inner,
.formation-card,
.services-section,
.partner-section,
.offres-section,
.whatsapp-section,
.footer {
  max-width: 100vw;
}

/* ── Offres header : empilement mobile ── */
@media (max-width: 480px) {
  .offres-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .offres-header__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── WhatsApp section : padding réduit ── */
@media (max-width: 400px) {
  .whatsapp-card {
    padding: 28px 18px;
    border-radius: 18px;
  }
}

/* ── Partner section : padding réduit ── */
@media (max-width: 400px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-forms {
    padding: 22px 18px;
  }
}

/* ── Navigation mobile améliorée ── */
@media (max-width: 860px) {
  .nav__mobile-list {
    padding: 8px 20px 4px;
  }

  .nav__mobile-link {
    padding: 13px 0;
    font-size: 15px;
  }

  .nav__mobile-cta {
    margin: 6px 20px 16px;
    padding: 13px;
  }

  .nav__mobile-auth {
    margin: 6px 20px 18px;
    gap: 10px;
  }
}

/* ── Carte hero search (hs2) : amélioration mobile ── */
@media (max-width: 400px) {
  .hs2-card {
    padding: 6px 6px 12px;
    border-radius: 16px;
  }

  .hs2-chips {
    gap: 5px;
    padding: 10px 6px 0;
  }

  .hs2-chip {
    font-size: 12px;
    padding: 5px 11px;
  }
}

/* ── Boutons hero-actions ── */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary {
    justify-content: center;
    padding: 15px 24px;
  }

  .btn-secondary {
    text-align: center;
    padding: 8px 0;
  }
}

/* ── Split-CTA section ── */
@media (max-width: 480px) {
  .split-cta-section {
    padding: 56px 0;
  }

  .split-cta-inner {
    padding: 0 16px;
  }

  .split-cta-btn {
    width: 100%;
    padding: 22px 28px;
    min-width: unset;
  }
}

/* ── Grille services ── */
@media (max-width: 480px) {
  .services-section .section-header {
    margin-bottom: 28px;
  }
}

/* ── Auth modal mobile ── */
@media (max-width: 400px) {
  .auth-modal {
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .auth-modal__title {
    font-size: 22px;
  }
}

/* ── page-hero (sous-pages) ── */
@media (max-width: 600px) {
  .page-hero {
    padding: 52px 0 44px;
  }
}

@media (max-width: 400px) {
  .page-hero {
    padding: 40px 0 36px;
  }
}

/* ── Sécurité générale overflow ── */
* {
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGES D'ERREUR (404, 403, 419, 500)
═══════════════════════════════════════════════════════════ */
.error-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(160deg, #f8fafc 0%, #eef4fb 100%);
}

.error-page__inner {
  text-align: center;
  max-width: 480px;
}

.error-page__code {
  font-size: clamp(5rem, 18vw, 8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -4px;
}

.error-page__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bleu-fonce);
  margin: 0 0 14px;
}

.error-page__desc {
  color: #64748b;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 32px;
}

.error-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ─── SECTION ANNONCEURS ─── */
.annonceur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.annonceur-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.annonceur-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px 16px;
}
.annonceur-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,200,66,.15);
  margin-bottom: 12px;
}
.annonceur-card__title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
}
.annonceur-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .annonceur-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 480px) {
  .annonceur-cards {
    grid-template-columns: 1fr;
  }
}
