/* ── CTA Section (mobile-first) ─────────────── */
.bsx-cta {
  position: relative;
  overflow: hidden;
  background: var(--bsx-navy);
  padding: 56px 16px;
  text-align: center;
}
/* Photo background with dark overlay */
.bsx-cta__bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg-cta.webp') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}
.bsx-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.4) 0%, rgba(10,37,64,0.1) 50%, rgba(10,37,64,0.4) 100%);
}
.bsx-cta__shimmer {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: linear-gradient(135deg, transparent 0%, rgba(28,51,102,0.12) 25%, transparent 50%, rgba(45,85,255,0.06) 75%, transparent 100%);
  background-size: 400% 400%;
  animation: bsx-cta-shimmer 20s ease infinite;
}
@keyframes bsx-cta-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bsx-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.bsx-cta__title {
  font-family: var(--bsx-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--bsx-white);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bsx-cta__sub {
  font-family: var(--bsx-font);
  font-size: 14px;
  color: var(--bsx-text-light);
  margin: 0 0 24px;
  line-height: 1.6;
}
.bsx-cta__btn {
  display: inline-block;
  font-family: var(--bsx-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--bsx-navy);
  background: var(--bsx-white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform var(--bsx-ease), box-shadow var(--bsx-ease), background var(--bsx-ease);
}
.bsx-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.25);
  background: #f0f0f0;
}
/* Trust seals */
.bsx-cta__seals {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.bsx-cta__seals img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bsx-cta__seals img:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.bsx-cta__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.bsx-cta__badge img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--bsx-ease), transform var(--bsx-ease);
}
.bsx-cta__badge:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* ── Tablet ─────────────────────────────────── */
@media (min-width: 768px) {
  .bsx-cta { padding: 72px 24px; }
  .bsx-cta__title { font-size: 32px; }
  .bsx-cta__sub { font-size: 16px; margin-bottom: 28px; }
  .bsx-cta__btn { font-size: 16px; padding: 16px 36px; }
  .bsx-cta__badge img { height: 40px; }
}

/* ── Desktop ────────────────────────────────── */
@media (min-width: 1024px) {
  .bsx-cta { padding: 96px 20px; }
  .bsx-cta__title { font-size: 36px; }
  .bsx-cta__sub { font-size: 17px; }
  .bsx-cta__btn { font-size: 17px; padding: 16px 40px; }
}
