/* StraatVaardig hero badge refinement */
.hero-centered .hero-content .hero-platform-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: fit-content;
  max-width: min(100%, 44rem);
  margin: 0 auto 1.45rem;
  padding: 0.82rem 1.45rem;
  border: 1px solid rgba(255, 107, 0, 0.44);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 107, 0, 0.08));
  color: #ff6b00;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(15, 45, 82, 0.1),
    0 0 0 6px rgba(255, 107, 0, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-centered .hero-content .hero-platform-label::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #ff6b00;
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.08);
  flex: 0 0 auto;
  transform-origin: center;
  animation: hero-dot-heartbeat 1.55s ease-in-out infinite;
}

@keyframes hero-dot-heartbeat {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.08), 0 0 0 rgba(255, 107, 0, 0);
  }
  14% {
    transform: scale(1.55);
    box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.14), 0 0 16px rgba(255, 107, 0, 0.72);
  }
  28% {
    transform: scale(1.08);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.09), 0 0 5px rgba(255, 107, 0, 0.3);
  }
  42% {
    transform: scale(1.35);
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.12), 0 0 12px rgba(255, 107, 0, 0.55);
  }
  58% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.08), 0 0 0 rgba(255, 107, 0, 0);
  }
}

.hero-centered .hero-content .hero-platform-label:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.66);
  background: linear-gradient(135deg, #fff, rgba(255, 107, 0, 0.13));
  box-shadow:
    0 18px 42px rgba(15, 45, 82, 0.14),
    0 0 0 8px rgba(255, 107, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (max-width: 720px) {
  .hero-centered .hero-content .hero-platform-label {
    max-width: 100%;
    padding: 0.74rem 0.85rem;
    font-size: 0.84rem;
    line-height: 1.25;
    gap: 0.48rem;
  }

  .hero-centered .hero-content .hero-platform-label::before {
    width: 0.36rem;
    height: 0.36rem;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08);
  }
}

@media (min-width: 1180px) {
  .hero-centered .hero-content .hero-platform-label {
    font-size: 1.08rem;
    padding: 0.9rem 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-centered .hero-content .hero-platform-label::before {
    animation: none;
  }
}
