/* ==========================================================================
   NKO Réseau — feuille de style principale
   Charte : fond blanc / #f2f2f2, titres blancs sur bleu #1b3b66,
   accents décoratifs orange #e8821e
   ========================================================================== */

:root {
  --blue: #1b3b66;
  --blue-dark: #12283f;
  --blue-light: #274c7d;
  --orange: #e8821e;
  --orange-dark: #cc6e10;
  --bg-light: #f2f2f2;
  --white: #ffffff;
  --text: #2b2f36;
  --text-light: #5b6472;
  --border: #e2e5ea;
  --shadow: 0 10px 30px rgba(27, 59, 102, 0.08);
  --shadow-sm: 0 4px 14px rgba(27, 59, 102, 0.08);
  --shadow-lg: 0 24px 60px rgba(27, 59, 102, 0.12), 0 2px 10px rgba(27, 59, 102, 0.05);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--blue);
}

p { margin: 0 0 1em; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }

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

ul { padding-left: 1.2em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.section-light { background: var(--bg-light); }
.section-white { background: var(--white); }

/* ---------- eyebrow / accents ---------- */

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.underline {
  width: 64px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 0 22px;
}
.underline.center { margin-left: auto; margin-right: auto; }

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

/* ---------- section title band (titres blancs sur fond bleu) ---------- */

.title-band {
  background: var(--blue);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 8px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.title-band .bar {
  width: 6px;
  align-self: stretch;
  background: var(--orange);
  border-radius: 3px;
  flex-shrink: 0;
}

.title-band h2, .title-band h3 {
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22px;
}

.title-band .sub {
  display: block;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 130, 30, .35);
}
.btn-orange:hover { background: var(--orange-dark); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); color: var(--white); }

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

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

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

.brand img {
  height: 56px;
  width: auto;
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}

.main-nav a:hover { background: var(--bg-light); color: var(--blue); }

.main-nav a.active {
  color: var(--blue);
  background: var(--bg-light);
  position: relative;
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.main-nav .btn { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(232, 130, 30, .16);
  top: -180px;
  right: -140px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  bottom: -140px;
  left: -80px;
}

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

.hero-inner { max-width: 760px; }

.hero .tagline {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}
.hero .tagline span { margin: 0 4px; }

.hero h1 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(232,130,30,.15);
  top: -160px;
  right: -100px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { color: var(--white); font-size: 36px; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto; }

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card.accent-left {
  border-left: 5px solid var(--orange);
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(27,59,102,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }

.icon-badge.orange {
  background: rgba(232,130,30,.14);
  color: var(--orange);
}

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--text-light); font-size: 15px; }

/* value chips */

.value-chip {
  padding: 22px 18px;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  letter-spacing: .3px;
}
.value-chip small {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 6px;
  opacity: .9;
}
.value-chip.c1 { background: var(--blue); }
.value-chip.c2 { background: var(--orange); }
.value-chip.c3 { background: #3e7d4f; }
.value-chip.c4 { background: var(--blue-light); }

/* pricing cards */

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.pricing-card.featured h3,
.pricing-card.featured .price { color: var(--white); }
.pricing-card.featured .badge {
  background: var(--orange);
  color: var(--white);
}
.pricing-card.featured ul li { color: rgba(255,255,255,.9); }
.pricing-card.featured hr { border-color: rgba(255,255,255,.2); }

.pricing-card .badge {
  display: inline-block;
  background: rgba(232,130,30,.14);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.pricing-card h3 { font-size: 20px; margin-bottom: 4px; }

.pricing-card .price {
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.pricing-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}
.pricing-card.featured .price span { color: rgba(255,255,255,.75); }

.pricing-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.pricing-card ul li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}
.pricing-card.featured ul li svg { color: var(--orange); }

/* avatars — mini-carte du fondateur (section "Mot du fondateur") */

.avatar {
  text-align: center;
}
.avatar .circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: var(--blue-light);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.avatar .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar.founder .circle {
  background: var(--orange);
  width: 200px;
  height: 200px;
  font-size: 24px;
}

/* ==========================================================================
   Team gallery — "Ils font vivre le réseau"
   Galerie interactive : cliquer sur un membre met à jour la carte de
   présentation juste en dessous, sans jamais quitter la page.
   ========================================================================== */

.team-gallery {
  --team-photo-size: 116px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 20px;
  margin: 0 0 48px;
  padding: 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  border: none;
  background: none;
  padding: 8px;
  margin: 0;
  border-radius: 18px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(0) scale(1);
  transition: transform .3s cubic-bezier(.22, .8, .32, 1);
}

.team-member:hover,
.team-member:focus-visible {
  transform: translateY(-6px) scale(1.045);
}

.team-member:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 130, 30, .35);
}

.team-member-photo {
  position: relative;
  width: var(--team-photo-size);
  height: var(--team-photo-size);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transform: translate(var(--magnetic-x, 0px), var(--magnetic-y, 0px));
  transition: box-shadow .3s ease, transform .18s ease-out;
}

.team-member:hover .team-member-photo,
.team-member:focus-visible .team-member-photo {
  box-shadow: 0 16px 32px rgba(27, 59, 102, .16);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
}

.team-member-photo.has-photo img { opacity: 1; }

.team-member-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: calc(var(--team-photo-size) * .32);
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  opacity: 1;
  transition: opacity .35s ease;
}

.team-member.founder .team-member-initials {
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
}

.team-member-photo.has-photo .team-member-initials { opacity: 0; }

/* Anneau de sélection : élément séparé (::after) pour ne jamais entrer
   en conflit avec le décalage "magnetic" appliqué à la photo elle-même. */
.team-member-photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid var(--orange);
  opacity: 0;
  transform: scale(.82);
  transition: opacity .3s ease, transform .3s ease;
}

.team-member.is-active .team-member-photo {
  box-shadow: 0 14px 28px rgba(27, 59, 102, .18);
}

.team-member.is-active .team-member-photo::after {
  opacity: 1;
  transform: scale(1);
}

.team-member.is-popping .team-member-photo::after {
  animation: teamRingPop .45s cubic-bezier(.22, .8, .32, 1);
}

@keyframes teamRingPop {
  0%   { opacity: 0; transform: scale(.7); }
  60%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.team-member-name {
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue);
}

.team-member-job {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.35;
}

/* ---------- carte de présentation ---------- */

.team-card {
  display: flex;
  align-items: center;
  gap: 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .32s ease, transform .32s ease;
  scroll-margin-top: 108px; /* dégage l'en-tête collant (84px) + un espace confortable */
}

.team-card.is-swapping {
  opacity: 0;
  transform: translateY(14px);
}

.team-card-photo {
  position: relative;
  flex-shrink: 0;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(27, 59, 102, .16);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
}

.team-card-photo.has-photo img { opacity: 1; }

.team-card-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 52px;
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  opacity: 1;
  transition: opacity .35s ease;
}

.team-card-photo.has-photo .team-card-initials { opacity: 0; }

.team-card-body { min-width: 0; flex: 1; }

.team-card-name {
  font-size: 22px;
  margin-bottom: 2px;
}

.team-card-job {
  display: block;
  color: var(--orange);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-card-desc {
  color: var(--text-light);
  font-size: 15px;
  max-width: 62ch;
	white-space: pre-line;
}

.team-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 18px;
}

.team-skill {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

.team-card-quote {
  margin: 0 0 22px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--orange);
  color: var(--text);
  font-style: italic;
  font-size: 15px;
}

.team-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-team[hidden] { display: none; }

.btn-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-team svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-team-solid {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn-team-solid:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 130, 30, .25);
}

.btn-team-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-team-outline:hover {
  border-color: var(--blue);
  background: var(--bg-light);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .team-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .team-gallery { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .team-card { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; }
  .team-card-desc { max-width: none; }
  .team-card-skills, .team-card-actions { justify-content: center; }
  .team-card-quote { border-left: none; border-top: 3px solid var(--orange); padding: 14px 0 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .team-member,
  .team-member-photo,
  .team-member-photo::after,
  .team-card,
  .btn-team {
    transition: none !important;
    animation: none !important;
  }
}

/* quote / founder */

.quote-block {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 90px;
  color: var(--orange);
  opacity: .25;
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
}
.quote-block p { position: relative; z-index: 1; }

/* two-collège blocks */

.college-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.college-card .head {
  background: var(--blue);
  color: var(--white);
  padding: 20px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.college-card .head.alt { background: var(--orange); }
.college-card .body { padding: 26px; }
.college-card ul { padding-left: 1.1em; }
.college-card li { margin-bottom: 8px; color: var(--text-light); }

/* FAQ accordion */

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question .tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232,130,30,.14);
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.faq-question svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
  color: var(--orange);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-light);
}

/* contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--blue); font-size: 15px; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { color: var(--text-light); font-size: 14.5px; display: block; }

.form-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--blue);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* CTA band */

.cta-band {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(232,130,30,.18);
  bottom: -140px;
  right: -60px;
}
.cta-band .container-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* disclaimer note */

.note-box {
  background: var(--bg-light);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--text-light);
}
.note-box strong { color: var(--blue); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.82);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand .logo-badge {
  background: var(--white);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-badge img { height: 40px; }

.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom span { color: var(--orange); }

/* ---------- carte de France (adhérents) ---------- */

.france-map-grid { align-items: center; gap: 40px; }

.france-map-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.france-map-wrap svg { width: 100%; height: auto; display: block; }

.france-shape {
  fill: rgba(27, 59, 102, 0.06);
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.france-map-dot {
  fill: var(--orange);
  stroke: var(--white);
  stroke-width: 1.5;
}

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

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 14px 10px; }
  .main-nav .btn { margin: 10px 0 0; }
  .nav-toggle { display: flex; }

  .hero h1, .page-hero h1 { font-size: 30px; }
  .hero { padding: 60px 0 70px; }
  section { padding: 52px 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .title-band h2, .title-band h3 { font-size: 18px; }
}
