/* CTA Banner */
.cta-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner--blue { background: var(--color-primary, #003366); color: #fff; }
.cta-banner--dark { background: #1a1a1a; color: #fff; }
.cta-banner--green { background: #198754; color: #fff; }
.cta-banner--orange { background: #e67e22; color: #fff; }

.cta-banner__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__headline {
  font-size: var(--font-size-3xl, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: inherit;
}

.cta-banner__text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-banner__text p { margin: 0; }

.cta-banner__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: var(--color-primary, #003366);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: var(--color-primary, #003366);
  text-decoration: none;
}

.cta-banner--dark .cta-banner__btn { color: #1a1a1a; }
.cta-banner--green .cta-banner__btn { color: #198754; }
.cta-banner--orange .cta-banner__btn { color: #e67e22; }

@media (max-width: 768px) {
  .cta-banner { padding: 40px 20px; }
  .cta-banner__headline { font-size: 1.5rem; }
}
