 <style>
    /* ================= PREMIUM FOOTER STYLES ================= */
    .c-footer {
      background: linear-gradient(135deg, #0a0e1a 0%, #161c2e 100%);
      color: #e8eaed;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .c-footer__main {
      max-width: 1280px;
      margin: 0 auto;
      padding: 4rem 2rem 2rem;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr 1.2fr; /* ✅ + 2 colonnes (Apps + Société) */
      gap: 2.25rem;
    }

    .c-footer__brand-section { max-width: 360px; }
    .c-footer__brand-section img { width: 160px; margin-bottom: 1.25rem; }

    .c-footer__brand-text {
      color: #b4b9c5;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .c-footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
    .c-footer__social-link {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      color: #e8eaed;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .c-footer__social-link:hover {
      background: var(--brand-primary, #10b981);
      transform: translateY(-2px);
      color: #fff;
    }

    .c-footer__section h4 {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 1.1rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .c-footer__section h4::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 30px; height: 2px;
      background: linear-gradient(90deg, var(--brand-primary, #10b981), transparent);
    }

    .c-footer__links { list-style: none; padding: 0; margin: 0; }
    .c-footer__links li { margin-bottom: 0.7rem; }

    .c-footer__links a {
      color: #b4b9c5;
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .c-footer__links a:hover {
      color: var(--brand-primary, #10b981);
      transform: translateX(3px);
    }
    .c-footer__links a::before {
      content: '→';
      font-size: 0.85rem;
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .c-footer__links a:hover::before { opacity: 1; }

    .c-footer__trust-badges {
      display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem;
    }
    .c-footer__badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.4rem 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      font-size: 0.8rem;
      color: #b4b9c5;
    }

    /* ✅ Mini contact bloc */
    .c-footer__contact {
      margin-top: 1rem;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(34,197,94,0.20);
      background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(56,189,248,0.06));
      border-radius: 12px;
    }
    .c-footer__contact strong { color: #fff; display:block; margin-bottom: 0.35rem; }
    .c-footer__contact a { color:#b4b9c5; text-decoration:none; display:block; margin: 0.2rem 0; }
    .c-footer__contact a:hover { color: var(--brand-primary,#10b981); }

    /* Geo */
    .c-footer__geo-section {
      margin-top: 2.5rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }
    .c-footer__geo-title { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; }
    .c-footer__geo-list {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 1.2rem; list-style: none; padding: 0; margin: 0;
    }
    .c-footer__geo-item { color: #b4b9c5; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
    .c-footer__geo-item::before { content: '📍'; font-size: 1rem; }

    /* Bottom */
    .c-footer__bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .c-footer__copyright { color: #7d8590; font-size: 0.9rem; }
    .c-footer__legal { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
    .c-footer__legal a {
      color: #7d8590;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }
    .c-footer__legal a:hover { color: var(--brand-primary, #10b981); }

    /* Responsive */
    @media (max-width: 1200px) {
      .c-footer__main { grid-template-columns: 1fr 1fr 1fr; }
      .c-footer__brand-section { grid-column: 1 / -1; max-width: 100%; }
    }
    @media (max-width: 640px) {
      .c-footer__main { grid-template-columns: 1fr; gap: 1.75rem; padding: 3rem 1.5rem 1.5rem; }
      .c-footer__bottom { flex-direction: column; text-align: center; padding: 1.5rem; }
      .c-footer__geo-list { flex-direction: column; gap: 0.75rem; }
    }
  </style>
