/* ============================================================
   CTA BANNER — vizasupport (shared component)
   Used on front page, archive, single, about, etc.
   ============================================================ */

.cta-banner {
  background: var(--surface-dark);
  color: #ffffff;
  text-align: center;
  padding-block: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(29,122,74,0.18) 0%, transparent 60%);
  pointer-events: none;
  animation: heroOrbDrift 20s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(29,122,74,0.5), rgba(232,168,0,0.35), transparent);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-black);
  margin-bottom: var(--space-md);
  color: #ffffff;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-banner__title em {
  font-style: normal;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .cta-banner__title { font-size: var(--text-3xl); }
}

.cta-banner__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  margin-inline: auto;
  position: relative;
  line-height: var(--leading-loose);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
