.hm-cta {
  --hm-cta-accent: var(--color2, var(--bs-secondary, #6e79e8));
  --hm-cta-border: rgba(15, 23, 42, 0.14);
  --hm-cta-shadow: 0 20px 45px -32px rgba(15, 23, 42, 0.48);
  --hm-cta-shadow-hover: 0 34px 70px -34px rgba(15, 23, 42, 0.38);
  --hm-cta-bg: rgb(249, 250, 251);
  --bs-card-border-color: var(--hm-cta-border);
  --bs-border-color-translucent: var(--hm-cta-border);
  border-radius: 1.5rem;
  border: 1px solid var(--hm-cta-border);
  background: var(--hm-cta-bg);
  box-shadow: var(--hm-cta-shadow);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hm-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%);
}

.hm-cta:hover {
  transform: translateY(-8px);
  box-shadow: var(--hm-cta-shadow-hover);
  border-color: rgba(110, 121, 232, 0.24);
}

.hm-cta.hm-cta--default-border {
  --hm-cta-border: rgba(15, 23, 42, 0.16);
}

.hm-cta.hm-cta--light-border {
  --hm-cta-border: rgba(15, 23, 42, 0.1);
}

.hm-cta .card-body {
  position: relative;
  z-index: 1;
}

.hm-cta__body {
  gap: 1.25rem;
}

.hm-cta__icon-wrap {
  flex: 0 0 auto;
}

.hm-cta__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
}

.hm-cta__content {
  min-width: 0;
}

.hm-cta__title {
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hm-cta__text {
  color: rgba(33, 37, 41, 0.8);
}

.hm-cta__text p:last-child {
  margin-bottom: 0;
}

.hm-cta__footer {
  flex: 0 0 auto;
}

.hm-cta__button {
  gap: 0.7rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #6e79e8;
  background: -webkit-linear-gradient(left, #6e79e8, #30d4b9);
  background: linear-gradient(90deg, #6e79e8 0%, #30d4b9 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  box-shadow: 0 18px 38px -28px rgba(110, 121, 232, 0.68);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.hm-cta__button:hover,
.hm-cta__button:focus,
.hm-cta__button:focus-visible {
  border-color: var(--color2, var(--bs-primary, #ff8002));
  background: var(--color2, var(--bs-primary, #ff8002));
  color: #fff;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -30px rgba(255, 128, 2, 0.52);
}

.hm-cta__button-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}

.hm-cta__button-icon i {
  line-height: 1;
}

@media (min-width: 992px) {
  .hm-cta__footer {
    margin-left: auto;
  }
}

@media (max-width: 575.98px) {
  .hm-cta {
    border-radius: 1.25rem;
  }

  .hm-cta:hover {
    transform: translateY(-4px);
  }

  .hm-cta__icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .hm-cta__button {
    width: 100%;
    justify-content: center;
  }
}
