
    :root{
      --purple:#6b3aa8;--purple-dark:#4a2578;
      --orange:#F7941D;--orange-dark:#e07f10;
      --white:#fff;--border-foot:rgba(255,255,255,.09);
    }
    *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
    body{font-family:'Poppins',sans-serif;background:#2a1245;}

    /* ══════════════════════════════
       FOOTER PRINCIPAL
    ══════════════════════════════ */
    footer{
      background:var(--purple-dark);
      padding:56px 52px 0;
    }

    .footer-inner{
      max-width:1200px;
      margin:0 auto;
      display:grid;
      grid-template-columns:1.9fr 1fr 1fr 1.4fr;
      gap:48px;
      padding-bottom:48px;
      border-bottom:1px solid var(--border-foot);
    }

    /* ── Colonne 1 : Brand ── */
    .footer-brand{}

    .footer-logo{
      display:block;
      margin-bottom:16px;
      text-decoration:none;
    }
    .footer-logo img{
      height:38px;
      width:auto;
      display:block;
    }
    .footer-logo-fallback{
      font-size:1.6rem;font-weight:900;
      color:var(--white);letter-spacing:2px;
      display:none;
    }
    .footer-logo-fallback span{color:var(--orange);}

    .footer-brand-desc{
      font-size:.81rem;
      color:rgba(255,255,255,.60);
      line-height:1.70;
      margin-bottom:20px;
      max-width:300px;
    }

    /* Qualiopi image block */
    .qualiopi-block{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:16px;
    }
    .qualiopi-img{
      width:90px;
      height:auto;
      display:block;
      border-radius:6px;
      background:var(--white);
      padding:4px;
    }
    .qualiopi-img-fallback{
      background:var(--orange);
      color:var(--white);
      font-size:.58rem;font-weight:900;
      padding:8px 12px;
      border-radius:8px;
      line-height:1.3;
      text-align:center;
      display:none;
    }
    .qualiopi-label{
      font-size:.68rem;
      color:rgba(255,255,255,.45);
      line-height:1.5;
    }
    .qualiopi-label strong{
      display:block;
      font-size:.71rem;
      color:rgba(255,255,255,.65);
      margin-bottom:1px;
    }

    /* Badge Qualiopi pill */
    .q-pill{
      display:inline-flex;align-items:center;gap:6px;
      background:rgba(247,148,29,.14);
      border:1px solid rgba(247,148,29,.32);
      color:var(--orange);
      font-size:.68rem;font-weight:700;
      padding:5px 13px;border-radius:30px;
      margin-bottom:18px;
    }

    /* Contacts liste */
    .footer-contacts{
      list-style:none;
      display:flex;flex-direction:column;
      gap:7px;
      margin-bottom:18px;
    }
    .footer-contacts li{
      display:flex;align-items:flex-start;gap:8px;
      font-size:.76rem;
      color:rgba(255,255,255,.48);
      line-height:1.55;
    }
    .footer-contacts li .ci{flex-shrink:0;margin-top:1px;}

    /* Réseaux sociaux */
    .footer-socials{
      display:flex;gap:8px;
      margin-bottom:18px;
    }
    .footer-socials a{
      width:34px;height:34px;
      border-radius:50%;
      background:rgba(255,255,255,.09);
      display:flex;align-items:center;justify-content:center;
      font-size:.8rem;font-weight:700;
      color:rgba(255,255,255,.65);
      text-decoration:none;
      transition:background .2s,color .2s,transform .2s;
    }
    .footer-socials a:hover{
      background:var(--orange);
      color:var(--white);
      transform:translateY(-2px);
    }
    /* SVG icons */
    .footer-socials svg{width:15px;height:15px;fill:currentColor;}

    .footer-legal-micro{
      font-size:.67rem;
      color:rgba(255,255,255,.30);
      line-height:1.6;
    }

    /* ── Colonnes 2 & 3 : Liens ── */
    .footer-col h4{
      font-size:.75rem;
      font-weight:800;
      color:var(--white);
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:20px;
    }
    .footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
    .footer-col ul li a{
      color:rgba(255,255,255,.57);
      text-decoration:none;
      font-size:.82rem;
      font-weight:400;
      transition:color .2s,padding-left .2s;
      display:inline-block;
    }
    .footer-col ul li a:hover{
      color:var(--white);
      padding-left:4px;
    }

    /* ── Colonne 4 : Newsletter ── */
    .footer-newsletter h4{
      font-size:.75rem;
      font-weight:800;
      color:var(--white);
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:12px;
    }
    .footer-newsletter p{
      font-size:.81rem;
      color:rgba(255,255,255,.55);
      line-height:1.65;
      margin-bottom:18px;
    }
    .newsletter-form{
      display:flex;
      border-radius:10px;
      overflow:hidden;
      box-shadow:0 4px 16px rgba(0,0,0,.2);
    }
    .newsletter-form input{
      flex:1;
      padding:12px 16px;
      border:none;
      background:rgba(255,255,255,.95);
      font-family:'Poppins',sans-serif;
      font-size:.81rem;
      color:#333;
      outline:none;
    }
    .newsletter-form input::placeholder{color:#aaa;}
    .newsletter-form button{
      background:var(--orange);
      color:var(--white);
      border:none;
      padding:12px 18px;
      cursor:pointer;
      font-size:1rem;
      font-weight:700;
      transition:background .2s;
      flex-shrink:0;
    }
    .newsletter-form button:hover{background:var(--orange-dark);}

    /* ══════════════════════════════
       FOOTER BOTTOM
    ══════════════════════════════ */
    .footer-bottom{
      max-width:1200px;
      margin:0 auto;
      padding:18px 0 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      gap:12px;
    }
    .footer-bottom-copy{
      font-size:.74rem;
      color:rgba(255,255,255,.40);
    }
    .footer-bottom-links{
      display:flex;gap:20px;flex-wrap:wrap;align-items:center;
    }
    .footer-bottom-links a{
      font-size:.74rem;
      color:rgba(255,255,255,.45);
      text-decoration:none;
      transition:color .2s;
    }
    .footer-bottom-links a:hover{color:var(--orange);}
    .footer-bottom-qualiopi{
      display:inline-flex;align-items:center;gap:6px;
      background:rgba(247,148,29,.14);
      border:1px solid rgba(247,148,29,.32);
      color:var(--orange);
      font-size:.68rem;font-weight:700;
      padding:5px 13px;border-radius:30px;
      text-decoration:none;
      transition:background .2s;
    }
    .footer-bottom-qualiopi:hover{background:rgba(247,148,29,.24);}

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media(max-width:1024px){
      footer{padding:48px 32px 0;}
      .footer-inner{grid-template-columns:1fr 1fr;gap:36px;}
    }
    @media(max-width:640px){
      footer{padding:40px 24px 0;}
      .footer-inner{grid-template-columns:1fr;gap:32px;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:14px;}
      .footer-bottom-links{gap:12px;}
    }
  