.powervoice-cta {
  position: sticky;
  top: 2.5rem;
  text-align: center;
  z-index: 2;
}

.powervoice-cta__button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.powervoice-cta__badge {
  width: 180px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  animation: powervoice-pulse 2.5s ease-in-out infinite;
}

.powervoice-cta__text {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b10000;
  text-transform: uppercase;
}

@keyframes powervoice-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.powervoice-dialog {
  width: min(420px, 90vw);
  height: min(720px, 90vh);
  border: none;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.powervoice-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.powervoice-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.powervoice-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .powervoice-cta {
    position: static;
    margin: 2rem auto;
  }
}
