.cta-wrap {
  position: relative;
  display: inline-block;
}

.quickstart-btn {
  display: inline-block;
}

.sticker-badge {
  position: absolute;
  top: -36px;
  right: -6px;
  z-index: 2;

  display: inline-block;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  max-width: 240px;
  text-decoration: none;

  color: #111;
  background: #ffd966;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px 18px 14px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transform: rotate(-5deg);
  transform-origin: 80% 20%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: sticker-float 3.2s ease-in-out infinite;
}

.sticker-badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 12px;
  width: 16px;
  height: 10px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(0, 0, 0, 0.18), transparent 60%);
  filter: blur(1px);
  transform: rotate(8deg);
  pointer-events: none;
}

.sticker-badge:hover,
.sticker-badge:focus-visible {
  transform: rotate(-3deg) translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  outline: none;
}

.sticker-badge:focus-visible {
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.15), 0 10px 20px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes sticker-float {
  0% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-3px);
  }
  100% {
    transform: rotate(-5deg) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticker-badge {
    animation: none;
    transition: none;
  }
}

@media (max-width: 520px) {
  .sticker-badge {
    top: -24px;
    right: -2px;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    max-width: 220px;
  }
}
