/* ============================================
   HEALTH GUARANTEE PAGE
   ============================================ */

/* ---- Hero ---- */
.health-hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background: var(--color-navy);
  overflow: hidden;
}
.health-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 46, 0.95), rgba(10, 10, 46, 0.7));
  pointer-events: none;
}
.health-hero__content {
  position: relative;
  z-index: 2;
  max-width: 672px;
}
.health-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}
.health-hero__title span {
  background: linear-gradient(to right, #9d93eb, #ffcce6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.health-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: var(--leading-relaxed);
  max-width: 576px;
}

/* ---- Prepared Section ---- */
.health-prepared {
  padding: var(--space-16) 0;
  background: var(--color-surface);
}
.health-prepared__header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.health-prepared__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: var(--leading-tight);
}
.health-prepared__title span {
  color: #0d9488;
}
.health-prepared__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* Card */
.health-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.health-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Icon box with glow */
.health-card__icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
}
.health-card__icon-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.health-card:hover .health-card__icon-glow {
  opacity: 0.5;
}
.health-card__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}
.health-card:hover .health-card__icon-box {
  transform: scale(1.05);
}
.health-card__icon-box svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

/* Gradient variants */
.health-card__icon-glow--pink {
  background: linear-gradient(to right bottom, #f472b6, #c084fc);
}
.health-card__icon-box--pink {
  background: linear-gradient(to right bottom, #f472b6, #c084fc);
}
.health-card__icon-glow--blue {
  background: linear-gradient(to right bottom, #60a5fa, #2dd4bf);
}
.health-card__icon-box--blue {
  background: linear-gradient(to right bottom, #60a5fa, #2dd4bf);
}
.health-card__icon-glow--green {
  background: linear-gradient(to right bottom, #2dd4bf, #4ade80);
}
.health-card__icon-box--green {
  background: linear-gradient(to right bottom, #2dd4bf, #4ade80);
}

/* Card text */
.health-card__title {
  font-size: 1.25rem;
  font-weight: var(--weight-semibold);
  color: #0f766e;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.health-card__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .health-hero__title {
    font-size: var(--text-h1);
  }
  .health-prepared__title {
    font-size: var(--text-h3);
  }
}

@media (max-width: 768px) {
  .health-hero {
    padding: var(--space-16) 0 var(--space-10);
  }
  .health-hero__title {
    font-size: var(--text-h2);
  }
  .health-hero__subtitle {
    font-size: var(--text-body);
  }
  .health-prepared__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .health-hero__title {
    font-size: var(--text-h3);
  }
}
