.hero {
  background: radial-gradient(circle at top left, #0074bd 0%, #000 60%);
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff9601 0%, transparent 70%);
  top: -200px;
  right: -200px;
  opacity: 0.2;
}

.hero-sub {
  font-size: 22px;
  margin-top: 20px;
}

.hero-highlight {
  color: #ffc500;
  font-weight: 700;
  margin-top: 20px;
}

.hero-benefits li {
  font-size: 20px;
  margin: 15px 0;
  padding: 15px;
  background: rgba(255, 150, 1, 0.08);
  border-left: 4px solid #ff9601;
  border-radius: 8px;
}
/* Eliminar bullets fantasmas en sección hero */

.hero ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.hero ul li::marker {
  content: "";
}
