/* Hero + header CTA: original colors, pulsing bronze light behind.
   Larger type on the 7-tool button. */

@keyframes tdaiCtaPulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero .btnHeroKkv,
.hero .btnHeroInquiry,
.hero .btnHeroConsult,
.hero .heroAuditCta,
.hero .heroFreeCta,
.nav-cta-head .btnOutlineGold {
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

.hero .btnHeroKkv::before,
.hero .btnHeroInquiry::before,
.hero .btnHeroConsult::before,
.hero .heroAuditCta::before,
.hero .heroFreeCta::before,
.nav-cta-head .btnOutlineGold::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(219, 177, 85, 0.45) 0%, rgba(197, 160, 89, 0.12) 55%, transparent 72%);
  box-shadow:
    0 0 18px rgba(219, 177, 85, 0.45),
    0 0 36px rgba(197, 160, 89, 0.28);
  animation: tdaiCtaPulse 2.2s ease-in-out infinite;
}

.heroAuditCta,
.heroFreeCta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(420px, 100%);
  min-height: 52px;
  margin-top: 0.75rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  border-radius: 12px;
  white-space: normal;
}

.heroVisualCol .heroAuditCta {
  margin-top: 1rem;
}

.hero .heroFreeCta {
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.3 !important;
  min-height: 60px;
  padding: 1.05rem 1.2rem !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero .btnHeroKkv::before,
  .hero .btnHeroInquiry::before,
  .hero .btnHeroConsult::before,
  .hero .heroAuditCta::before,
  .hero .heroFreeCta::before,
  .nav-cta-head .btnOutlineGold::before {
    animation: none;
    opacity: 0.75;
  }
}
