html {
  scroll-behavior: smooth;
}
.bg-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}
.hero-bg {
  background:
    radial-gradient(circle at top right, #fff7ed, transparent),
    radial-gradient(circle at bottom left, #f0fff4, transparent);
}
.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(1, 194, 100, 0.15);
}
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}
.text-gradient {
  background: linear-gradient(to right, #01c264, #ff904c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hormone-gradient {
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
