/* ══════════════════════════════════════════════════════════════
   HERO.CSS — Hero asymétrique + Cercles concentriques
   Crystal Waters Design System
   ══════════════════════════════════════════════════════════════ */

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}

/* Cercles décoratifs arrière-plan */
.hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 124, 145, 0.08), transparent 70%);
  top: -60px;
  right: -40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 88, 164, 0.06), transparent 70%);
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ═══ HERO CONTENT (LEFT) ═══ */
.hero__content {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero__badge {
  display: inline-block;
  background: var(--ocean-teal-light);
  color: var(--ocean-teal);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease both;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 300;
  color: var(--ocean-deep);
  line-height: 1.35;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0;
  animation: slideUp 0.6s ease 0.2s both;
}

.hero__title-accent {
  color: var(--pfizer-blue);
  font-weight: 600;
}

.hero__subtitle {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  max-width: 380px;
  margin-top: 16px;
  animation: slideUp 0.6s ease 0.4s both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  animation: fadeIn 0.5s ease 0.6s both;
}

/* ═══ HERO VISUAL (RIGHT) — Orbital circles ═══ */
.hero__visual {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
  animation: scaleIn 0.8s ease 0.3s both;
}

/* Outer circle */
.orbital {
  position: relative;
  width: 220px;
  height: 220px;
}

.orbital__outer {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--circle-outer);
  border: 2px solid var(--circle-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Inner circle */
.orbital__inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--circle-inner);
  border: 1.5px solid var(--circle-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.orbital__number {
  color: var(--ocean-teal);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.orbital__label {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-top: 2px;
}

/* Floating stat pills */
.stat-pill {
  position: absolute;
  background: white;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-stat);
  text-align: center;
  min-width: 80px;
  z-index: 2;
}

.stat-pill__number {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-pill__number--blue {
  color: var(--pfizer-blue);
}

.stat-pill__number--teal {
  color: var(--ocean-teal);
}

.stat-pill__label {
  font-size: 8px;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* Pill positions */
.stat-pill--top-right {
  top: 10px;
  right: -20px;
  animation: slideInRight 0.5s ease 0.7s both;
}

.stat-pill--bottom-right {
  bottom: 20px;
  right: -30px;
  animation: slideInRight 0.5s ease 0.9s both;
}

.stat-pill--top-left {
  top: 0;
  left: -30px;
  animation: slideInLeft 0.5s ease 0.8s both;
}

.stat-pill--bottom-left {
  bottom: 10px;
  left: -20px;
  animation: slideInLeft 0.5s ease 1s both;
}

/* ═══ KEYFRAMES ═══ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
