/* =========================
   HERO minimal – pro
   ========================= */

.hero{
  position:relative;
  min-height:calc(100vh - 64px); /* ajuste si header plus grand */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#ffffff;
  margin-top:80px;
}

/* Background image */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(15,23,42,.8),
      rgba(15,23,42,.9)
    ),
    url("../images/home/people-discuss.jpg");
  background-size:cover;
  background-position:center;
  filter: blur(1.5px) contrast(1.15) saturate(1.05);
  transform: scale(1.05);
}

/* Contenu */
.hero-content{
  position:relative;
  z-index:1;
  max-width:720px;
  padding:24px;
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(32px, 4vw, 52px);
  letter-spacing:-.02em;
}

.hero p{
  margin:0 0 28px;
  font-size:clamp(16px, 2vw, 18px);
  color:rgba(255,255,255,.85);
}

/* Actions */

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .15s ease, box-shadow .2s ease;
}

.btn-primary{
  background:linear-gradient(135deg, #7c3aed, #3b82f6);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(124,58,237,.35);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:rgba(255,255,255,.15);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.25);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.25);
}