.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-scroll {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: none;
  height: 64px;
  min-width: 190px;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(135, 249, 84, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--secondary {
  background-color: var(--color-secondary);
}

.btn--secondary:hover {
  box-shadow: 0 6px 20px rgba(249, 243, 84, 0.4);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.regular-section {
  padding: 4rem 0;
}
