/* ========== HERO V2 — style PulseFit avec couleurs site ========== */

.hero-v2 {
  background: linear-gradient(180deg, #e8eef8 0%, #f5f8fd 50%, var(--c-bg) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 32px 80px;
  overflow: hidden;
  position: relative;
}

/* Eyebrow */
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-soft);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-v2-pill {
  background: var(--c-mint-soft);
  color: var(--c-blue);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Titre */
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-v2-title-accent {
  color: var(--c-red);
}

/* Sous-titre */
.hero-v2-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-ink-soft);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

/* Boutons */
.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--c-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 16px rgba(38,70,83,0.22);
}

.hero-v2-btn-primary:hover {
  background: var(--c-blue-deep);
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(38,70,83,0.3);
}

.hero-v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--c-line);
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.hero-v2-btn-secondary:hover {
  border-color: var(--c-mute);
  background: var(--c-line-soft);
  transform: scale(1.03);
}

/* Disclaimer */
.hero-v2-disclaimer {
  font-size: 12.5px;
  color: var(--c-mute);
  font-style: italic;
  margin-bottom: 32px;
}

/* Social proof */
.hero-v2-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-v2-avatars {
  display: flex;
}

.hero-v2-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--c-paper);
  object-fit: cover;
  margin-left: -10px;
  display: block;
}

.hero-v2-avatars img:first-child {
  margin-left: 0;
}

.hero-v2-social-text {
  font-size: 13.5px;
  color: var(--c-ink-soft);
  font-weight: 500;
}

.hero-v2-social-text strong {
  color: var(--c-ink);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-v2 { padding: 60px 20px 60px; }
  .hero-v2-actions { flex-direction: column; align-items: stretch; }
  .hero-v2-btn-primary, .hero-v2-btn-secondary { justify-content: center; }
}
