.home-service-card {
  display: flex;
  flex-direction: column;
}

.home-service-card p {
  margin-bottom: 0;
}

.home-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.home-package-button {
  min-height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.01em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.055) 48%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(145deg, rgba(30, 29, 26, 0.98), rgba(9, 9, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 7px 0 rgba(0, 0, 0, 0.62),
    0 13px 22px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -4px 9px rgba(0, 0, 0, 0.40) inset;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.78);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.home-package-button::before {
  content: "";
  position: absolute;
  inset: 4px 7px auto 7px;
  height: 40%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-package-button:hover {
  color: #ffffff;
  border-color: rgba(240, 213, 140, 0.36);
  background:
    linear-gradient(180deg, rgba(240, 213, 140, 0.18) 0%, rgba(255, 255, 255, 0.07) 48%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(145deg, rgba(35, 32, 25, 0.98), rgba(11, 11, 10, 0.98));
}

.home-package-button:active {
  transform: translateY(6px) scale(0.985);
  color: #f0d58c;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.74),
    0 6px 12px rgba(0, 0, 0, 0.30),
    0 6px 13px rgba(0, 0, 0, 0.68) inset;
  animation: homeButtonPress 0.18s steps(3) both;
}

.home-package-button.primary {
  color: #15110a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(240, 213, 140, 0.72) 44%, rgba(155, 117, 42, 0.92) 100%),
    linear-gradient(135deg, #c9a45c, #f0d58c);
  border-color: rgba(240, 213, 140, 0.72);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-package-button.primary:hover {
  color: #070707;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(240, 213, 140, 0.84) 45%, rgba(155, 117, 42, 0.98)),
    linear-gradient(135deg, #d4b06a, #ffe19a);
}

@media (max-width: 620px) {
  .home-service-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 24px;
  }

  .home-package-button {
    min-height: 54px;
    width: 100%;
    border-radius: 18px;
    font-size: 15px;
  }
}
