/* Homepage: single band — Insights CTA + contact (replaces duplicate strips) */

.cb-home-prefooter {
  --cb-pf-navy: #03114c;
  --cb-pf-slate: #3d4a5c;
  --cb-pf-line: rgba(19, 34, 56, 0.08);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 55%, #e8edf5 100%);
  border-top: 1px solid var(--cb-pf-line);
  padding: clamp(2.25rem, 4vw, 3.25rem) 1.25rem clamp(2rem, 3.5vw, 2.75rem);
}

.cb-home-prefooter__inner {
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cb-home-prefooter__insights {
  position: relative;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  max-width: 820px;
  text-align: center;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(15, 35, 60, 0.07);
  border: 1px solid rgba(19, 34, 56, 0.06);
}

.cb-home-prefooter__insights::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 0;
  background: linear-gradient(180deg, #03339c, #47bfff);
}

.cb-home-prefooter__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--cb-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #03339c;
}

.cb-home-prefooter__title {
  margin: 0 0 0.65rem;
  font-family: var(--cb-font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--cb-pf-navy);
}

.cb-home-prefooter__lede {
  margin: 0 0 1.25rem;
  font-family: var(--cb-font-body);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--cb-pf-slate);
}

.cb-home-prefooter__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.55rem 1.45rem;
  font-family: var(--cb-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #ffffff !important;
  border-radius: 0;
  background: linear-gradient(135deg, #03339c 0%, #03114c 100%);
  border: 0;
  box-shadow: 0 4px 18px rgba(3, 51, 156, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cb-home-prefooter__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(3, 51, 156, 0.3);
}

.cb-home-prefooter__cta:focus-visible {
  outline: 2px solid #47bfff;
  outline-offset: 3px;
}

.cb-home-prefooter__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-home-prefooter__card {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(19, 34, 56, 0.07);
  box-shadow: 0 4px 20px rgba(15, 35, 60, 0.04);
}

.cb-home-prefooter__label {
  margin: 0 0 0.5rem;
  font-family: var(--cb-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.3;
}

.cb-home-prefooter__value {
  margin: 0;
  font-family: var(--cb-font-body);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cb-pf-navy);
}

.cb-home-prefooter__value a {
  color: #03339c;
  text-decoration: none !important;
}

.cb-home-prefooter__value a:hover {
  color: #03114c;
}

.cb-home-prefooter__call {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--cb-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #03339c !important;
}

.cb-home-prefooter__call:hover {
  color: #03114c !important;
}

@media (max-width: 991px) {
  .cb-home-prefooter__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .cb-home-prefooter__cards {
    grid-template-columns: 1fr;
  }

  .cb-home-prefooter__insights {
    text-align: left;
    padding-left: 1.35rem;
  }

  .cb-home-prefooter__insights::before {
    top: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cb-home-prefooter__cta {
    transition: none;
  }

  .cb-home-prefooter__cta:hover {
    transform: none;
  }
}
