/* Health Hub Page Styles - Modern & Compact */

/* Scoped CSS variables */
#health-hero, #health-experts, #health-cta {
  --green:       #90b72d;
  --green-dark:  #6d8a22;
  --green-faint: #f0f5e8;
  --ink:         #354860;
  --ink-mid:     #5a6d7f;
  --ink-light:   #8a99a8;
  --sand:        #f9fafb;
  --radius:      16px;
  --radius-lg:   28px;
  --max-w:       1140px;
}

/* ── HEALTH HUB HERO ── */
#health-hero {
  background: var(--ink);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 3rem) clamp(1rem, 4vw, 2.5rem);
}

#health-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(144, 183, 45, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(144, 183, 45, .10) 0%, transparent 60%);
  pointer-events: none;
}

#health-hero .hero-content {
  max-width: 880px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

#health-hero .label {
  display: inline-block;
  background: var(--green-faint);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

#health-hero h1 {
  color: #FFFFFF !important;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.2;
}

#health-hero h1 em {
  font-style: italic;
  color: var(--green);
}

#health-hero .subtitle {
  color: var(--green) !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

#health-hero p {
  color: rgba(255,255,255,.72) !important;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#health-hero .tagline {
  color: rgba(255,255,255,.85) !important;
  font-size: 1.05rem;
  font-weight: 500;
}

#health-hero .hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

#health-hero .feature-pill {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  transition: background .2s, border-color .2s;
}

#health-hero .feature-pill:hover {
  background: rgba(144, 183, 45, .15);
  border-color: var(--green);
}

#health-hero .feature-pill svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#health-hero .fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}

#health-hero .delay-1 {
  animation-delay: .1s;
}

#health-hero .delay-2 {
  animation-delay: .22s;
}

#health-hero .delay-3 {
  animation-delay: .34s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #health-hero .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  #health-hero .feature-pill {
    width: 100%;
    justify-content: center;
  }
}
