.ci-forrester {
  padding: var(--space-xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* ── Background ── */
.ci-forrester__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ci-forrester__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,168,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.ci-forrester__bg-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 480px;
  background: radial-gradient(ellipse at center, rgba(0,194,168,0.09) 0%, transparent 65%);
}
.ci-forrester__bg-glow-2 {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(11,31,58,0.04) 0%, transparent 65%);
}

/* Floating dots */
.ci-forrester__bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ci-forrester__bg-dots span {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.12;
  animation: ciForFloat linear infinite;
}
.ci-forrester__bg-dots span:nth-child(1) { width:10px; height:10px; top:15%; left:8%;  animation-duration:10s; animation-delay:0s; }
.ci-forrester__bg-dots span:nth-child(2) { width:6px;  height:6px;  top:70%; left:15%; animation-duration:13s; animation-delay:2s; }
.ci-forrester__bg-dots span:nth-child(3) { width:8px;  height:8px;  top:20%; right:10%; animation-duration:9s;  animation-delay:1s; }
.ci-forrester__bg-dots span:nth-child(4) { width:5px;  height:5px;  top:75%; right:18%; animation-duration:11s; animation-delay:3s; }
.ci-forrester__bg-dots span:nth-child(5) { width:7px;  height:7px;  top:50%; left:50%;  animation-duration:8s;  animation-delay:1.5s; }
@keyframes ciForFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* ── Inner: centered column ── */
.ci-forrester__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* ── Icon ── */
.ci-forrester__icon-wrap {
  position: relative;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.ci-forrester__icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0,194,168,0.3);
  animation: ciForSpin 20s linear infinite;
}
@keyframes ciForSpin { to { transform: rotate(360deg); } }

.ci-forrester__icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1a3a5e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: 0 8px 28px rgba(11,31,58,0.18), 0 0 0 4px rgba(0,194,168,0.1);
  position: relative;
  z-index: 1;
}

/* ── Label pill ── */
.ci-forrester__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,168,0.09);
  border: 1px solid rgba(0,194,168,0.22);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.ci-forrester__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  animation: ciForPulse 2s ease infinite;
}
@keyframes ciForPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,194,168,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(0,194,168,0.06); }
}

/* ── Title ── */
.ci-forrester__title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.ci-forrester__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
  display: inline;
}
.ci-forrester__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), rgba(0,194,168,0.3));
  border-radius: 2px;
}

/* ── Description ── */
.ci-forrester__desc {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* ── Divider ── */
.ci-forrester__divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}

/* ── CTA button — big ── */
.ci-forrester__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow:
    0 6px 28px rgba(0,194,168,0.38),
    0 0 0 0 rgba(0,194,168,0.3);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}
.ci-forrester__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.ci-forrester__cta:hover {
  background: #00d9bb;
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0,194,168,0.5),
    0 0 0 6px rgba(0,194,168,0.1);
}
.ci-forrester__cta:hover::before { opacity: 1; }
.ci-forrester__cta:active { transform: translateY(-1px); }

/* ── Sub note ── */
.ci-forrester__subnote {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.8;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .ci-forrester__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .ci-forrester__desc  { font-size: 0.95rem; }
  .ci-forrester__cta   { font-size: 0.95rem; padding: 16px 36px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .ci-forrester__title { font-size: 1.55rem; }
  .ci-forrester__cta   { padding: 15px 28px; }
  .ci-forrester__pill  { font-size: 0.68rem; }
}