/* ═══════════════════════════════════════════
   CTA — Clean Primary
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: #1a3a9e;
  color: #fff;
  text-align: center;
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta__content p {
  font-size: 1.15rem;
  color: var(--blue-100);
  margin-bottom: 2.5rem;
}

.cta__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta__btns .btn--primary {
  background: #fff;
  color: var(--primary);
}

.cta__btns .btn--primary:hover {
  background: var(--blue-50);
}

.cta__btns .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta__btns .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Section tag */
.cta-section__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
}

/* Pills row */
.cta-section__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.cta-section__pills span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Inner container */
.cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__inner h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-section__inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}