.hero-actions .button.primary {
  width: auto;
  min-width: 174px;
  height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.hero-actions .button.primary span {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  transform: none;
  transition: transform .3s ease;
}

.hero-actions .button.primary:hover {
  transform: translateY(-3px);
}

.hero-actions .button.primary:hover span {
  transform: translate(3px,-3px);
}

@media (max-width: 800px) {
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: center;
  }

  .hero-actions {
    position: static;
    margin-top: 30px;
    justify-content: flex-start;
  }

  .hero-actions .button.primary {
    min-width: 164px;
    height: 56px;
    padding: 0 22px;
  }
}
