/* Footer */
.footer {
  width: 100%;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  z-index: 10;
}
.footer a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
}
 * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: "Montserrat", sans-serif;
      background: url("img.png") no-repeat center center fixed;
      background-size: cover;
      min-height: 100vh;
      color: #fff;
    }

    .content {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 6%;
      text-align: center;
    }

    /* Badge */
    .badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 40px;
      padding: 12px 30px;
      font-size: 1.05rem;
      font-weight: 500;
      color: #fff;
      margin-bottom: 40px;
      white-space: nowrap;
    }

    /* Titre */
    h1 {
      font-size: clamp(2rem, 5.5vw, 5rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -1px;
      margin-bottom: 30px;
      color: #fff;
    }

    /* Sous-titre */
    .subtitle {
      font-size: clamp(1rem, 2vw, 1.35rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 56px;
      max-width: 800px;
    }

    .subtitle strong { font-weight: 800; color: #fff; }

    .underline-gold {
      font-weight: 700;
      color: #fff;
      text-decoration: underline;
      text-decoration-color: #f0c040;
      text-underline-offset: 5px;
      text-decoration-thickness: 3px;
    }

    .underline-blue {
      font-weight: 700;
      color: #fff;
      text-decoration: underline;
      text-decoration-color: #2a4a80;
      text-underline-offset: 5px;
      text-decoration-thickness: 3px;
    }

    /* Boutons */
    .buttons {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: center;
      justify-content: center;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .btn {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(0.95rem, 1.5vw, 1.2rem);
      font-weight: 800;
      padding: 18px 40px;
      border-radius: 14px;
      cursor: pointer;
      transition: transform 0.15s, filter 0.15s;
      letter-spacing: 0.01em;
      white-space: nowrap;
      border: none;
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    .btn.yellow {
      background: #d4a017;
      color: #fff;
      box-shadow: 0 6px 24px rgba(180, 130, 10, 0.4);
    }

    .btn.blue-dark {
      background: #2a4a80;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 6px 24px rgba(20, 40, 100, 0.3);
    }

    /* Note bas */
    .footer-note {
      font-size: clamp(0.85rem, 1.5vw, 1.1rem);
      color: rgba(255, 255, 255, 0.68);
      font-weight: 400;
      line-height: 1.5;
      max-width: 600px;
    }

    /* ── Tablette (≤ 768px) ── */
    @media (max-width: 768px) {
      .content {
        padding: 48px 7%;
      }

      .badge {
        font-size: 0.88rem;
        padding: 10px 22px;
        margin-bottom: 28px;
        white-space: normal;
        text-align: center;
      }

      h1 {
        font-size: clamp(1.9rem, 6vw, 2.8rem);
        margin-bottom: 22px;
      }

      .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
      }

      .buttons {
        gap: 14px;
      }

      .btn {
        font-size: 1rem;
        padding: 16px 32px;
      }

      .footer-note {
        font-size: 0.9rem;
      }
    }

    /* ── Mobile (≤ 480px) ── */
    @media (max-width: 480px) {
      .content {
        padding: 40px 6%;
        justify-content: center;
      }

      .badge {
        font-size: 0.8rem;
        padding: 9px 18px;
        margin-bottom: 24px;
        white-space: normal;
      }

      h1 {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
        margin-bottom: 18px;
        letter-spacing: -0.5px;
      }

      .subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
        line-height: 1.65;
      }

      /* Boutons empilés sur mobile */
      .buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
      }

      .btn {
        font-size: 1rem;
        padding: 16px 24px;
        width: 100%;
        border-radius: 12px;
      }

      .footer-note {
        font-size: 0.82rem;
      }
    }

    a{
      text-decoration: none;
      color: #fff;
    }