  /* ============================================================
       VARIABLES & RESET
    ============================================================ */
    :root {
      --vert:        #1a3d2e;
      --vert-moyen:  #245c43;
      --vert-clair:  #2e7a58;
      --vert-pale:   #d4e8dd;
      --noir:        #141414;
      --noir-doux:   #1e1e1e;
      --gris:        #3a3a3a;
      --gris-clair:  #8a8a8a;
      --blanc:       #f9f6f1;
      --blanc-pur:   #ffffff;
      --or:          #c9a84c;
      --or-pale:     #e8d5a3;

      --police-titre: 'Cormorant Garamond', serif;
      --police-corps: 'DM Sans', sans-serif;

      --ombre:    0 4px 32px rgba(0,0,0,0.18);
      --ombre-lg: 0 12px 60px rgba(0,0,0,0.28);
      --rayon:    4px;

      --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--police-corps);
      background-color: var(--blanc);
      color: var(--noir);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }
    ul  { list-style: none; }

    /* ============================================================
       UTILITAIRES
    ============================================================ */
    .container {
      width: 90%;
      max-width: 1160px;
      margin-inline: auto;
    }

    .section-label {
      font-family: var(--police-corps);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: var(--police-titre);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.18;
      color: var(--vert);
    }

    .section-title.light { color: var(--blanc); }

    .section-intro {
      font-size: 1.05rem;
      color: var(--gris);
      max-width: 580px;
      line-height: 1.8;
      margin-top: 1rem;
    }

    .section-intro.light { color: rgba(255,255,255,0.75); }

    .divider {
      width: 48px;
      height: 2px;
      background: var(--or);
      margin: 1.5rem 0 2.5rem;
    }

    /* ============================================================
       ANIMATIONS FADE-IN AU SCROLL
    ============================================================ */
    .fade-in {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       BOUTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 2rem;
      font-family: var(--police-corps);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
    }

    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.08);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn:hover::after { opacity: 1; }

    .btn-primary {
      background: var(--or);
      color: var(--noir);
    }

    .btn-primary:hover {
      background: #b8913e;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201,168,76,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--blanc);
      border: 1px solid rgba(255,255,255,0.45);
    }

    .btn-outline:hover {
      border-color: var(--or);
      color: var(--or);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--vert);
      color: var(--blanc);
    }

    .btn-dark:hover {
      background: var(--vert-moyen);
      transform: translateY(-2px);
      box-shadow: var(--ombre);
    }

    /* ============================================================
       BARRE DE NAVIGATION
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.4rem 0;
      transition: var(--transition);
    }

    #navbar.scrolled {
      background: rgba(20, 61, 46, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 1rem 0;
      box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .nav-logo-emblem {
      width: 42px;
      height: 42px;
      border: 1.5px solid var(--or);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo-emblem svg {
      width: 22px;
      height: 22px;
      fill: var(--or);
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .nav-logo-text strong {
      font-family: var(--police-titre);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--blanc-pur);
      letter-spacing: 0.02em;
    }

    .nav-logo-text span {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--or-pale);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--or);
      transition: width 0.35s;
    }

    .nav-links a:hover { color: var(--or); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 0.65rem 1.4rem;
      font-size: 0.75rem;
    }

    /* Hamburger mobile */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--blanc-pur);
      transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Menu mobile */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--vert);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: var(--police-titre);
      font-size: 2rem;
      color: var(--blanc-pur);
      font-weight: 400;
      transition: color 0.3s;
    }

    .mobile-menu a:hover { color: var(--or); }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #hero {
      min-height: 100vh;
      background: var(--vert);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Fond texturé subtil */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 80% at 70% 50%, rgba(36,92,67,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(201,168,76,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Motif géométrique décoratif */
    .hero-pattern {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 560px;
      height: 560px;
      opacity: 0.06;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 7rem 0 5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.4rem 1rem;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--or-pale);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 1.6rem;
      border-radius: 2px;
    }

    .hero-badge span { color: var(--or); }

    .hero-title {
      font-family: var(--police-titre);
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--blanc-pur);
      margin-bottom: 1.4rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--or-pale);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 2.4rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* Encadré photo côté droit */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-photo-frame {
      position: relative;
      width: 100%;
      max-width: 440px;
      aspect-ratio: 3/4;
      background: linear-gradient(145deg, var(--vert-moyen), var(--vert-clair));
      border: 1px solid rgba(201,168,76,0.3);
    }

    /* Cadre décoratif */
    .hero-photo-frame::before {
      content: '';
      position: absolute;
      top: -12px;
      left: -12px;
      right: 12px;
      bottom: 12px;
      border: 1px solid rgba(201,168,76,0.15);
      pointer-events: none;
    }

    .hero-photo-frame::after {
      content: '';
      position: absolute;
      bottom: -12px;
      right: -12px;
      width: 60%;
      height: 60%;
      background: var(--or);
      opacity: 0.06;
      pointer-events: none;
    }

    /* Placeholder photo élégant */
    .photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 2rem;
    }

    .photo-placeholder-icon {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .photo-placeholder-icon svg {
      width: 120px;
      height: 120px;
      opacity: 0.15;
      fill: var(--or);
    }

    .photo-placeholder-label {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 1.2rem 1.5rem;
      background: rgba(20,61,46,0.85);
      border-top: 1px solid rgba(201,168,76,0.3);
      width: calc(100% + 0px);
    }

    .photo-placeholder-label strong {
      display: block;
      font-family: var(--police-titre);
      font-size: 1.1rem;
      color: var(--or-pale);
      font-weight: 400;
    }

    .photo-placeholder-label span {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* Statistiques flottantes */
    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item { text-align: left; }

    .stat-number {
      font-family: var(--police-titre);
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--or);
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.5);
      margin-top: 0.3rem;
      display: block;
    }

    /* Flèche scroll */
    .scroll-arrow {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.35);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }

    .scroll-arrow svg {
      width: 18px;
      height: 18px;
      stroke: rgba(255,255,255,0.35);
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ============================================================
       BANDEAU CHIFFRES
    ============================================================ */
    #bandeau {
      background: var(--noir-doux);
      padding: 3rem 0;
      border-top: 1px solid rgba(201,168,76,0.15);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    .bandeau-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .bandeau-item {
      text-align: center;
      padding: 1rem;
      border-right: 1px solid rgba(255,255,255,0.07);
    }

    .bandeau-item:last-child { border-right: none; }

    .bandeau-number {
      font-family: var(--police-titre);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--or);
      line-height: 1;
    }

    .bandeau-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.45);
      margin-top: 0.5rem;
    }

    /* ============================================================
       SECTION : MOT DE LA FONDATRICE
    ============================================================ */
    #fondatrice {
      padding: 7rem 0;
      background: var(--blanc);
    }

    .fondatrice-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 5rem;
      align-items: center;
    }

    .fondatrice-portrait {
      position: relative;
    }

    .fondatrice-portrait-inner {
      aspect-ratio: 4/5;
      background: linear-gradient(155deg, var(--vert-pale), #b8d4c5);
      position: relative;
      overflow: hidden;
    }

    .fondatrice-portrait-inner::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(transparent, rgba(26,61,46,0.7));
    }

    .portrait-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .portrait-placeholder svg {
      width: 100px;
      height: 100px;
      fill: var(--vert-moyen);
      opacity: 0.3;
    }

    .portrait-insert-note {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 1.4rem;
      text-align: center;
    }

    .portrait-insert-note strong {
      display: block;
      font-family: var(--police-titre);
      font-size: 1rem;
      color: var(--blanc-pur);
    }

    .portrait-insert-note span {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* Ligne décorative gauche */
    .fondatrice-portrait::before {
      content: '';
      position: absolute;
      top: 20px;
      left: -20px;
      bottom: -20px;
      width: 2px;
      background: linear-gradient(var(--or), transparent);
    }

    /* Sceau officiel décoratif */
    .fondatrice-portrait .sceau {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 80px;
      height: 80px;
      background: var(--vert);
      border: 2px solid var(--or);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .fondatrice-portrait .sceau svg {
      width: 36px;
      height: 36px;
      fill: var(--or);
    }

    .fondatrice-content { padding-right: 1rem; }

    blockquote {
      font-family: var(--police-titre);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.55;
      color: var(--vert);
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 2rem;
    }

    blockquote::before {
      content: '"';
      position: absolute;
      left: -0.2rem;
      top: -1rem;
      font-size: 5rem;
      color: var(--or);
      opacity: 0.3;
      font-family: var(--police-titre);
      line-height: 1;
    }

    .fondatrice-bio {
      font-size: 0.95rem;
      color: var(--gris);
      line-height: 1.85;
      margin-bottom: 2rem;
    }

    .fondatrice-signature {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .fondatrice-signature .ligne-or {
      width: 40px;
      height: 1px;
      background: var(--or);
    }

    .fondatrice-signature span {
      font-family: var(--police-titre);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--vert-moyen);
    }

    /* ============================================================
       SECTION : NOS PROGRAMMES
    ============================================================ */
    #programmes {
      padding: 7rem 0;
      background: var(--vert);
      position: relative;
      overflow: hidden;
    }

    #programmes::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .programmes-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .programmes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .programme-card {
      background: rgba(26,61,46,0.85);
      padding: 3rem 2.5rem;
      transition: var(--transition);
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .programme-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--or);
      transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .programme-card:hover {
      background: rgba(36,92,67,0.95);
    }

    .programme-card:hover::after { width: 100%; }

    .programme-icon {
      width: 52px;
      height: 52px;
      border: 1px solid rgba(201,168,76,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.8rem;
      transition: var(--transition);
    }

    .programme-card:hover .programme-icon {
      border-color: var(--or);
      background: rgba(201,168,76,0.08);
    }

    .programme-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--or);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .programme-title {
      font-family: var(--police-titre);
      font-size: 1.45rem;
      font-weight: 400;
      color: var(--blanc-pur);
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }

    .programme-desc {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
      margin-bottom: 1.8rem;
    }

    .programme-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--or);
      transition: gap 0.3s;
    }

    .programme-link svg {
      width: 14px;
      height: 14px;
      stroke: var(--or);
      stroke-width: 1.5;
    }

    .programme-link:hover { gap: 0.85rem; }

    /* ============================================================
       SECTION : DÉONTOLOGIE & PROCÉDURES
    ============================================================ */
    #deontologie {
      padding: 7rem 0;
      background: var(--blanc);
    }

    .deo-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 5rem;
      align-items: start;
    }

    .deo-sticky {
      position: sticky;
      top: 100px;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step-item {
      display: flex;
      gap: 1.5rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      position: relative;
    }

    .step-item:last-child { border-bottom: none; }

    .step-number {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border: 1px solid var(--vert-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--police-titre);
      font-size: 1rem;
      color: var(--vert);
      font-weight: 600;
      background: var(--blanc);
      position: relative;
      z-index: 1;
    }

    .step-connector {
      position: absolute;
      left: 21px;
      top: calc(2rem + 42px);
      bottom: 0;
      width: 1px;
      background: var(--vert-pale);
    }

    .step-item:last-child .step-connector { display: none; }

    .step-body { padding-top: 0.5rem; }

    .step-title {
      font-family: var(--police-titre);
      font-size: 1.15rem;
      color: var(--vert);
      margin-bottom: 0.4rem;
      font-weight: 600;
    }

    .step-desc {
      font-size: 0.88rem;
      color: var(--gris);
      line-height: 1.75;
    }

    /* Encart mis en valeur */
    .deo-engagement {
      background: var(--vert);
      padding: 2.5rem;
      border-left: 3px solid var(--or);
      margin-top: 2.5rem;
    }

    .deo-engagement p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.8;
    }

    .deo-engagement strong {
      display: block;
      font-family: var(--police-titre);
      font-size: 1.1rem;
      color: var(--or-pale);
      margin-bottom: 0.8rem;
      font-weight: 400;
    }

    /* ============================================================
       SECTION : TÉMOIGNAGES
    ============================================================ */
    #temoignages {
      padding: 7rem 0;
      background: var(--noir-doux);
      overflow: hidden;
    }

    .temoignages-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .temoignages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .temoignage-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem;
      transition: var(--transition);
      position: relative;
    }

    .temoignage-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(201,168,76,0.25);
      transform: translateY(-4px);
    }

    .temoignage-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1.5rem;
    }

    .temoignage-stars svg {
      width: 13px;
      height: 13px;
      fill: var(--or);
    }

    .temoignage-text {
      font-family: var(--police-titre);
      font-size: 1.08rem;
      font-style: italic;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .temoignage-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--vert-moyen);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: var(--police-titre);
      font-size: 1rem;
      color: var(--or-pale);
      font-weight: 600;
      border: 1px solid rgba(201,168,76,0.25);
    }

    .author-info strong {
      display: block;
      font-size: 0.85rem;
      color: var(--blanc-pur);
      font-weight: 500;
    }

    .author-info span {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.08em;
    }

    .temoignage-tag {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--or);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.25rem 0.6rem;
    }

    /* ============================================================
       SECTION : FORMULAIRE DE CANDIDATURE
    ============================================================ */
    #postuler {
      padding: 7rem 0;
      background: var(--blanc);
    }

    .postuler-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    /* --- Indicateur d'étapes --- */
    .form-stepper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;
      row-gap: 1rem;
    }

    .form-step-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      position: relative;
    }

    .form-step-item:not(:last-child)::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--vert-pale);
      margin: 0 0.4rem;
      flex-shrink: 0;
      transition: background 0.4s;
    }

    .form-step-item.done:not(:last-child)::after {
      background: var(--vert-clair);
    }

    .step-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--vert-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--gris-clair);
      background: var(--blanc);
      transition: all 0.35s;
      flex-shrink: 0;
    }

    .form-step-item.active .step-dot {
      border-color: var(--vert);
      background: var(--vert);
      color: var(--blanc-pur);
      box-shadow: 0 0 0 4px rgba(26,61,46,0.1);
    }

    .form-step-item.done .step-dot {
      border-color: var(--vert-clair);
      background: var(--vert-clair);
      color: var(--blanc-pur);
    }

    .step-dot-label {
      font-size: 0.7rem;
      color: var(--gris-clair);
      letter-spacing: 0.06em;
      white-space: nowrap;
      transition: color 0.35s;
    }

    .form-step-item.active .step-dot-label { color: var(--vert); font-weight: 500; }
    .form-step-item.done  .step-dot-label  { color: var(--vert-clair); }

    /* --- Enveloppe formulaire --- */
    .form-wrapper {
      max-width: 860px;
      margin-inline: auto;
      background: var(--blanc-pur);
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 8px 48px rgba(0,0,0,0.06);
    }

    /* Barre de progression */
    .form-progress-bar {
      height: 3px;
      background: var(--vert-pale);
      position: relative;
      overflow: hidden;
    }

    .form-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--vert-moyen), var(--or));
      transition: width 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
      width: 25%;
    }

    /* Contenu des étapes */
    .form-panels {
      padding: 3rem 3.5rem;
    }

    .form-panel { display: none; }
    .form-panel.active { display: block; }

    .form-panel-title {
      font-family: var(--police-titre);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--vert);
      margin-bottom: 0.4rem;
    }

    .form-panel-subtitle {
      font-size: 0.85rem;
      color: var(--gris-clair);
      margin-bottom: 2.5rem;
    }

    /* Grille de champs */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
      margin-bottom: 1.4rem;
    }

    .form-row.full { grid-template-columns: 1fr; }
    .form-row.three { grid-template-columns: 1fr 1fr 1fr; }

    /* Groupe de champ */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gris);
    }

    .form-group label .req {
      color: var(--or);
      margin-left: 2px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1px solid rgba(0,0,0,0.12);
      background: var(--blanc);
      font-family: var(--police-corps);
      font-size: 0.9rem;
      color: var(--noir);
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      appearance: none;
      -webkit-appearance: none;
      border-radius: var(--rayon);
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.7;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--vert-moyen);
      box-shadow: 0 0 0 3px rgba(26,61,46,0.08);
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: #c0392b;
      box-shadow: 0 0 0 3px rgba(192,57,43,0.07);
    }

    .form-error-msg {
      font-size: 0.72rem;
      color: #c0392b;
      display: none;
    }

    .form-error-msg.visible { display: block; }

    /* Indicateur de caractères */
    .char-counter {
      font-size: 0.68rem;
      color: var(--gris-clair);
      text-align: right;
      margin-top: 0.2rem;
    }

    /* Upload de fichier */
    .file-upload-zone {
      border: 2px dashed rgba(0,0,0,0.12);
      background: var(--blanc);
      padding: 2.5rem;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border-radius: var(--rayon);
      position: relative;
    }

    .file-upload-zone:hover,
    .file-upload-zone.dragover {
      border-color: var(--vert-moyen);
      background: rgba(26,61,46,0.03);
    }

    .file-upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .file-upload-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 1rem;
      background: var(--vert-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .file-upload-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--vert-moyen);
      fill: none;
      stroke-width: 1.5;
    }

    .file-upload-title {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--vert);
      margin-bottom: 0.3rem;
    }

    .file-upload-hint {
      font-size: 0.75rem;
      color: var(--gris-clair);
    }

    .file-list {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .file-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 0.9rem;
      background: var(--vert-pale);
      border-radius: var(--rayon);
      font-size: 0.8rem;
      color: var(--vert);
    }

    .file-item-name {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .file-item-name svg {
      width: 14px;
      height: 14px;
      stroke: var(--vert-moyen);
      fill: none;
      stroke-width: 1.5;
    }

    .file-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--gris-clair);
      padding: 0;
      display: flex;
      align-items: center;
      transition: color 0.2s;
    }

    .file-remove:hover { color: #c0392b; }

    .file-remove svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    /* Consentement */
    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      padding: 1.4rem;
      background: rgba(26,61,46,0.04);
      border: 1px solid var(--vert-pale);
      border-radius: var(--rayon);
      margin-bottom: 1.5rem;
    }

    .form-consent input[type="checkbox"] {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: var(--vert);
      margin-top: 2px;
    }

    .form-consent label {
      font-size: 0.82rem;
      color: var(--gris);
      line-height: 1.7;
      cursor: pointer;
    }

    .form-consent label a {
      color: var(--vert-clair);
      text-decoration: underline;
    }

    /* Navigation du formulaire */
    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.8rem 3.5rem;
      background: rgba(0,0,0,0.02);
      border-top: 1px solid rgba(0,0,0,0.06);
      gap: 1rem;
    }

    .form-footer-left { display: flex; align-items: center; gap: 0.5rem; }

    .form-page-info {
      font-size: 0.72rem;
      color: var(--gris-clair);
      letter-spacing: 0.1em;
    }

    .btn-form-nav {
      padding: 0.85rem 1.8rem;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
    }

    .btn-prev {
      background: transparent;
      color: var(--gris);
      border: 1px solid rgba(0,0,0,0.12);
    }

    .btn-prev:hover { border-color: var(--vert); color: var(--vert); transform: none; }

    .btn-next {
      background: var(--vert);
      color: var(--blanc-pur);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-next:hover { background: var(--vert-moyen); }

    .btn-next svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .btn-submit {
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
    }

    .btn-submit:hover { background: #128C7E; }

    .btn-submit svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }

    /* Message de succès */
    .form-success {
      display: none;
      text-align: center;
      padding: 5rem 3rem;
    }

    .form-success.visible { display: block; }

    .success-icon {
      width: 80px;
      height: 80px;
      background: var(--vert);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
    }

    .success-icon svg {
      width: 36px;
      height: 36px;
      stroke: var(--blanc-pur);
      fill: none;
      stroke-width: 2;
    }

    .form-success h3 {
      font-family: var(--police-titre);
      font-size: 2rem;
      color: var(--vert);
      font-weight: 400;
      margin-bottom: 1rem;
    }

    .form-success p {
      font-size: 0.95rem;
      color: var(--gris);
      max-width: 480px;
      margin-inline: auto;
      line-height: 1.8;
    }

    .form-success .wa-followup {
      margin-top: 2.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      background: var(--vert);
      color: var(--blanc-pur);
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: var(--transition);
    }

    .form-success .wa-followup:hover { background: var(--vert-moyen); }

    .form-success .wa-followup svg { width: 16px; height: 16px; fill: var(--or); }

    /* (responsive formulaire intégré dans les blocs globaux ci-dessus) */

    /* ============================================================
       SECTION : PARTENAIRES / CRÉDIBILITÉ
    ============================================================ */
    #partenaires {
      padding: 4rem 0;
      background: var(--blanc);
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .partenaires-label {
      text-align: center;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gris-clair);
      margin-bottom: 2.5rem;
    }

    .partenaires-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
    }

    .partenaire-item {
      font-family: var(--police-titre);
      font-size: 1.05rem;
      color: rgba(0,0,0,0.2);
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }

    .partenaire-item:hover { color: var(--vert-moyen); }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: var(--noir);
      padding: 5rem 0 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand strong {
      font-family: var(--police-titre);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--blanc-pur);
      display: block;
      margin-bottom: 0.3rem;
    }

    .footer-brand .tagline {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--or);
      margin-bottom: 1.2rem;
    }

    .footer-brand p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.8;
      max-width: 260px;
    }

    .footer-socials {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-btn:hover {
      border-color: var(--or);
      background: rgba(201,168,76,0.08);
    }

    .social-btn svg {
      width: 16px;
      height: 16px;
      stroke: rgba(255,255,255,0.5);
      fill: none;
      stroke-width: 1.5;
    }

    .social-btn:hover svg { stroke: var(--or); }

    .footer-col h4 {
      font-family: var(--police-corps);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1.5rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .footer-col ul li a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.3s;
    }

    .footer-col ul li a:hover { color: var(--or); }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .footer-contact-item svg {
      width: 14px;
      height: 14px;
      stroke: var(--or);
      fill: none;
      stroke-width: 1.5;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .footer-contact-item span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    .footer-bottom {
      padding: 1.8rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }

    .footer-bottom p a {
      color: rgba(255,255,255,0.4);
      transition: color 0.3s;
    }

    .footer-bottom p a:hover { color: var(--or); }

    .footer-legal-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-legal-links a {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.06em;
      transition: color 0.3s;
    }

    .footer-legal-links a:hover { color: var(--or); }

    /* ============================================================
       RESPONSIVITÉ — TABLETTE (≤ 1024px)
    ============================================================ */
    @media (max-width: 1024px) {
      /* Hero */
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 5rem 0 4rem;
      }
      .hero-subtitle { margin-inline: auto; }
      .hero-actions  { justify-content: center; }
      .hero-stats    { justify-content: center; }
      .hero-visual   { justify-content: center; margin-top: 2rem; }
      .hero-photo-frame { max-width: 320px; width: 80%; margin-inline: auto; }

      /* Sections */
      #fondatrice, #programmes, #temoignages, #postuler { padding: 5rem 0; }
      .fondatrice-grid  { grid-template-columns: 1fr; gap: 3rem; }
      .fondatrice-portrait { display: none; }
      .programmes-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .temoignages-grid { grid-template-columns: 1fr 1fr; }
      .postuler-inner   { grid-template-columns: 1fr; gap: 3rem; }

      /* Bandeau */
      .bandeau-grid { grid-template-columns: repeat(2, 1fr); }

      /* Footer */
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

      /* Divers */
      .deo-grid   { grid-template-columns: 1fr; }
      .deo-sticky { position: static; }
    }

    /* ============================================================
       RESPONSIVITÉ — MOBILE (≤ 768px)
    ============================================================ */
    @media (max-width: 768px) {
      /* Navigation */
      .nav-links  { display: none; }
      .hamburger  { display: flex; }

      /* Sections */
      #fondatrice, #programmes, #temoignages, #postuler { padding: 4rem 0; }
      #bandeau { padding: 2rem 0; }

      /* Hero */
      .hero-inner  { padding: 4rem 0 3rem; gap: 2rem; }
      .hero-title  { font-size: clamp(1.9rem, 8vw, 2.8rem); }
      .hero-stats  { flex-direction: column; gap: 1rem; align-items: center; }
      .hero-trust  { justify-content: center; }

      /* Grilles */
      .programmes-grid  { grid-template-columns: 1fr; }
      .temoignages-grid { grid-template-columns: 1fr; }
      .fondatrice-grid  { grid-template-columns: 1fr; }
      .fondatrice-portrait { display: none; }
      .bandeau-grid { grid-template-columns: repeat(2, 1fr); }

      /* Boutons hero uniquement */
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions .btn { width: 100%; justify-content: center; }

      /* Footer */
      .footer-top    { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

      /* Formulaire */
      .form-wrapper  { border-left: none; border-right: none; box-shadow: none; }
      .form-panels   { padding: 1.8rem 1.2rem; }
      .form-footer   {
        padding: 1.2rem 1.2rem;
        flex-direction: column-reverse;
        gap: 0.75rem;
      }
      .form-footer .btn-form-nav { width: 100%; justify-content: center; }
      .form-footer-left { width: 100%; justify-content: center; }
      .form-page-info  { text-align: center; }
      .form-row        { grid-template-columns: 1fr; gap: 1rem; }
      .form-row.three  { grid-template-columns: 1fr; }
      .form-stepper    { gap: 0.5rem; margin-bottom: 2rem; }
      .form-step-item:not(:last-child)::after { width: 20px; }
      .step-dot-label  { font-size: 0.65rem; }
      .file-upload-zone { padding: 1.5rem 1rem; }
      .form-panel-title { font-size: 1.3rem; }
      .form-consent     { padding: 1rem; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 1rem; padding: 0.8rem 0.9rem; }

      /* Raccourci WA */
      .form-wa-shortcut { flex-direction: column; text-align: center; gap: 1rem; }
      .form-wa-shortcut .btn { width: 100%; justify-content: center; }
    }

    /* ============================================================
       RESPONSIVITÉ — PETIT MOBILE (≤ 480px)
    ============================================================ */
    @media (max-width: 480px) {
      .container { width: 95%; }

      /* Hero */
      .hero-inner  { padding: 3.5rem 0 2.5rem; }
      .hero-badge  { font-size: 0.62rem; }

      /* Bandeau */
      .bandeau-grid { grid-template-columns: 1fr 1fr; }
      .bandeau-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 0.8rem 0.5rem;
      }

      /* Formulaire */
      .form-panels  { padding: 1.4rem 0.9rem; }
      .form-footer  { padding: 1rem 0.9rem; }
      .form-row     { gap: 0.8rem; margin-bottom: 0.8rem; }
      .file-upload-zone { padding: 1.2rem 0.8rem; }
      .file-upload-title { font-size: 0.82rem; }
      .step-dot-label { display: none; }
      .form-step-item:not(:last-child)::after { width: 30px; }

      /* Footer */
      .footer-legal-links { gap: 0.6rem; }
      .footer-legal-links a { font-size: 0.65rem; }
    }

    /* ============================================================
       BOUTON WHATSAPP (vert WhatsApp)
    ============================================================ */
    .btn-wa {
      background: #25D366;
      color: #fff;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .btn-wa:hover {
      background: #128C7E;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    }

    /* WA CTA large (hero) */
    .btn-wa-lg {
      padding: 1.1rem 2.4rem;
      font-size: 0.95rem;
    }

    /* Badge de confiance hero */
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.8rem;
      margin-top: 1.4rem;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.62);
    }

    .hero-trust-item .check {
      color: #25D366;
      font-size: 0.9rem;
      font-weight: 700;
    }

    /* ============================================================
       BANDE CTA INTERMÉDIAIRE (après programmes / témoignages)
    ============================================================ */
    .cta-strip {
      background: var(--or);
      padding: 1.8rem 0;
      text-align: center;
    }

    .cta-strip-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cta-strip p {
      font-family: var(--police-titre);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--vert);
    }

    .cta-strip p strong { font-weight: 600; }

    .btn-wa-strip {
      background: var(--vert);
      color: var(--or);
      padding: 0.85rem 2rem;
      font-size: 0.82rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      white-space: nowrap;
      transition: var(--transition);
    }

    .btn-wa-strip:hover {
      background: var(--vert-moyen);
      transform: translateY(-2px);
    }

    /* ============================================================
       SECTION DE CONVERSION (avant le formulaire)
    ============================================================ */
    .conversion-bridge {
      background: var(--vert);
      padding: 4rem 0;
      text-align: center;
    }

    .conversion-bridge h2 {
      font-family: var(--police-titre);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 300;
      color: var(--blanc-pur);
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }

    .conversion-bridge h2 em {
      font-style: italic;
      color: var(--or-pale);
    }

    .conversion-bridge p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
    }

    .conversion-bridge-actions {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }

    .conversion-or {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Anti-arnaque notice */
    .anti-fraude {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      margin-top: 2rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
    }

    .anti-fraude svg {
      width: 14px;
      height: 14px;
      stroke: #25D366;
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    /* ============================================================
       STICKY WHATSAPP BAR (mobile uniquement)
    ============================================================ */
    .sticky-wa-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: #25D366;
      padding: 0.95rem 1.2rem;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sticky-wa-bar.visible { transform: translateY(0); }

    .sticky-wa-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      color: #fff;
      font-family: var(--police-corps);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-decoration: none;
    }

    .sticky-wa-bar a svg {
      width: 22px;
      height: 22px;
      fill: #fff;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .sticky-wa-bar { display: block; }
      /* Espace pour la barre sticky */
      body { padding-bottom: 64px; }

      .cta-strip-inner { flex-direction: column; gap: 1rem; }
      .cta-strip p { font-size: 1.1rem; }

      .conversion-bridge-actions { flex-direction: column; }
      .conversion-bridge-actions .btn { width: 100%; max-width: 340px; }
    }

    /* ============================================================
       WA RAPIDE dans la section formulaire
    ============================================================ */
    .form-wa-shortcut {
      max-width: 860px;
      margin: 0 auto 2.5rem;
      background: #f0fdf4;
      border: 1.5px solid #25D366;
      padding: 1.4rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      border-radius: var(--rayon);
    }

    .form-wa-shortcut p {
      font-size: 0.9rem;
      color: var(--gris);
      line-height: 1.6;
    }

    .form-wa-shortcut p strong {
      display: block;
      font-size: 1rem;
      color: var(--vert);
      margin-bottom: 0.2rem;
    }

    @media (max-width: 600px) {
    /* (responsive form-wa-shortcut intégré dans le bloc global 768px) */
    }

    /* WhatsApp icon dans navbar */
    .nav-wa-icon svg { width: 16px; height: 16px; fill: var(--noir); }


    .logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 4px;
  background: linear-gradient(145deg, #1a3d2e, #2e7a58);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Variante ronde (type avatar/sceau) */
.logo-container.rond {
  border-radius: 50%;
}
.logo-container.rond .logo-img {
  border-radius: 50%;
}

/* Variante avec liseré doré plus marqué (style "prestige") */
.logo-container.prestige {
  border: 2px solid #c9a84c;
  padding: 3px;
  background: #1a3d2e;
}

/* Petite taille pour la navbar */
.logo-container.small {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}