
    :root {
      --green-deep:  #0a3d1f;
      --green-main:  #1a6b2f;
      --green-mid:   #2a9044;
      --green-light: #4db868;
      --green-pale:  #e8f5ec;
      --black:       #0c0c0c;
      --black-soft:  #181818;
      --black-mid:   #2a2a2a;
      --white:       #ffffff;
      --off-white:   #f8faf8;
      --gray-light:  #f0f4f1;
      --gray:        #6a7a6d;
      --gray-dark:   #3a4a3d;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--black);
      padding: 0 3%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      border-bottom: 3px solid var(--green-main);
      transition: all 0.3s ease;
    }
    nav.scrolled {
      height: 58px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .nav-logo img {
      height: 40px;
      filter: brightness(1.15);
      transition: transform 0.3s;
    }
    .nav-logo img:hover { transform: scale(1.04); }
    .nav-links {
      display: flex;
      gap: 1.4rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,0.80);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 6px 0;
      position: relative;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--green-light);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--green-main) !important;
      color: var(--white) !important;
      padding: 7px 14px !important;
      border-radius: 4px;
      font-weight: 700 !important;
      font-size: 0.76rem !important;
    }
    .nav-cta:hover { background: var(--green-mid) !important; }
    .nav-cta::after { display: none !important; }

    /* ===== NAV DROPDOWN ===== */
    .nav-dropdown { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--black-soft);
      border: 1px solid var(--green-main);
      border-top: 3px solid var(--green-main);
      min-width: 220px;
      list-style: none;
      z-index: 2000;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .dropdown-menu li a {
      display: block;
      padding: 10px 18px;
      color: rgba(255,255,255,0.85);
      font-size: 0.82rem;
      text-transform: none;
      letter-spacing: 0.02em;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-menu li:last-child a { border-bottom: none; }
    .dropdown-menu li a:hover {
      background: var(--green-main);
      color: var(--white);
    }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu li a::after { display: none !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: white;
      transition: all 0.3s;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ===== HERO PHOTO ===== */
    .hero-bg-photo { display: none; }
    .hero > * { position: relative; z-index: 1; }
    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 0 2rem 0;
    }
    .hero-left { z-index: 2; }
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-right img {
      width: 100%;
      max-width: 520px;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 4px rgba(77,184,104,0.3);
      object-fit: cover;
      aspect-ratio: 3/4;
      object-position: top center;
      animation: heroimgfloat 4s ease-in-out infinite;
    }
    @keyframes heroimgfloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @media (max-width: 900px) {
      .hero-layout { grid-template-columns: 1fr; }
      .hero-right { display: none; }
    }

    /* ===== WHATSAPP FLOAT BUTTON ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 9999;
      background: #25D366;
      color: white;
      width: 60px; height: 60px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem;
      box-shadow: 0 6px 24px rgba(37,211,102,0.5);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: wapulse 2.5s infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 32px rgba(37,211,102,0.7);
    }
    @keyframes wapulse {
      0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
      50% { box-shadow: 0 6px 40px rgba(37,211,102,0.85); }
    }

    /* ===== BANNER SECTION ===== */
    .mlc-banner { width: 100%; display: block; height: auto; }
    .banner-section { overflow: hidden; line-height: 0; background: #0a3d1f; }

    /* ===== FLYERS SECTION ===== */
    .flyers-section { background: var(--black); padding: 80px 5%; }
    .flyers-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.2rem;
      max-width: 1200px;
      margin: 2.5rem auto 0;
    }
    .flyer-card {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .flyer-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 12px 40px rgba(26,107,47,0.5);
    }
    .flyer-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }

    /* ===== GALERIE SLIDER ===== */
    .galerie-section { background: var(--black-soft); padding: 80px 0 60px; }
    .galerie-section .section-header { padding: 0 5%; }
    .galerie-section .section-title { color: var(--white); }
    .galerie-section .section-title .accent { color: var(--green-light); }
    .galerie-section .section-tag { background: rgba(77,184,104,0.15); color: var(--green-light); border-left-color: var(--green-light); }
    .galerie-section .section-sub { color: rgba(255,255,255,0.6); }

    .gal-slider-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 2rem;
      overflow: hidden;
    }
    .gal-viewport {
      overflow: hidden;
      flex: 1;
      cursor: grab;
    }
    .gal-viewport:active { cursor: grabbing; }
    .gal-track {
      display: flex;
      gap: 16px;
      will-change: transform;
      padding: 8px 0 16px;
    }
    .gal-slide {
      flex: 0 0 300px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35);
      cursor: pointer;
      transition: box-shadow 0.3s;
    }
    .gal-slide:hover {
      box-shadow: 0 8px 36px rgba(26,107,47,0.5);
    }
    .gal-slide img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .gal-slide:hover img { transform: scale(1.06); }
    .gal-slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.75));
      color: white;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 20px 12px 10px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gal-slide:hover .gal-slide-caption { opacity: 1; }
    .gal-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      z-index: 10;
      background: rgba(26,107,47,0.85);
      border: none;
      color: white;
      font-size: 2rem;
      width: 48px; height: 80px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    .gal-btn:hover { background: var(--green-main); }
    .gal-prev { left: 0; border-radius: 0 8px 8px 0; }
    .gal-next { right: 0; border-radius: 8px 0 0 8px; }
    .gal-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 1.2rem;
      padding: 0 5%;
    }
    .gal-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .gal-dot.active {
      background: var(--green-light);
      transform: scale(1.4);
    }

    /* ===== LIGHTBOX ===== */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.93);
      z-index: 10000;
      align-items: center;
      justify-content: center;
    }
    .lightbox-overlay.active { display: flex; }
    .lightbox-img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 8px;
      box-shadow: 0 0 60px rgba(0,0,0,0.8);
    }
    .lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.8;
      transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 12px 20px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* ===== ABOUT LOGO 2 ===== */
    .about-logo-box img { object-fit: contain; }


    /* ===== HERO ===== */
    .hero {
      min-height: 90vh;
      min-height: 100vh;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,107,47,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,107,47,0.08) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }
    .hero-glow-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(26,107,47,0.35) 0%, transparent 70%);
      top: -150px; left: 50%;
      transform: translateX(-50%);
      animation: breathe 6s ease-in-out infinite;
    }
    .hero-glow-2 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(77,184,104,0.2) 0%, transparent 70%);
      bottom: 100px; right: 5%;
      animation: breathe 8s ease-in-out infinite reverse;
    }
    @keyframes breathe {
      0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26,107,47,0.25);
      border: 1px solid rgba(77,184,104,0.4);
      color: var(--green-light);
      padding: 8px 22px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 2.2rem;
      animation: fadeSlideDown 0.8s ease both;
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.6rem;
      animation: fadeSlideUp 0.9s ease 0.2s both;
    }
    .hero h1 .accent {
      color: var(--green-light);
      display: block;
    }
    .hero h1 .line-white { color: var(--white); }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-subtitle {
      font-size: clamp(0.95rem, 2vw, 1.18rem);
      color: rgba(255,255,255,0.65);
      max-width: 620px;
      margin: 0 auto 2.8rem;
      line-height: 1.75;
      font-weight: 300;
      animation: fadeSlideUp 0.9s ease 0.4s both;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.9s ease 0.6s both;
    }
    .btn-primary {
      background: var(--green-main);
      color: var(--white);
      padding: 15px 34px;
      border-radius: 5px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid var(--green-main);
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.02em;
    }
    .btn-primary:hover {
      background: var(--green-mid);
      border-color: var(--green-mid);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(26,107,47,0.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 13px 32px;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      border-color: var(--green-light);
      color: var(--green-light);
      transform: translateY(-3px);
    }
    .hero-divider {
      width: 60px; height: 3px;
      background: var(--green-main);
      margin: 3rem auto;
      animation: fadeSlideUp 0.9s ease 0.7s both;
    }
    .hero-stats {
      display: flex;
      gap: 3rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.9s ease 0.8s both;
    }
    .hero-stat-num {
      font-family: 'Space Mono', monospace;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--green-light);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 5px;
    }
    .scroll-cue {
      position: absolute;
      bottom: 28px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .scroll-cue span {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }
    .scroll-cue-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--green-main), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ===== CERTIF BAR ===== */
    .certif-bar {
      background: var(--green-deep);
      padding: 20px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .certif-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.75);
      font-size: 0.83rem;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .certif-dot {
      width: 6px; height: 6px;
      background: var(--green-light);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .certif-sep {
      width: 1px; height: 20px;
      background: rgba(255,255,255,0.15);
    }

    /* ===== SECTIONS ===== */
    section { padding: 100px 5%; }

    .section-tag {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green-deep);
      padding: 5px 14px;
      border-radius: 3px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      border-left: 3px solid var(--green-main);
    }
    .section-tag.light {
      background: rgba(77,184,104,0.15);
      color: var(--green-light);
      border-left-color: var(--green-light);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--black);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-title .accent { color: var(--green-main); }
    .section-title.light { color: var(--white); }
    .section-title.light .accent { color: var(--green-light); }
    .section-sub {
      font-size: 1rem;
      color: var(--gray);
      max-width: 580px;
      line-height: 1.75;
    }
    .section-sub.light { color: rgba(255,255,255,0.6); }
    .section-header { margin-bottom: 4rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* ===== ABOUT ===== */
    .about { background: var(--off-white); padding-bottom: 0; }

    /* Mission / Vision */
    .mvv-inline {
      margin-top: 1.8rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .mvv-item {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
      padding: 1.2rem 1.2rem;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 3px 16px rgba(0,0,0,0.07);
      border-top: 3px solid var(--green-main);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .mvv-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,107,47,0.15); }
    .mvv-mission { border-top-color: var(--green-main); }
    .mvv-vision  { border-top-color: var(--green-mid); }
    .mvv-icon { font-size: 1.8rem; flex-shrink: 0; }
    .mvv-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.4rem; }
    .mvv-item p { font-size: 0.84rem; color: var(--gray-dark); line-height: 1.65; margin: 0; }
    .mvv-item p strong { color: var(--green-main); font-weight: 700; }
    @media (max-width: 768px) { .mvv-inline { grid-template-columns: 1fr; } }

    /* ===== MOT DU DG ===== */
    .dg-section {
      background: var(--white);
      padding: 100px 5%;
      overflow: hidden;
    }
    .dg-inner {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 5rem;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Photo column */
    .dg-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    .dg-photo-wrap {
      position: relative;
      width: 100%;
    }
    .dg-photo {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      object-position: top center;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 6px rgba(26,107,47,0.08);
      transition: box-shadow 0.4s;
    }
    .dg-photo:hover { box-shadow: 0 24px 70px rgba(26,107,47,0.2), 0 0 0 6px rgba(26,107,47,0.15); }
    .dg-photo-badge {
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(10,61,31,0.95) 40%);
      border-radius: 0 0 16px 16px;
      padding: 40px 20px 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }
    .dg-badge-title {
      font-size: 0.68rem;
      color: var(--green-light);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .dg-badge-name {
      font-size: 1.15rem;
      font-weight: 800;
      color: white;
      font-family: 'Playfair Display', serif;
    }
    .dg-badge-role {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
    }

    /* Signature */
    .dg-signature {
      text-align: center;
      padding: 1rem 1.5rem;
      background: var(--green-pale);
      border-radius: 10px;
      width: 100%;
      border-left: 4px solid var(--green-main);
    }
    .dg-sig-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin: 0 0 3px; }
    .dg-sig-role { font-size: 0.8rem; color: var(--gray); margin: 0; line-height: 1.5; }
    .dg-sig-role span { color: var(--green-main); font-weight: 600; }

    /* Text column */
    .dg-text-col { padding-top: 0.5rem; }
    .dg-quote-mark {
      font-size: 6rem;
      line-height: 0.6;
      color: var(--green-pale);
      font-family: 'Playfair Display', serif;
      margin-bottom: 1.2rem;
      display: block;
    }
    .dg-message { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
    .dg-intro {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--black);
    }
    .dg-message p {
      font-size: 0.95rem;
      color: var(--gray-dark);
      line-height: 1.8;
      margin: 0;
    }
    .dg-message p strong { color: var(--green-deep); }
    .dg-closing {
      font-style: italic;
      color: var(--green-deep) !important;
      font-weight: 500;
      font-size: 1rem !important;
    }
    .dg-final-words {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem !important;
      font-weight: 700 !important;
      color: var(--black) !important;
    }
    .dg-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .dg-inner { grid-template-columns: 1fr; gap: 3rem; }
      .dg-photo-wrap { max-width: 300px; margin: 0 auto; }
      .dg-photo-col { align-items: center; }
    }

    /* Valeurs bande */
    .valeurs-band {
      background: linear-gradient(135deg, #081a0f 0%, #0c2a18 60%, #081a0f 100%);
      padding: 70px 5%;
      margin-top: 0;
    }
    .valeurs-band-inner { max-width: 1200px; margin: 0 auto; }
    .valeurs-band-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .valeurs-band .section-tag {
      background: rgba(77,184,104,0.15);
      color: var(--green-light);
      border-left-color: var(--green-light);
      margin-bottom: 0.8rem;
      display: inline-block;
    }
    .valeurs-band-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      margin: 0;
    }
    .valeurs-band-title span { color: var(--green-light); }
    .valeurs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }
    .valeur-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(77,184,104,0.15);
      border-top: 4px solid var(--green-main);
      border-radius: 12px;
      padding: 2.2rem 1.8rem;
      transition: background 0.35s, transform 0.35s, border-color 0.35s, box-shadow 0.35s;
      cursor: default;
    }
    .valeur-card:hover {
      background: rgba(77,184,104,0.08);
      border-color: rgba(77,184,104,0.45);
      border-top-color: var(--green-light);
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(77,184,104,0.2);
    }
    .valeur-icon {
      font-size: 2.4rem;
      display: block;
      margin-bottom: 1rem;
      filter: drop-shadow(0 2px 8px rgba(77,184,104,0.3));
    }
    .valeur-card h4 {
      color: var(--green-light);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      letter-spacing: 0.02em;
    }
    .valeur-card p {
      color: rgba(255,255,255,0.62);
      font-size: 0.88rem;
      line-height: 1.7;
      margin: 0;
    }
    @media (max-width: 900px) {
      .valeurs-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .mvv-inline { grid-template-columns: 1fr; gap: 0.8rem; }
    }
    .about-welcome-block {
      margin-bottom: 1.2rem;
      padding: 1rem 1.2rem;
      background: var(--white);
      border-left: 3px solid var(--green-main);
      border-radius: 0 6px 6px 0;
    }
    .about-tagline {
      font-size: 0.95rem;
      color: var(--green-deep);
      margin-bottom: 0.4rem !important;
    }
    .about-welcome-block p:last-child {
      font-size: 0.92rem;
      color: var(--gray-dark);
      margin: 0;
      line-height: 1.65;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-visual { position: relative; }
    .about-logo-box {
      background: var(--black);
      border-radius: 16px;
      padding: 3.5rem 2.5rem;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 30px 80px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
    }
    .about-logo-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--green-deep), var(--green-main), var(--green-light), var(--green-main), var(--green-deep));
    }
    .about-logo-box img {
      max-width: 85%;
      filter: brightness(1.15);
    }
    .about-logo-box .tagline {
      margin-top: 1.5rem;
      font-size: 0.88rem;
      color: var(--green-light);
      font-style: italic;
      letter-spacing: 0.04em;
    }
    .float-badge {
      position: absolute;
      padding: 9px 16px;
      border-radius: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      line-height: 1.3;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .badge-metfp {
      background: var(--white);
      color: var(--green-deep);
      border: 2px solid var(--green-pale);
      top: -14px; left: -14px;
    }
    .badge-cisco {
      background: var(--green-main);
      color: var(--white);
      bottom: -14px; right: -14px;
    }
    .about-text p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.4rem;
      font-size: 1rem;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      background: var(--white);
      border-radius: 8px;
      border: 1px solid var(--green-pale);
      border-left: 3px solid var(--green-main);
      transition: all 0.3s;
    }
    .pillar:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.07); }
    .pillar-icon { font-size: 1.3rem; flex-shrink: 0; }
    .pillar h4 { font-weight: 700; font-size: 0.88rem; color: var(--black); margin-bottom: 3px; }
    .pillar p { font-size: 0.78rem; color: var(--gray); margin: 0; line-height: 1.4; }

    /* ===== FORMATIONS ===== */
    .formations { background: var(--white); }
    .formations-pole-header {
      max-width: 1200px;
      margin: 3rem auto 1.5rem auto;
      padding: 1.2rem 2rem;
      background: var(--black);
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      border-left: 5px solid var(--green-main);
    }
    .formations-pole-header h3 {
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin: 0;
    }
    .pole-sub { color: rgba(255,255,255,0.55); font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 400; }
    .pole-badge {
      background: var(--green-main);
      color: white;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
      white-space: nowrap;
      letter-spacing: 0.05em;
    }
    .pole-badge-tech { background: #1565C0; }
    .pole-badge-energie { background: #E65100; }
    .formation-card-tech { border-top: 4px solid #1565C0; }
    .formation-card-tech .card-type { background: rgba(21,101,192,0.1); color: #1565C0; }
    .formation-card-cps { border-top: 4px solid #6A1B9A; }
    .formation-card-cps .card-type { background: rgba(106,27,154,0.1); color: #6A1B9A; }
    .formation-card-energie { border-top: 4px solid #E65100; }
    .formation-card-energie .card-type { background: rgba(230,81,0,0.1); color: #E65100; }
    .card-type-bt { background: rgba(21,101,192,0.1) !important; color: #1565C0 !important; }
    .card-type-cps { background: rgba(106,27,154,0.1) !important; color: #6A1B9A !important; }
    .card-type-energie { background: rgba(230,81,0,0.1) !important; color: #E65100 !important; }
    .formations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .formation-card {
      background: var(--off-white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }
    .formation-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--green-main);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }
    .formation-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
      border-color: rgba(26,107,47,0.2);
    }
    .formation-card:hover::after { transform: scaleX(1); }
    .card-top {
      background: var(--black);
      padding: 24px 24px 20px;
      position: relative;
      overflow: hidden;
    }
    .card-top::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--green-main), var(--green-light));
    }
    .card-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
    .card-top h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }
    .card-type {
      display: inline-block;
      background: rgba(26,107,47,0.4);
      border: 1px solid rgba(77,184,104,0.3);
      color: var(--green-light);
      padding: 3px 10px;
      border-radius: 3px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .card-body { padding: 20px 24px; }
    .card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
    .card-skills { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .card-skills li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--black);
      font-weight: 500;
    }
    .skill-check {
      width: 18px; height: 18px;
      background: var(--green-main);
      color: white;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 900;
      flex-shrink: 0;
    }
    .card-foot { padding: 0 24px 20px; }
    .card-cta {
      display: block;
      text-align: center;
      background: var(--black);
      color: var(--white);
      padding: 11px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s;
    }
    .card-cta:hover { background: var(--green-main); border-color: var(--green-main); }

    /* ===== CISCO ===== */
    .cisco-section {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    .cisco-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,107,47,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,107,47,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cisco-glow {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(26,107,47,0.25) 0%, transparent 70%);
      right: -100px; top: 50%;
      transform: translateY(-50%);
      filter: blur(60px);
    }
    .cisco-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .cisco-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }
    .cisco-feat {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      background: rgba(255,255,255,0.04);
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid var(--green-main);
      transition: background 0.3s;
    }
    .cisco-feat:hover { background: rgba(26,107,47,0.12); }
    .cisco-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
    .cisco-feat h4 { font-weight: 700; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; }
    .cisco-feat p { font-size: 0.81rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
    .cisco-visual { display: flex; flex-direction: column; gap: 1.2rem; }
    .cisco-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-top: 3px solid var(--green-main);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
    }
    .cisco-logo-box {
      background: var(--white);
      border-radius: 8px;
      padding: 12px 20px;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .cisco-logo-box img { height: 36px; }
    .cisco-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 6px;
    }
    .cisco-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .cisco-courses { display: flex; flex-direction: column; gap: 8px; }
    .cisco-course {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 15px;
      background: rgba(255,255,255,0.04);
      border-radius: 6px;
      color: rgba(255,255,255,0.85);
      font-size: 0.88rem;
      font-weight: 500;
      border: 1px solid rgba(255,255,255,0.07);
      transition: all 0.2s;
    }
    .cisco-course:hover { background: rgba(26,107,47,0.2); border-color: rgba(77,184,104,0.2); }
    .c-dot {
      width: 7px; height: 7px;
      background: var(--green-light);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ===== ADMISSIONS ===== */
    .admissions { background: var(--off-white); }
    .steps-wrap {
      max-width: 860px;
      margin: 0 auto;
    }
    .step {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 1.8rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      transition: padding-left 0.3s;
    }
    .step:last-child { border-bottom: none; }
    .step:hover { padding-left: 8px; }
    .step-num {
      width: 52px; height: 52px;
      background: var(--black);
      color: var(--green-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
      border: 2px solid rgba(77,184,104,0.2);
      transition: all 0.3s;
    }
    .step:hover .step-num {
      background: var(--green-main);
      color: var(--white);
      border-color: var(--green-main);
    }
    .step-info h3 { font-weight: 700; font-size: 1.05rem; color: var(--black); margin-bottom: 6px; }
    .step-info p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
    .admit-cta {
      background: var(--black);
      border-radius: 16px;
      padding: 3rem;
      text-align: center;
      margin-top: 3rem;
      max-width: 860px;
      margin-left: auto; margin-right: auto;
      border-top: 3px solid var(--green-main);
      position: relative;
      overflow: hidden;
    }
    .admit-cta::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--green-deep), var(--green-main), var(--green-light));
    }
    .admit-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--white);
      margin-bottom: 0.7rem;
    }
    .admit-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1.8rem; font-size: 0.93rem; }
    .admit-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ===== CONTACT ===== */
    .contact { background: var(--white); }
    .contact-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
    }
    .contact-info p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-size: 0.98rem;
    }
    .contact-cards { display: flex; flex-direction: column; gap: 0.8rem; }
    .c-card {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 14px 18px;
      background: var(--off-white);
      border-radius: 8px;
      border: 1px solid rgba(0,0,0,0.06);
      border-left: 3px solid var(--green-main);
      text-decoration: none;
      transition: all 0.25s;
    }
    .c-card:hover {
      transform: translateX(5px);
      background: var(--green-pale);
    }
    .c-icon { font-size: 1.3rem; flex-shrink: 0; }
    .c-text h4 { font-weight: 700; color: var(--black); font-size: 0.85rem; margin-bottom: 2px; }
    .c-text p { font-size: 0.82rem; color: var(--gray); margin: 0; }
    .form-box {
      background: var(--off-white);
      border-radius: 14px;
      padding: 2.5rem;
      border: 1px solid rgba(0,0,0,0.06);
      border-top: 3px solid var(--green-main);
    }
    .form-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--black);
      margin-bottom: 1.5rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .fg { display: flex; flex-direction: column; gap: 5px; }
    .fg.full { grid-column: span 2; }
    .fg label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }
    .fg input, .fg select, .fg textarea {
      padding: 11px 14px;
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--black);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--green-main);
      box-shadow: 0 0 0 3px rgba(26,107,47,0.1);
    }
    .fg textarea { resize: vertical; min-height: 95px; }
    .form-submit {
      width: 100%;
      padding: 13px;
      background: var(--green-main);
      color: var(--white);
      border: none;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
      letter-spacing: 0.03em;
    }
    .form-submit:hover {
      background: var(--green-deep);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(10,61,31,0.3);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.55);
      padding: 60px 5% 30px;
      border-top: 3px solid var(--green-main);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-brand img { height: 46px; margin-bottom: 1.2rem; filter: brightness(1.2); }
    .footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 0.8rem; }
    .footer-col h4 {
      color: var(--white);
      font-weight: 700;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--green-main);
      display: inline-block;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.86rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--green-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--green-light); }
    .foot-links { display: flex; gap: 1.5rem; }

    /* ===== WHATSAPP ===== */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    .wa-tooltip {
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      padding: 7px 12px;
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(8px);
      transition: all 0.3s;
      pointer-events: none;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
    .wa-btn {
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      animation: waPulse 3s ease-in-out infinite;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
    .wa-btn svg { width: 28px; height: 28px; fill: white; }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
    }

    /* ===== REVEAL ===== */
    .reveal, .reveal-l, .reveal-r {
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal { transform: translateY(28px); }
    .reveal-l { transform: translateX(-28px); }
    .reveal-r { transform: translateX(28px); }
    .reveal.visible, .reveal-l.visible, .reveal-r.visible, .reveal.vis, .reveal-l.vis, .reveal-r.vis {
      opacity: 1 !important; transform: none !important;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .about-grid, .cisco-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-pillars { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .gal-slide { flex: 0 0 200px; } .gal-slide img { height: 160px; }
      .flyers-grid { grid-template-columns: 1fr 1fr; }
      .hero-layout { grid-template-columns: 1fr !important; }
      .hero-right { display: none !important; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--black-soft);
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1rem;
        border-top: 1px solid rgba(255,255,255,0.08);
      }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .fg.full { grid-column: span 1; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .certif-bar { gap: 1.2rem; }
      .certif-sep { display: none; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .formations-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-stats { gap: 1.5rem; }
    }

    /* ===== BOUTON SHARE WHATSAPP SUR CARTES ===== */
    .card-share { margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--gray-light); }
    .share-wa {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #25D366;
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .share-wa:hover { background: #1ebe5d; transform: scale(1.04); }

    /* ===== TÉMOIGNAGES ===== */
    .temoignages-section { background: var(--off-white); padding: 100px 5%; }
    .temoignages-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: 3rem auto 0;
    }
    .temoignage-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2.2rem;
      position: relative;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      border-top: 4px solid var(--green-main);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .temoignage-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,107,47,0.15); }
    .temoignage-quote {
      font-size: 5rem;
      line-height: 0.7;
      color: var(--green-pale);
      font-family: 'Playfair Display', serif;
      margin-bottom: 0.8rem;
      display: block;
    }
    .temoignage-text {
      font-size: 0.92rem;
      color: var(--gray-dark);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .temoignage-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--gray-light);
    }
    .temoignage-avatar {
      width: 48px; height: 48px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .temoignage-author strong { display: block; font-size: 0.95rem; color: var(--black); margin-bottom: 2px; }
    .temoignage-author span { display: block; font-size: 0.78rem; color: var(--gray); }
    .temoignage-job { color: var(--green-main) !important; font-weight: 600 !important; margin-top: 2px; }
    @media (max-width: 768px) { .temoignages-grid { grid-template-columns: 1fr; } }

    /* ===== VIE DU CENTRE ===== */
    .vie-centre-section { background: var(--white); padding: 100px 5%; }
    .vie-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 3rem auto 0;
    }
    .vie-card {
      background: var(--off-white);
      border-radius: 12px;
      padding: 2rem;
      border-left: 5px solid var(--green-main);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .vie-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(26,107,47,0.12); }
    .vie-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
    .vie-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.7rem; }
    .vie-card p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 1rem; }
    .vie-list { list-style: none; padding: 0; margin: 0; }
    .vie-list li { font-size: 0.83rem; color: var(--gray-dark); padding: 4px 0; }
    @media (max-width: 768px) { .vie-grid { grid-template-columns: 1fr; } }

    /* ===== FORMULAIRE AVANCÉ ===== */
    .req { color: #e53935; font-weight: 700; }
    .form-req-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.5rem; }
    select optgroup { font-weight: 700; color: var(--green-deep); }

    /* ===== NAV G-MLC BOUTON ===== */
    .nav-gmlc {
      background: rgba(26,107,47,0.18) !important;
      border: 1px solid rgba(77,184,104,0.5) !important;
      border-radius: 4px !important;
      padding: 5px 10px !important;
      color: var(--green-light) !important;
      font-weight: 700 !important;
      font-size: 0.75rem !important;
    }
    .nav-gmlc:hover { background: var(--green-main) !important; color: white !important; }

@media (max-width: 900px) {
      .gal-slide { flex: 0 0 200px; } .gal-slide img { height: 160px; }
      .hero-layout { grid-template-columns: 1fr !important; }
      .hero-right { display: none !important; }
      .hamburger { display: flex !important; }
      .nav-links {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--black-soft);
        flex-direction: column;
        padding: 1rem 5% 2rem;
        gap: 0;
        border-bottom: 3px solid var(--green-main);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        z-index: 998;
      }
      .nav-links.open { display: flex !important; }
      .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
      .nav-links > li > a { display: block; padding: 12px 0; font-size: 0.9rem !important; }
      .dropdown-menu {
        position: static !important;
        display: none;
        background: rgba(255,255,255,0.04) !important;
        border: none !important;
        border-left: 3px solid var(--green-main) !important;
        box-shadow: none !important;
        margin-left: 1rem;
        min-width: 0 !important;
        border-radius: 0 !important;
      }
      .nav-dropdown.mob-open .dropdown-menu { display: block !important; }
      .footer-inner { grid-template-columns: 1fr 1fr !important; }
    }
  
/* ===== FOOTER ===== */
.site-footer { background: #050f08; padding: 60px 5% 0; border-top: 3px solid var(--green-main); margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; }
.footer-logo { height: 44px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 0.5rem; }
.footer-social { display: flex; gap: 12px; margin-top: 1.2rem; }
.footer-social a { font-size: 1.4rem; text-decoration: none; transition: transform 0.2s; display: inline-block; }
.footer-social a:hover { transform: scale(1.25); }
.footer-col h4 { color: var(--green-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-col p { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 0.45rem; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 5%; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ===== NAV ACTIVE STATE ===== */
.nav-active, .nav-active::after { color: var(--green-light) !important; width: 100% !important; }

/* ===== HAMBURGER ANIMATION ===== */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .hamburger { display: flex !important; }
  .nav-links {
    display: none !important;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--black-soft);
    flex-direction: column !important;
    padding: 0.5rem 0 2rem;
    gap: 0 !important;
    border-bottom: 3px solid var(--green-main);
    overflow-y: auto;
    z-index: 998;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  }
  .nav-links.open { display: flex !important; }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links > li > a { display: block; padding: 14px 6%; font-size: 0.9rem !important; letter-spacing: 0.04em !important; }
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: rgba(255,255,255,0.04) !important;
    border: none !important;
    border-left: 4px solid var(--green-main) !important;
    box-shadow: none !important;
    margin-left: 6%;
    min-width: 0 !important;
    border-radius: 0 !important;
    border-top: none !important;
  }
  .nav-dropdown.mob-open > .dropdown-menu { display: block !important; }
  .nav-dropdown.mob-open > a { color: var(--green-light) !important; }
  .dropdown-menu li a { padding: 10px 14px !important; font-size: 0.83rem !important; }
  .hero-layout { grid-template-columns: 1fr !important; }
  .hero-right { display: none !important; }
  .hero { text-align: left !important; padding: 100px 5% 60px !important; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .dg-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .dg-photo-wrap { max-width: 280px !important; margin: 0 auto !important; }
  .valeurs-grid { grid-template-columns: 1fr !important; }
  .temoignages-grid { grid-template-columns: 1fr !important; }
  .vie-grid { grid-template-columns: 1fr !important; }
  .mvv-inline { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .formations-grid { grid-template-columns: 1fr !important; }
  .flyers-grid { grid-template-columns: 1fr 1fr !important; }
  .gal-slide { flex: 0 0 200px !important; }
  .gal-slide img { height: 150px !important; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr !important; }
  .flyers-grid { grid-template-columns: 1fr !important; }
  nav { padding: 0 4% !important; }
}
@media (min-width: 901px) {
  .hamburger { display: none !important; }
}

/* ===== NO-JS FALLBACK — always show content ===== */
.reveal, .reveal-l, .reveal-r {
  opacity: 1 !important;
  transform: none !important;
}
