/* ── FUZZY FORMATION — CHARTE GRAPHIQUE OFFICIELLE ── */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --lime:    #D8FF7C;
  --lime-dk: #C8F060;
  --sky:     #D0EEF9;
  --fond:    #F6F5F1;
  --blanc:   #FFFFFF;
  --vert:    #0A3E27;
  --blue:    #4D61F4;
  --violet:  #CC88FF;
  --gris:    #4A4A4A;
  --r:       12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--fond);
  color: var(--vert);
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #4D61F4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 48px !important;
  height: 68px !important;
  box-shadow: 0 2px 24px rgba(77,97,244,0.35) !important;
}
.logo {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: 0.06em !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links > li > a {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: opacity 0.2s;
}
.nav-links > li > a:hover { opacity: 0.7; }

/* CTA nav */
.nav-cta {
  background: #0A3E27 !important;
  color: #D8FF7C !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: inline-block !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,62,39,0.3);
  color: #D8FF7C !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 240px;
  list-style: none;
  padding: 8px 0;
  z-index: 10000;
  border: 1px solid rgba(0,0,0,0.06);
}
.dropdown-menu.open { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #0A3E27 !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.15s;
}
.dropdown-menu li a:hover { background: #F6F5F1; }
.dropdown-menu li a.current { background: #F6F5F1; font-weight: 700 !important; }

/* Burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ffffff !important;
  padding: 4px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  z-index: 9998;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid #4D61F4;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 28px;
  color: #0A3E27 !important;
  text-decoration: none !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu .mobile-cta {
  margin: 14px 28px 6px;
  background: #0A3E27;
  color: #D8FF7C !important;
  text-align: center;
  border-radius: 6px;
  border-bottom: none;
  padding: 11px;
}

/* ── FOOTER ── */
footer {
  background: #0A3E27 !important;
  padding: 52px 48px 0 !important;
  display: block !important;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: #D8FF7C !important;
  text-decoration: none !important;
  letter-spacing: 0.06em !important;
  align-self: flex-start;
}
.footer-nav { display: flex; gap: 44px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.footer-col-title {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #D8FF7C !important;
  margin-bottom: 4px;
}
footer a, .footer-col a {
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  font-family: 'EB Garamond', serif !important;
  font-size: 0.95rem !important;
  transition: color 0.2s;
}
footer a:hover, .footer-col a:hover { color: #D8FF7C !important; }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: 'EB Garamond', serif;
}

/* ── HIGHLIGHTS ── */
.hl-lime { background: #D8FF7C; padding: 0 5px 1px; border-radius: 3px; font-style: normal; }
.hl-violet { color: #CC88FF; font-style: normal; }
.hl-blue { color: #4D61F4; font-style: normal; }

/* ── TYPO ── */
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; font-weight: 700; line-height: 1.15; color: #0A3E27; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ── BOUTONS ── */
.btn-primary {
  background: #D8FF7C;
  color: #0A3E27;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #C8F060; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(216,255,124,0.4); }

.btn-blue {
  background: #4D61F4;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-blue:hover { background: #3a4ee0; transform: translateY(-2px); }

.btn-dark {
  background: #0A3E27;
  color: #D8FF7C;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,62,39,0.3); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── SECTIONS ── */
.section-pad { padding: 80px 48px; }
.max-w { max-width: 1140px; margin: 0 auto; }
.max-w-sm { max-width: 800px; margin: 0 auto; }
.section-fond { background: #F6F5F1; }
.section-sky { background: #D0EEF9; }
.section-blanc { background: #fff; }
.section-vert { background: #0A3E27; }
.section-blue { background: #4D61F4; }
.section-lime { background: #D8FF7C; }

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC88FF;
  margin-bottom: 8px;
  display: block;
}
.eyebrow-lime { color: rgba(216,255,124,0.75); }
.eyebrow-dark { color: rgba(10,62,39,0.5); }

.section-intro { font-size: 1rem; color: #4A4A4A; max-width: 580px; line-height: 1.8; margin-bottom: 48px; }

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 28px;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: #D8FF7C; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

.card-dark {
  background: #0A3E27;
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform 0.2s;
}
.card-dark:hover { transform: translateY(-3px); }

.card-blue {
  background: rgba(77,97,244,0.08);
  border: 1px solid rgba(77,97,244,0.15);
  border-radius: var(--r);
  padding: 28px 24px;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  background: #D0EEF9;
  color: #0A3E27;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
}
.tag-violet {
  background: rgba(204,136,255,0.15);
  color: #8844BB;
}
.tag-lime {
  background: rgba(216,255,124,0.25);
  color: #2A6B2A;
  border: 1px solid rgba(216,255,124,0.5);
}
.tag-dark {
  background: rgba(216,255,124,0.12);
  color: #D8FF7C;
}

/* ── FAQ ── */
.faq-item {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  margin-bottom: 3px;
}
.faq-item summary {
  padding: 18px 22px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0A3E27;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: #CC88FF; flex-shrink: 0; margin-left: 14px; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover, .faq-item[open] summary { background: #F6F5F1; }
.faq-item[open] summary { border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-item > div { padding: 16px 22px 20px; font-size: 0.95rem; color: #4A4A4A; line-height: 1.75; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CTA SECTION ── */
.cta-section { background: #4D61F4; padding: 72px 48px; text-align: center; }
.cta-section h2 { color: #fff; max-width: 620px; margin: 0 auto 14px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 460px; margin: 0 auto 32px; }
.cta-detail { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 12px; }
.cta-eyebrow { color: rgba(216,255,124,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 16px !important; height: 60px !important; }
  .nav-links { display: none !important; }
  .nav-burger { display: block !important; }
  .logo { font-size: 1.2rem !important; }

  /* SECTIONS */
  .section-pad { padding: 48px 20px !important; }
  .max-w { padding: 0; }
  .max-w-sm { padding: 0; }

  /* HERO padding */
  section[style*="padding:100px 48px"],
  section[style*="padding: 100px 48px"] {
    padding: 64px 20px 48px !important;
  }
  section[style*="padding:80px 48px"],
  section[style*="padding: 80px 48px"] {
    padding: 56px 20px !important;
  }

  /* GRILLES → 1 colonne */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* HERO grilles 2 colonnes spécifiques */
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns:1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1.5fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* CARDS PROGRAMMES (1fr auto → empiler) */
  [style*="grid-template-columns:1fr auto"],
  [style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
  }
  /* Masquer l'emoji côté droit sur mobile */
  [style*="grid-template-columns:1fr auto"] > span[style*="font-size:3rem"],
  [style*="grid-template-columns:1fr auto"] > span[style*="font-size:2.5rem"] {
    display: none !important;
  }

  /* MÉTHODE steps (80px 1fr → auto 1fr) */
  [style*="grid-template-columns:80px 1fr"],
  [style*="grid-template-columns: 80px 1fr"] {
    grid-template-columns: 48px 1fr !important;
    gap: 12px !important;
  }

  /* PHOTO HERO → max-width + centrer */
  [style*="aspect-ratio:3/4"] {
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* PARTENAIRES → colonne */
  [style*="display:flex"][style*="gap:48px"][style*="flex-wrap:wrap"] {
    gap: 20px !important;
  }

  /* TEXTES hero trop grands */
  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }

  /* BOUTONS → pleine largeur sur mobile */
  .hero-ctas, [style*="display:flex"][style*="gap:14px"] {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .btn-primary, .btn-dark, .btn-blue, .btn-outline {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* META PILLS nav → wrap */
  [style*="border-radius:100px"][style*="font-size:0.85rem"] {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }

  /* STATS HERO → flex-wrap */
  [style*="display:flex"][style*="flex-wrap:wrap"][style*="margin-bottom:36px"] {
    gap: 16px !important;
  }

  /* AVIS GRID → 1 colonne */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  footer { padding: 40px 20px 0 !important; }
  .footer-inner { flex-direction: column !important; gap: 28px !important; }
  .footer-nav { flex-direction: column !important; gap: 20px !important; }
  .footer-bottom { flex-direction: column !important; gap: 6px !important; font-size: 0.72rem !important; }

  /* CTA section */
  .cta-section { padding: 56px 20px !important; }

  /* OVERFLOW sécurité */
  body { overflow-x: hidden !important; }
  * { max-width: 100vw; }
  img { max-width: 100% !important; height: auto !important; }
}

/* Tablette */
@media (max-width: 1024px) and (min-width: 769px) {
  nav { padding: 0 28px !important; }
  .section-pad { padding: 64px 28px; }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  h1 { font-size: clamp(2rem, 4.5vw, 3.2rem) !important; }
}
/* Responsive update - 2026-04-18 09:41 */
