/* RESET + BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

/* ✅ Agrandir tout le texte globalement (responsive) */
html {
  font-size: clamp(17px, 1.2vw, 19px);
}

body {
  background: #f5f7fb;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 920px;
  padding: 40px 24px;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* ✅ Logo plus visible + responsive */
.logo-img {
  height: clamp(64px, 8vw, 110px);
  width: auto;
  display: block;
}

.subtitle {
  margin-top: 12px;
  color: #6b7280;
  font-size: 1.05rem; /* un peu plus grand */
}

/* CARD */
.card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 28px;
}

/* FEATURES */
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #374151;
}

.features li span {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: #6b7280;
}

.footer a {
  color: #2563eb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ✅ Responsive: mobile */
@media (max-width: 520px) {
  .page {
    padding: 28px 16px;
  }

  .card {
    padding: 28px 22px;
  }
}
