.hero-button {
  width: fit-content;
  min-width: 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 34px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(255, 61, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-button {
  width: 390px;
  max-width: 100%;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
  padding: 0 34px;
  background: var(--orange, #ff3d00);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(255, 61, 0, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(255, 61, 0, 0.32);
  background: #f03900;
}

.hero-button-icon {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}

.hero-button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-button img {
  display: none;
}

@media (max-width: 600px) {
  .hero-button {
    width: 100%;
    height: 66px;
    font-size: 20px;
    gap: 14px;
  }

  .hero-button-icon {
    width: 27px;
    height: 27px;
  }
}