/* ─── assets/css/cta.css ──────────────────────────────────────────────────────
   CTA band section styles.
   ─────────────────────────────────────────────────────────────────────────── */

/* ═══ CTA BAND ══════════════════════════════════════════════════════════════════ */

.section-cta {
  padding: 90px 48px;
  background: linear-gradient(118deg, #0c2147 0%, #1a4070 55%, #0F2B5B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(244,123,32,0.10);
  pointer-events: none;
}
.section-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(244,123,32,0.07);
  pointer-events: none;
}
.cta-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }

.cta-eyebrow {
  display: inline-block;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.3);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.cta-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 16px;
}
.cta-h2 span { color: var(--orange); }

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.cta-trust-item svg { color: #22c55e; flex-shrink: 0; }


/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-cta { padding: 60px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
  .cta-trust { flex-wrap: wrap; gap: 14px; }
  .cta-trust-item { white-space: normal; }
}

@media (max-width: 680px) {
  .section-cta { padding: 60px 16px; }
}
