/* ============================================================================
   ITRAVEL SERVICES — Design System v2
   ============================================================================
   Direction : Editorial Travel · couleurs officielles du logo ITravel
   Bleu marine #024aaa + Vert ITravel #03bd65 sur fond ivoire chaud
   Sections sombres allégées, plus de luminosité, parfaitement responsive
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

/* ============ DESIGN TOKENS ============ */
:root {
  /* COULEURS OFFICIELLES DU LOGO ITRAVEL */
  --brand-blue:        #024aaa;        /* Bleu marine — couleur principale */
  --brand-blue-dark:   #013478;        /* Bleu plus profond */
  --brand-blue-deep:   #001f4d;        /* Pour les fonds sombres au lieu de noir */
  --brand-blue-soft:   #e8f0fc;        /* Bleu très clair pour les fonds */
  --brand-green:       #03bd65;        /* Vert ITravel — couleur d'action */
  --brand-green-dark:  #029950;        /* Vert plus foncé */
  --brand-green-soft:  #e6f9ef;        /* Vert très clair pour les fonds */

  /* Bases neutres chaleureuses */
  --color-cream:       #faf7f2;        /* Fond principal ivoire chaud */
  --color-cream-deep:  #f3ede2;        /* Section variation */
  --color-sand:        #ebe4d6;
  --color-ink:         #1a1f2e;        /* Texte principal — bleu marine très foncé, pas noir pur */
  --color-ink-soft:    #2a3142;
  --color-stone:       #6b6e7a;
  --color-mist:        #d4d6dd;

  /* Alias sémantiques */
  --text-primary:      var(--color-ink);
  --text-secondary:    var(--color-ink-soft);
  --text-muted:        var(--color-stone);
  --bg-primary:        var(--color-cream);
  --bg-secondary:      var(--color-cream-deep);
  --accent:            var(--brand-green);
  --accent-hover:      var(--brand-green-dark);

  /* Typographie */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', 'Georgia', serif;

  /* Espacements */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(2, 74, 170, 0.06);
  --shadow-md: 0 4px 16px rgba(2, 74, 170, 0.08);
  --shadow-lg: 0 12px 40px rgba(2, 74, 170, 0.10);
  --shadow-xl: 0 24px 80px rgba(2, 74, 170, 0.14);
  --shadow-green: 0 6px 24px rgba(3, 189, 101, 0.30);
  --shadow-blue:  0 6px 24px rgba(2, 74, 170, 0.30);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
  --duration-fast: 200ms;
  --duration: 400ms;
  --duration-slow: 800ms;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHIE ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.h-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
}

.h-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-green);
  font-variation-settings: normal;
}

.h-1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 450; line-height: 1.02; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(1.625rem, 3.5vw, 2.625rem); font-weight: 450; letter-spacing: -0.025em; }
.h-3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 500; letter-spacing: -0.02em; }

.h-1 em, .h-2 em, .h-3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-green);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-block;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 60ch;
}

.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  position: relative;
}

.section {
  padding: clamp(3.5rem, 9vw, 8rem) 0;
  position: relative;
}

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

/* Bouton primaire — vert ITravel */
.btn-primary {
  background: var(--brand-green);
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(3, 189, 101, 0.4);
}
.btn-primary::after {
  content: '→';
  display: inline-block;
  transition: transform var(--duration) var(--ease-out);
  font-weight: 400;
}
.btn-primary:hover::after {
  transform: translateX(4px);
}

/* Bouton secondaire — bleu ITravel */
.btn-blue {
  background: var(--brand-blue);
  color: white;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
}

/* Bouton outline */
.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-outline:hover {
  background: var(--brand-blue);
  color: white;
}

/* Bouton outline blanc */
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  background: white;
  color: var(--brand-blue);
  border-color: white;
}

/* Bouton outline clair (fond sombre, témoignages home) */
.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-light:hover {
  background: white;
  color: var(--brand-blue);
  border-color: white;
  transform: translateY(-2px);
}

/* Conteneur CTA témoignages (page home) */
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Bouton WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* Bouton ghost */
.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  padding: 0.625rem 1.125rem;
}
.btn-ghost:hover {
  background: var(--brand-blue-soft);
}

/* Bouton XL */
.btn-xl { padding: 1.1rem 2rem; font-size: 0.9875rem; }

/* ============ NAVIGATION ============ */
/* Site header sticky (topbar + navbar empilés, plus de chevauchement) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
}

.site-header.scrolled .nav-wrapper {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 0 rgba(2, 74, 170, 0.08);
}

.nav-wrapper {
  position: relative;
  padding: 0.875rem 0;
  background: var(--color-cream);
  transition: all var(--duration) var(--ease-out);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.nav-link.active {
  color: var(--brand-blue);
  font-weight: 500;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: white;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Topbar — bleu marine au lieu de noir */
.topbar {
  background: var(--brand-blue);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.125rem 0.625rem;
  background: rgba(3, 189, 101, 0.2);
  border: 1px solid rgba(3, 189, 101, 0.4);
  border-radius: var(--radius-pill);
  color: white;
  font-weight: 500;
}

.topbar-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: pulse 2s infinite;
}

.topbar-info {
  opacity: 0.85;
  font-size: 0.7rem;
}

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

/* ============ HERO ============ */
.hero {
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Décor de fond - cercles colorés subtils */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 189, 101, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 74, 170, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--brand-green-soft);
  border: 1px solid rgba(3, 189, 101, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green-dark);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
}

.hero-title { margin-bottom: 1.5rem; }
.hero-lead { margin-bottom: 2.25rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(2, 74, 170, 0.12);
}

.hero-trust-item { display: flex; flex-direction: column; gap: 0.125rem; }

.hero-trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}

.hero-trust-num em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
  font-weight: 400;
}

.hero-trust-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1.125rem 1.375rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  max-width: 260px;
  animation: floatCard 6s ease-in-out infinite;
  border: 1px solid rgba(2, 74, 170, 0.08);
}

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

.hero-card-avatars { display: flex; flex-shrink: 0; }
.hero-card-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}
.hero-card-avatars img + img { margin-left: -10px; }

.hero-card-text { font-size: 0.8125rem; line-height: 1.35; }
.hero-card-text strong {
  display: block;
  color: var(--brand-green-dark);
  font-weight: 600;
  margin-bottom: 0.125rem;
}

/* ============ MARQUEE ============ */
.marquee-section {
  padding: 2.5rem 0;
  background: white;
  border-top: 1px solid rgba(2, 74, 170, 0.08);
  border-bottom: 1px solid rgba(2, 74, 170, 0.08);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  padding-right: 3rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
  white-space: nowrap;
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--duration-fast);
}

.marquee-item:hover { opacity: 1; color: var(--brand-green-dark); }

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  margin-left: 3rem;
}

/* ============ SECTION HEADER ============ */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 0.875rem;
}

.section-header h2 {
  margin-bottom: 1.125rem;
}

/* ============ PAINPOINTS — fond bleu marine clair (au lieu de noir) ============ */
.painpoints {
  background: linear-gradient(180deg, var(--brand-blue-deep) 0%, var(--brand-blue-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.painpoints::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 189, 101, 0.18), transparent 60%);
  pointer-events: none;
}

.painpoints::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 189, 101, 0.12), transparent 60%);
  pointer-events: none;
}

.painpoints > .container { position: relative; z-index: 1; }
.painpoints h2 { color: white; }
.painpoints .eyebrow { color: var(--brand-green); }

.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.painpoint {
  padding: 1.375rem 1.625rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
  backdrop-filter: blur(10px);
}

.painpoint:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(3, 189, 101, 0.5);
  transform: translateY(-3px);
}

.painpoint-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3, 189, 101, 0.2);
  color: var(--brand-green);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.painpoint-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.painpoints-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(3, 189, 101, 0.12), rgba(2, 74, 170, 0.12));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.painpoints-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  font-weight: 450;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: white;
}

.painpoints-cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
}

/* ============ SERVICES ============ */
.services { background: var(--bg-primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.875rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 74, 170, 0.08);
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  display: block;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green-dark));
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  color: white;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255, 255, 255, 0.18); color: white; }
.service-card:hover .service-card-link { color: white; }

.service-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-green-soft);
  color: var(--brand-green-dark);
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
  transition: all var(--duration) var(--ease-out);
}

.service-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.3125rem;
  color: inherit;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  letter-spacing: 0.01em;
}

.service-card-link::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-card-link::after { transform: translateX(3px); }

/* ============ MÉTHODE — fond clair vert très subtil ============ */
.method {
  background: linear-gradient(180deg, var(--brand-green-soft) 0%, var(--bg-primary) 100%);
  position: relative;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 3.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: white;
  border: 1px solid rgba(2,74,170,0.08);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 16px rgba(2,74,170,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.method-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(2,74,170,0.12);
}
/* La 5e étape s'étale sur les 2 colonnes */
.method-step:last-child {
  grid-column: 1 / -1;
}

.method-step-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-green);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.method-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  line-height: 1.25;
  color: var(--brand-blue);
}

.method-step p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.method-step-body {
  min-width: 0;
}

/* ============ DESTINATIONS ============ */
.destinations { background: var(--bg-primary); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.destination-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  display: block;
  color: white;
}

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

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.destination-card:hover img { transform: scale(1.08); }

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(2, 74, 170, 0.92) 100%);
  z-index: 1;
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: white;
}

.destination-flag { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }

.destination-card h3 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 450;
  margin-bottom: 0.5rem;
}

.destination-card p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.destination-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-green);
}

/* ============ TESTIMONIALS — fond bleu marine (allégé) ============ */
.testimonials {
  background: var(--brand-blue);
  color: white;
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 189, 101, 0.18), transparent 60%);
  pointer-events: none;
}

.testimonials > .container { position: relative; z-index: 1; }
.testimonials h2 { color: white; }
.testimonials .eyebrow { color: var(--brand-green); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease-out);
  backdrop-filter: blur(10px);
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: white;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 450;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  color: white;
  margin-bottom: 0.125rem;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-flag {
  margin-left: auto;
  font-size: 1.25rem;
}

/* ============ OFFICES ============ */
.offices { background: var(--bg-primary); }

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.office-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.office-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.office-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 74, 170, 0.92));
}

.office-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  color: white;
  z-index: 2;
}

.office-card-city {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.office-card-address {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 0.875rem;
}

.office-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background var(--duration-fast);
}

.office-card:hover .office-card-pill { background: var(--brand-green); }

/* ============ SCHOOLS ============ */
.schools { background: var(--brand-blue-soft); }

.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.school-tile {
  aspect-ratio: 1.6;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 74, 170, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.125rem;
  text-align: center;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.school-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-green);
}

.school-tile-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 0.375rem;
  color: var(--brand-blue);
}

.school-tile-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============ FINAL CTA — bleu marine avec vert ============ */
.final-cta {
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(3, 189, 101, 0.22), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(3, 189, 101, 0.12), transparent 50%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(3, 189, 101, 0.18);
  border: 1px solid rgba(3, 189, 101, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 1.5rem;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 1.25rem;
}

.final-cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
}

.final-cta-lead {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

/* ============ FOOTER — bleu marine ============ */
.footer {
  background: var(--brand-blue-deep);
  color: white;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  margin-bottom: 1.125rem;
}

.footer-brand-logo img {
  height: 50px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-socials { display: flex; gap: 0.5rem; }

.footer-social {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: white;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-social:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  transform: translateY(-2px);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.625rem; }

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--duration-fast);
}

.footer-link:hover { color: var(--brand-green); }

.footer-office { margin-bottom: 1.25rem; }

.footer-office strong {
  display: block;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.footer-office span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--brand-green); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  font-style: italic;
}
.footer-credit-link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
  transition: all 0.2s ease;
}
.footer-credit-link:hover {
  color: var(--brand-green) !important;
  border-bottom-color: var(--brand-green);
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: all var(--duration) var(--ease-out);
}

.wa-float:hover { transform: scale(1.08); }

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  animation: pingWA 2s ease-out infinite;
  z-index: -1;
}

@keyframes pingWA {
  0% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ ANIMATIONS REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============ FORMULAIRES ============ */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-mist);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  background: white;
  color: var(--text-primary);
  transition: all var(--duration-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(2, 74, 170, 0.12);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ============ RESPONSIVE — LE PLUS IMPORTANT ============ */

/* Tablette */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .method-timeline { grid-template-columns: 1fr; gap: 1rem; }
  .method-step:last-child { grid-column: auto; }
  .nav-menu { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; } /* CACHER LE CTA QUI DÉBORDE SUR MOBILE/TABLETTE */
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 2.5rem 0 3rem; }
  .topbar { font-size: 0.6875rem; padding: 0.4rem 0; }
  .topbar-info { display: none; } /* simplifier sur mobile */
  .nav-logo img { height: 50px; }
  .nav-wrapper { padding: 0.625rem 0; }
  .site-header.scrolled .nav-wrapper { padding: 0.5rem 0; }
  .schools-grid { grid-template-columns: 1fr; gap: 1rem; }
  .school-tile { aspect-ratio: auto; min-height: 140px; }

  .hero-visual { aspect-ratio: 4/5; max-width: 100%; }
  .hero-card {
    bottom: -1rem;
    left: 1rem;
    max-width: 200px;
    padding: 0.875rem 1rem;
  }
  .hero-card-text { font-size: 0.75rem; }
  .hero-card-avatars img { width: 28px; height: 28px; }

  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .hero-ctas .btn { width: 100%; }

  .hero-trust { gap: 1rem 1.5rem; padding-top: 1.75rem; }

  .offices-grid { grid-template-columns: 1fr; }
  .method-timeline { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .marquee-item { font-size: 1.125rem; }
  .marquee-dot { margin-left: 1.5rem; }
  .marquee-track { gap: 1.5rem; padding-right: 1.5rem; }

  .wa-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }

  .final-cta-ctas .btn { width: 100%; }

  .testimonials-grid, .services-grid, .destinations-grid, .painpoints-grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
  }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero-trust-num { font-size: 1.375rem; }
  .hero-trust-label { font-size: 0.75rem; }
  .destination-card { aspect-ratio: 4/5; }
  .service-card { padding: 1.5rem; }
  .testimonial { padding: 1.5rem; }
  .schools-grid { grid-template-columns: 1fr; gap: 1rem; }
  .school-tile { aspect-ratio: auto; min-height: 150px; padding: 1.5rem; }
}

/* ============================================================================
   STYLES POUR PAGES INTÉRIEURES (À propos, Contact, Légales, 404)
   ============================================================================ */

/* --- PAGE HERO (utilisé sur toutes les pages internes) --- */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--brand-blue-soft) 0%, var(--color-cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(3, 189, 101, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 1rem 0 1.5rem;
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
}
.page-hero p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
}
.text-blue { color: var(--brand-blue); }
.text-green { color: var(--brand-green); }

/* --- SECTIONS UTILITAIRES --- */
.section-cream { background: var(--color-cream); }
.section-blue-soft { background: var(--brand-blue-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
  color: white;
}
.section-dark h2, .section-dark h3, .section-dark p { color: white; }
.section-dark .kicker { color: rgba(255,255,255,0.85); }
.section-dark em { color: var(--brand-green); }
.section-cta-green {
  background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
  color: white;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}
.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.text-center { text-align: center; }

/* --- FOUNDER (mot du fondateur) --- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-photo-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--color-cream);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.founder-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--brand-blue);
}
.founder-photo-badge span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.founder-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 350;
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
  letter-spacing: -0.02em;
}
.founder-quote p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.founder-quote p strong {
  color: var(--brand-blue);
  font-weight: 600;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 1.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 1.5rem 0 3rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.625rem; top: 2rem;
  width: 18px; height: 18px;
  background: var(--brand-green);
  border: 4px solid var(--color-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--brand-blue);
}
.section-blue-soft .timeline-item::before {
  border-color: var(--brand-blue-soft);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 350;
  color: var(--brand-blue);
  line-height: 1;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}
.timeline-content p {
  font-size: 0.9875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.timeline-content em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-blue);
}

/* --- VISION CARDS --- */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.vision-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1.25rem 0 0.875rem;
}
.vision-card p {
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.vision-card p strong { color: white; font-weight: 600; }
.vision-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* --- VALUES ROW --- */
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.value-item { text-align: center; }
.value-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 350;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- TEAM CARDS --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(2, 74, 170, 0.08);
  transition: transform var(--duration), box-shadow var(--duration);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  width: 120px; height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-blue-soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0.75rem 0 0.25rem;
}
.team-role {
  font-size: 0.8125rem;
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.team-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- CTA FINAL --- */
.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: white;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 350;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
}
.cta-final h2 em {
  font-family: var(--font-serif);
  font-style: italic;
}
.cta-final p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.92);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--brand-green-dark);
  border: 2px solid white;
}
.btn-white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: white;
  color: var(--brand-green-dark);
}

/* --- OFFICES (page Contact) --- */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.office-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(2, 74, 170, 0.06);
  transition: transform var(--duration), box-shadow var(--duration);
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.office-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.office-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.office-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--brand-green);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}
.office-content {
  padding: 2rem;
}
.office-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}
.office-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.office-meta-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.office-meta-item a {
  color: var(--brand-blue);
  font-weight: 500;
}
.office-meta-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}
.office-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* --- CONTACT FORM --- */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: white;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 350;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
  color: var(--text-primary);
}
.contact-form-intro h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-blue);
}
.contact-form-intro > p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-perk {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.contact-perk-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.form-group label .required {
  color: var(--brand-green);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-mist);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: white;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--brand-blue-soft);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.875rem;
  align-items: start;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
  background: #f5f7fb;
  padding: 1rem 1.125rem;
  border-radius: 12px;
  border: 1px solid rgba(2,74,170,0.08);
  transition: all 0.2s ease;
}
.checkbox-label:hover {
  background: #eef2f9;
  border-color: rgba(2,74,170,0.16);
}
.checkbox-label input {
  width: 22px;
  height: 22px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--brand-green);
  cursor: pointer;
}
.checkbox-label span {
  display: block;
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}
.checkbox-label a {
  color: var(--brand-blue);
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
}
.form-consent { margin-top: 0.5rem; }
.btn-block { width: 100%; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
  line-height: 1.5;
}

/* --- CHANNELS (cartes contact alternatives) --- */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.channel-card {
  background: white;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(2, 74, 170, 0.08);
  text-align: center;
  transition: transform var(--duration), border-color var(--duration), box-shadow var(--duration);
  display: block;
  color: var(--text-primary);
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
}
.channel-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.channel-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.channel-value {
  font-size: 0.875rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.channel-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brand-blue);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-blue-soft);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-content ul li {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-content strong { color: var(--text-primary); }
.legal-update {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-mist);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- ERROR 404 PAGE --- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--brand-blue-soft) 0%, var(--color-cream) 100%);
  padding: 4rem 0;
}
.error-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.error-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 300;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.error-number span { color: var(--brand-green); }
.error-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 350;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.error-content h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green);
}
.error-content > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.error-suggestions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(2, 74, 170, 0.1);
}
.error-suggestions h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.error-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.error-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--brand-blue);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(2, 74, 170, 0.15);
  transition: all var(--duration-fast);
}
.error-links a:hover {
  background: var(--brand-blue);
  color: white;
  transform: translateY(-2px);
}

/* ============================================================================
   RESPONSIVE — Pages internes
   ============================================================================ */
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo { max-width: 460px; margin: 0 auto; }
  .timeline-item { grid-template-columns: 110px 1fr; gap: 1.25rem; }
  .timeline-year { font-size: 1.75rem; }
  .vision-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-form-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .timeline { padding-left: 1rem; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0 2.5rem 1rem;
  }
  .timeline-item::before { left: -1.125rem; top: 1.5rem; width: 14px; height: 14px; }
  .timeline-year { font-size: 1.5rem; }
  .timeline-content h3 { font-size: 1.125rem; }
  .vision-card { padding: 1.75rem; }
  .vision-card h3 { font-size: 1.25rem; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-card { padding: 1rem; }
  .team-photo { width: 90px; height: 90px; }
  .team-card h4 { font-size: 0.9375rem; }
  .team-role { font-size: 0.6875rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .office-content { padding: 1.5rem; }
  .office-content h3 { font-size: 1.5rem; }
  .channels-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .channel-card { display: flex; align-items: center; text-align: left; gap: 1rem; padding: 1.25rem; }
  .channel-card .channel-icon { margin-bottom: 0; font-size: 2rem; }
  .channel-card div:not(.channel-icon) { flex: 1; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; }
  .office-actions { flex-direction: column; }
  .office-actions .btn { width: 100%; justify-content: center; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .legal-content { padding: 1.75rem 1.5rem; }
  .legal-content h2 { font-size: 1.25rem; margin: 1.5rem 0 0.875rem; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 2rem; }
  .founder-text h2 { font-size: 1.625rem; }
  .timeline { padding-left: 0.75rem; }
  .timeline-item { padding-left: 0.875rem; padding-bottom: 2rem; }
  .timeline-item::before { left: -0.875rem; }
  .vision-card { padding: 1.5rem; }
  .vision-icon { width: 52px; height: 52px; }
  .team-card { padding: 0.875rem; }
  .team-photo { width: 80px; height: 80px; }
  .error-number { font-size: 4.5rem; }
  .channel-card { padding: 1rem; }
  .channel-icon { font-size: 1.75rem; }
}

/* =============================================================
   LIVRAISON 2 — Styles pour pages services/destinations détaillées,
   page Bourses, page Témoignages
   ============================================================= */

/* ============ HERO pages détaillées (services/destinations) ============ */
.service-page-hero,
.dest-page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  overflow: hidden;
  color: white;
  background: var(--brand-blue);
}

.service-page-hero-bg,
.dest-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-page-hero-bg img,
.dest-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.service-page-hero::after,
.dest-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,74,170,0.92) 0%, rgba(2,74,170,0.7) 100%);
  z-index: 1;
}

.service-page-hero .container,
.dest-page-hero .container {
  position: relative;
  z-index: 2;
}

.service-page-hero-content,
.dest-page-hero-content {
  max-width: 820px;
  color: white;
}

.service-page-hero-content .kicker,
.dest-page-hero-content .kicker {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.service-page-hero-content h1,
.dest-page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 450;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: white;
}

.service-page-hero-content h1 em,
.dest-page-hero-content h1 em {
  font-style: italic;
  color: #b9efd2;
}

.service-page-hero-content p,
.dest-page-hero-content p {
  font-size: 1.125rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
}

.back-link {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: white; }

.service-icon-big,
.dest-flag-big {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stats-inline > div {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}
.hero-stats-inline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #b9efd2;
  font-weight: 500;
  margin-bottom: 0.125rem;
}

/* ============ SECTIONS génériques utilisées ============ */
.section-cream { background: var(--color-cream); }
.section-blue-soft { background: var(--brand-blue-soft); }
.section-dark {
  background: var(--brand-blue);
  color: white;
}
.section-dark h2,
.section-dark .kicker,
.section-dark .section-subtitle { color: white; }
.section-dark .kicker { color: rgba(255,255,255,0.85); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.85); }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 450;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.section-head h2 em {
  font-style: italic;
  color: var(--brand-blue);
}
.section-dark .section-head h2 em { color: #b9efd2; }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
}

/* ============ PROFILS-GRID (Pour qui ?) ============ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.profile-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.profile-card .profile-emoji {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.profile-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.profile-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0;
}

/* ============ METHOD-STEPS (étapes numérotées) ============ */
.method-steps {
  display: grid;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.method-step {
  background: white;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  align-items: start;
  border: 1px solid rgba(2,74,170,0.08);
}
.section-dark .method-step {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.method-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 450;
  color: var(--brand-green);
  line-height: 1;
  min-width: 2.5rem;
}
.method-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.section-dark .method-step h3 { color: white; }
.method-step p {
  margin: 0;
  line-height: 1.55;
  color: var(--text-primary);
}
.section-dark .method-step p { color: rgba(255,255,255,0.85); }

/* ============ DEST-QUICK-GRID (destinations rapides depuis services) ============ */
.dest-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.dest-quick-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid rgba(2,74,170,0.08);
  transition: all 0.2s;
  display: block;
}
.dest-quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2,74,170,0.1);
  border-color: var(--brand-blue);
}
.dest-quick-flag {
  font-size: 2.25rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.625rem;
}
.dest-quick-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.dest-quick-card p {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.dest-quick-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-green-dark);
}

/* ============ PRICING-CARDS ============ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  position: relative;
}
.pricing-card-featured {
  background: rgba(3,189,101,0.15);
  border-color: var(--brand-green);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
}
.pricing-card h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: white;
}
.pricing-amount {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-amount strong {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: #b9efd2;
  display: block;
  margin-top: 0.25rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.pricing-card li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  margin: 2rem auto 0;
  max-width: 720px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

/* ============ ALERT-BOX ============ */
.alert-box {
  background: rgba(255,170,0,0.08);
  border: 1px solid rgba(255,170,0,0.3);
  border-left: 4px solid #ffaa00;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}
.alert-box-info {
  background: var(--brand-blue-soft);
  border-color: rgba(2,74,170,0.25);
  border-left-color: var(--brand-blue);
}
.alert-icon { font-size: 2rem; line-height: 1; }
.alert-box h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.alert-box p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.9375rem;
}

/* ============ VISA-PATHS (cartes voies de visa) ============ */
.visa-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.visa-path-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.1);
}
.visa-path-flag { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; }
.visa-path-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0 0 0.25rem;
  color: var(--brand-blue);
}
.visa-path-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 1rem;
}
.visa-path-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.5rem;
}
.visa-path-card li {
  font-size: 0.9375rem;
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
.visa-path-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brand-green);
}
.visa-path-tag {
  font-size: 0.8125rem;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
}

/* ============ FEATURES-GRID-2COL ============ */
.features-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0 0 0.375rem;
  color: var(--brand-blue);
}
.feature-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ============ WHY-CANADA-GRID (raisons cartes) ============ */
.why-canada-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.why-card .why-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.why-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text-primary);
}

/* ============ CANADA-PROGRAMS ============ */
.canada-programs {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.canada-program {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.canada-program-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.canada-program h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 450;
  margin: 0;
  color: var(--brand-blue);
}
.canada-program-badge {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
}
.canada-program-badge-green {
  background: rgba(3,189,101,0.15);
  color: var(--brand-green-dark);
}
.canada-program-badge-blue {
  background: var(--brand-blue);
  color: white;
}
.canada-program p { line-height: 1.55; margin: 0 0 1rem; }
.canada-program-criteria {
  background: var(--color-cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
}
.canada-program-criteria strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-blue);
}
.canada-program-criteria ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.375rem;
}
.canada-program-criteria li {
  font-size: 0.9375rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}
.canada-program-criteria li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-green);
}

/* ============ VISA-TYPES-GRID ============ */
.visa-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.visa-type-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.visa-type-flag { font-size: 1.875rem; line-height: 1; margin-bottom: 0.5rem; }
.visa-type-card h4 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 450;
  margin: 0 0 0.25rem;
  color: var(--brand-blue);
}
.visa-type-tag {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 0.875rem;
}
.visa-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.visa-type-card li {
  font-size: 0.9375rem;
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
.visa-type-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brand-green);
}

/* ============ PILLARS-GRID (les 5 piliers) ============ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--brand-green);
  font-weight: 450;
  margin-bottom: 0.5rem;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0 0 0.625rem;
  color: var(--brand-blue);
}
.pillar p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

/* ============ COUNTRY-PROCS (procédures par pays) ============ */
.country-procs {
  display: grid;
  gap: 1.5rem;
}
.country-proc {
  background: white;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
  align-items: start;
}
.country-proc-flag {
  font-size: 2.5rem;
  line-height: 1;
}
.country-proc-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.country-proc-content p { margin: 0 0 0.875rem; line-height: 1.55; }
.country-proc-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.country-proc-content li {
  font-size: 0.9375rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}
.country-proc-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brand-green);
}

/* ============ MED-DESTINATIONS-GRID ============ */
.med-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.med-dest-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.med-dest-flag { font-size: 2rem; line-height: 1; margin-bottom: 0.625rem; }
.med-dest-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: var(--brand-blue);
}
.med-dest-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 0.875rem;
}
.med-dest-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* ============ URGENT-BANNER ============ */
.urgent-banner {
  background: linear-gradient(135deg, #ff4757 0%, #ee5a52 100%);
  color: white;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.urgent-banner-icon { font-size: 2.5rem; line-height: 1; }
.urgent-banner-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.urgent-banner-content p { margin: 0; font-size: 0.9375rem; opacity: 0.95; }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #1ebd5b; color: white; }

/* ============ SCHOOLS-QUICK-GRID ============ */
.schools-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.school-quick {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.school-quick h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 450;
  margin: 0 0 0.375rem;
  color: var(--brand-blue);
}
.school-quick p {
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
  color: var(--text-muted);
}

/* ============ CITIES-GRID ============ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.city-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}
.section-cream .city-card,
.section-blue-soft .city-card {
  background: white;
  border-color: rgba(2,74,170,0.08);
}
.city-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0 0 0.5rem;
  color: white;
}
.section-cream .city-card h4,
.section-blue-soft .city-card h4 { color: var(--brand-blue); }
.city-card p {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0 0 0.875rem;
  color: rgba(255,255,255,0.85);
}
.section-cream .city-card p,
.section-blue-soft .city-card p { color: var(--text-primary); }
.city-cost {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b9efd2;
  background: rgba(3,189,101,0.15);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
}
.section-cream .city-cost,
.section-blue-soft .city-cost {
  color: var(--brand-green-dark);
  background: rgba(3,189,101,0.12);
}

/* ============ TWO-PATHS-GRID (Allemagne / Canada deux voies) ============ */
.two-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.path-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
  position: relative;
}
.path-card-tag {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.875rem;
}
.path-card-tag-green { background: var(--brand-green); }
.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 450;
  margin: 0 0 0.375rem;
  color: var(--brand-blue);
}
.path-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.625rem;
}
.path-card li {
  font-size: 0.9375rem;
  line-height: 1.45;
  padding-left: 1.25rem;
  position: relative;
}
.path-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}
.path-cta {
  background: var(--color-cream);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.45;
}
.path-cta strong { color: var(--brand-blue); }

/* ============ CTA FINAL (vert) ============ */
.section-cta-green {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: white;
  text-align: center;
}
.cta-final {
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 450;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: white;
}
.cta-final h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.95);
}
.cta-final p {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--brand-green-dark);
  font-weight: 500;
}
.btn-white:hover { background: rgba(255,255,255,0.92); color: var(--brand-green-dark); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid white;
}
.btn-outline-white:hover { background: white; color: var(--brand-green-dark); }
.btn-xl {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* ============ BOURSES (page Bourses) ============ */
.bourse-list {
  display: grid;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.bourse-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.bourse-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.bourse-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0;
  color: var(--brand-blue);
}
.bourse-amount {
  background: rgba(3,189,101,0.12);
  color: var(--brand-green-dark);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bourse-card > p {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.bourse-meta {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 0.875rem;
}
.bourse-meta span {
  font-size: 0.875rem;
  line-height: 1.4;
}
.bourse-meta strong { color: var(--brand-blue); }
.bourse-tag {
  font-size: 0.8125rem;
  color: var(--brand-blue);
  font-style: italic;
}

/* ============ TÉMOIGNAGES ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  background: white;
  border: 1px solid rgba(2,74,170,0.15);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.filter-btn.active {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2,74,170,0.08);
}
.testimonial-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.testimonial-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-head h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 450;
  margin: 0;
  color: var(--brand-blue);
}
.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--text-primary);
  margin-top: 0.125rem;
}
.testimonial-niveau {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

.stats-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.stat-block {
  background: white;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 450;
  color: var(--brand-green-dark);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============ Page hero générique (bourses, témoignages) ============ */
.page-hero-content {
  max-width: 820px;
}
.page-hero-content h1 {
  margin-bottom: 1.25rem;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--brand-blue);
}
.page-hero-content .lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-primary);
}

/* ============ Responsive L2 ============ */
@media (max-width: 768px) {
  .service-page-hero,
  .dest-page-hero {
    min-height: 400px;
    padding: 2.5rem 0 2rem;
  }
  .service-page-hero-content h1,
  .dest-page-hero-content h1 { font-size: 1.875rem; }
  .hero-stats-inline { gap: 1.25rem; padding-top: 1.25rem; margin-top: 1.5rem; }
  .hero-stats-inline strong { font-size: 1.25rem; }

  .method-step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem;
  }
  .method-num { font-size: 1.625rem; }

  .country-proc {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .urgent-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .urgent-banner-icon { margin: 0 auto; }

  .pricing-card-featured { transform: none; }

  .bourse-card-head { flex-direction: column; align-items: flex-start; }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .alert-box {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .alert-icon { font-size: 1.625rem; }
}

/* ============================================================
   FIX BOUTONS MOBILE — Évite les débordements
   ============================================================ */
@media (max-width: 480px) {
  /* Les boutons s'adaptent : texte plus petit, padding ajustés, retour à la ligne autorisé */
  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.125rem;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
  }
  .btn-xl {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }
  /* Stack vertical des groupes de boutons sur très petits écrans */
  .hero-ctas,
  .cta-buttons,
  .tem-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
  .hero-ctas .btn,
  .cta-buttons .btn,
  .tem-cta-buttons .btn,
  .tem-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Aussi limiter les boutons CTA sur tablette */
  .btn {
    max-width: 100%;
  }
  /* Les boutons CTA d'urgence (rouge urgence médical) restent en évidence */
  .urgent-banner .btn { width: auto; }
}

/* ============================================================
   FIX FORMULAIRE CONTACT — Responsive complet
   ============================================================ */
@media (max-width: 900px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-form-wrapper {
    padding: 1.25rem 1.125rem;
    border-radius: 16px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
    /* Force 16px sur mobile pour éviter le zoom auto iOS */
  }
  .contact-form-intro h2 { font-size: 1.5rem; }
  .checkbox-label { font-size: 0.8125rem; }
}

/* iOS : empêcher le zoom auto au focus des inputs */
@media (max-width: 600px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
  }
}

/* ============================================================
   MENU DESKTOP — Sous-menus déroulants (L3 fix)
   ============================================================ */
@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
.nav-menu > li {
  position: relative;
}
.nav-has-sub > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-chevron {
  opacity: 0.55;
  transition: transform 0.2s ease;
  margin-top: 1px;
}
.nav-has-sub:hover .nav-chevron,
.nav-has-sub:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* Sous-menu déroulant */
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: white;
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 12px 40px rgba(2, 74, 170, 0.15), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(2, 74, 170, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 200;
}
/* Connecteur invisible pour éviter que le sous-menu se ferme entre le lien et lui */
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-has-sub:hover .nav-submenu,
.nav-has-sub:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  transform: translateX(2px);
}

/* Resserrement du menu desktop (entre 1024 et 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-link {
    padding: 0.5rem 0.625rem;
    font-size: 0.875rem;
  }
  .nav-menu { gap: 0; }
  .nav-cta { padding: 0.625rem 1rem; font-size: 0.875rem; }
}

/* Sous-menus invisibles sur mobile (le menu burger gère tout) */
@media (max-width: 1024px) {
  .nav-submenu { display: none !important; }
  .nav-chevron { display: none; }
}

/* ============================================================
   TOPBAR — Contacts des bureaux (PC uniquement)
   ============================================================ */
.topbar-offices {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-office strong {
  font-weight: 600;
  color: inherit;
}
.topbar-sep {
  opacity: 0.4;
}
/* Sur mobile, .topbar-info est déjà masqué (display:none à 768px) */
