/* HERO */
.hero {
  max-width: 1270px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  margin-bottom: 30px;
}

.hero-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.hero-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ffcc;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-cta .btn-rounded {
  padding: 12px 28px;
  font-weight: 700;
  font-size: 16px;
  border:1px solid #fff;
  text-decoration: none;
  display: inline-block;
}

.hero-cta .btn-primary {
  background: #ffffff;
  color: #0f4c81;
  border: 1px solid #0f4c81;
}

.hero-cta .btn-primary:hover {
  background: #0f4c81;
  color: #ffffff;
}

.hero-cta button {
  margin-right: 15px;
}

/* VISUEL */
.hero-visual img {
  width: 350px;
  display: block;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 40px auto;
    padding: 0 16px;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .subtitle {
    font-size: 14px;
  }

  .hero-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-list li {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
  }

  .hero-list li::before {
    position: static;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta button {
    margin: 0;
    width: 100%;
    max-width: 280px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 260px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-visual img {
    max-width: 220px;
  }
}

