.hero {
  text-align: center;
  padding: 1rem 1rem 1rem; /* moins haut et ajoute un bas plus serré */
  background: none;
  background-color: transparent;
  /*margin-bottom: 2rem; /* réduit l’espace entre les sections */
}

.hero-left {
  opacity: 1;
  transform: none;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #111827, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  max-width: 750px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #475569;
}

.hero-left ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 400px;
  color: #475569;
  font-size: 1rem;
  text-align: left;
}

.hero-left li {
  margin-bottom: 0.5rem;
}

/* Bouton principal */
.cta-btn {
    text-decoration: none; /* enlève le soulignement */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #4f46e5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #357ae8;
    text-decoration: none; /* évite le retour du soulignement au survol */
}


.cta-btn .icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.cta-btn:hover .icon {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-left ul {
    text-align: center;
  }
}
