/* CTA band — call-to-action section with primary background */

@layer components {
  .cta-band {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 60%
    );
    pointer-events: none;
  }
  .cta-band .container {
    position: relative;
    z-index: 1;
  }
  .cta-band__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
  }
  .cta-band__subtitle {
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
  .cta-band__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
  }
}
