.helpal-installPrompt {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2150;
  width: min(100vw - 2rem, 460px);
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 1.15rem;
  padding: 1.15rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  background:
    radial-gradient(circle at top left, rgba(24, 182, 164, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 76, 129, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.97));
  box-shadow: 0 34px 80px rgba(17, 32, 52, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.helpal-installPrompt[hidden] {
  display: none !important;
}

.helpal-installPrompt__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #344054;
  transition: transform 0.2s ease, background 0.2s ease;
}

.helpal-installPrompt__close:hover,
.helpal-installPrompt__close:focus {
  background: rgba(15, 76, 129, 0.12);
  transform: rotate(90deg);
}

.helpal-installPrompt__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
}

.helpal-installPrompt__glow {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(24, 182, 164, 0.28), rgba(15, 76, 129, 0.2));
  filter: blur(2px);
}

.helpal-installPrompt__logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.helpal-installPrompt__body {
  padding-right: 1.9rem;
}

.helpal-installPrompt__eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f4c81;
  margin-bottom: 0.35rem;
}

.helpal-installPrompt__title {
  font-size: 1.18rem;
  font-weight: 900;
  color: #112034;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.45rem;
}

.helpal-installPrompt__text {
  margin: 0;
  color: #5f6f85;
  font-size: 0.94rem;
  line-height: 1.55;
}

.helpal-installPrompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .helpal-installPrompt {
    animation: helpalInstallPromptIn 0.28s ease-out;
  }
}

@media (max-width: 991.98px) {
  .helpal-installPrompt {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    width: auto;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
  }

  .helpal-installPrompt__media {
    min-height: 92px;
    justify-content: flex-start;
  }

  .helpal-installPrompt__body {
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .helpal-installPrompt__actions .btn {
    width: 100%;
  }
}

@keyframes helpalInstallPromptIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
