/* ================= HOME HERO ================= */

.hero-home{
  background:
    radial-gradient(circle at top right, #dbeafe, transparent 45%),
    radial-gradient(circle at bottom left, #e0f2fe, transparent 45%),
    linear-gradient(135deg,#f8fbff,#eef6ff);
  padding:6.5rem 2rem 6rem;
  text-align:center;
}

.hero-inner{
  max-width:1100px;
  margin:auto;
}

.hero-badge{
  display:inline-block;
  background:#e0f2fe;
  color:#0369a1;
  font-weight:700;
  padding:.45rem 1rem;
  border-radius:999px;
  font-size:.85rem;
  margin-bottom:1.6rem;
}

.hero-home h1{
  font-size:3.2rem;
  font-weight:900;
  line-height:1.15;
}

.hero-home h1 span{
  background:linear-gradient(90deg,#2563eb,#22c55e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-home p{
  max-width:820px;
  margin:1.8rem auto;
  font-size:1.2rem;
  color:#475569;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:1.2rem;
  margin-top:2.2rem;
  flex-wrap:wrap;
}

.btn-primary{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  color:#fff;
  padding:1rem 2.4rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(37,99,235,.35);
}

.btn-secondary{
  background:#ffffff;
  color:#2563eb;
  padding:1rem 2.4rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  border:2px solid #2563eb;
}

.hero-stats{
  display:flex;
  justify-content:center;
  gap:2.5rem;
  margin-top:3.2rem;
  flex-wrap:wrap;
}

.hero-stats div{
  text-align:center;
}

.hero-stats strong{
  display:block;
  font-size:1.8rem;
}

.hero-stats span{
  font-size:.9rem;
  color:#64748b;
}

/* MOBILE HERO */
@media(max-width:768px){
  .hero-home h1{font-size:2.2rem}
  .hero-home p{font-size:1.05rem}
}
