/* =====================================================
   CTA BANNER SECTION
   Zero Box-Shadow - Swiss Clean Aesthetics
===================================================== */

.ibr-cta-banner {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #334155;
  border-top: none;
  position: relative;
}

.ibr-cta-banner__container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.ibr-cta-banner__card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ibr-cta-banner__title {
  font-size: clamp(28px, 3.3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  max-width: 780px;
  letter-spacing: -0.03em;
}

.ibr-cta-banner__title span {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibr-cta-banner__subtitle {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.ibr-cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ibr-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ibr-cta-banner__btn--primary {
  background: #059669;
  border: 1px solid #059669;
  color: #ffffff;
}

.ibr-cta-banner__btn--primary:hover {
  background: #047857;
  border-color: #047857;
  color: #ffffff;
}

.ibr-cta-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #334155;
  color: #e2e8f0;
}

.ibr-cta-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

@media (max-width: 640px) {
  .ibr-cta-banner__card {
    padding: 40px 20px;
  }
}
