.ci-overview {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* ── Background ── */
.ci-overview__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ci-overview__bg-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0,194,168,0.08) 0%, transparent 65%);
}
.ci-overview__bg-glow-2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,31,58,0.04) 0%, transparent 65%);
}

/* ── Label row ── */
.ci-overview__label-row {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-sm);
}
.ci-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.ci-overview__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

/* ── Heading ── */
.ci-overview__heading {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: var(--space-xl);
}
.ci-overview__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.ci-overview__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}
.ci-overview__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}
.ci-overview__subtitle {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── Main grid ── */
.ci-overview__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ══════════════════════════════════════════
   LEFT — Feature cards
════════════════════════════════════════════ */

.ci-overview__block-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding: 8px 16px;
  background: rgba(0,194,168,0.08);
  border: 1px solid rgba(0,194,168,0.2);
  border-radius: 50px;
  width: fit-content;
}
.ci-overview__block-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  animation: ciDotPulse 2s ease infinite;
}
@keyframes ciDotPulse {
  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); }
}

.ci-overview__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ci-overview__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 1px solid rgba(0,194,168,0.1);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.ci-overview__feature::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--secondary), rgba(0,194,168,0.2));
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.ci-overview__feature:hover {
  border-color: rgba(0,194,168,0.32);
  box-shadow: 0 6px 24px rgba(0,194,168,0.09);
  transform: translateX(4px);
}
.ci-overview__feature:hover::before { opacity: 1; }

.ci-overview__feature-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(0,194,168,0.13), rgba(0,194,168,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.ci-overview__feature:hover .ci-overview__feature-icon {
  background: linear-gradient(135deg, rgba(0,194,168,0.22), rgba(0,194,168,0.1));
  transform: scale(1.08) rotate(-4deg);
}

.ci-overview__feature-body { flex: 1; }
.ci-overview__feature-body h3 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ci-overview__feature-body p {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
}

.ci-overview__feature-num {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(0,194,168,0.22);
  flex-shrink: 0;
  padding-top: 2px;
  transition: color 0.3s;
}
.ci-overview__feature:hover .ci-overview__feature-num { color: var(--secondary); }

/* ══════════════════════════════════════════
   RIGHT — Image
════════════════════════════════════════════ */

.ci-overview__visual {
  display: flex;
  justify-content: flex-end;
}
.ci-overview__img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Floating pill */
.ci-overview__pill {
  position: absolute;
  top: -14px; left: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.11);
}
.ci-overview__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,194,168,0.25);
  animation: ciDotPulse 2s ease infinite;
}

/* Image frame */
.ci-overview__img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: #e5f0f7;
  box-shadow: 0 24px 64px rgba(11,31,58,0.13), 0 0 0 1px rgba(0,194,168,0.1);
}
.ci-overview__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ci-overview__img-frame:hover img { transform: scale(1.04); }
.ci-overview__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.18) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* Corner accents */
.ci-overview__corner {
  position: absolute;
  width: 52px; height: 52px;
  pointer-events: none;
  z-index: 3;
}
.ci-overview__corner--tl {
  top: -2px; left: -2px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
}
.ci-overview__corner--br {
  bottom: -2px; right: -2px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius-md) 0;
}

/* Floating badge */
.ci-overview__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  z-index: 4;
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(11,31,58,0.2);
  min-width: 200px;
}
.ci-overview__badge-icon {
  width: 38px; height: 38px;
  background: rgba(0,194,168,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.ci-overview__badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.ci-overview__badge span {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}

/* Teal vertical bar */
.ci-overview__img-bar {
  position: absolute;
  top: 60px; bottom: 60px;
  left: -6px;
  width: 4px;
  background: linear-gradient(to bottom, var(--secondary), rgba(0,194,168,0.1));
  border-radius: 4px;
  z-index: 2;
}

/* ══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ci-overview__inner { gap: var(--space-lg); }
}
@media (max-width: 900px) {
  .ci-overview__inner {
    grid-template-columns: 1fr;
  }
  .ci-overview__visual {
    justify-content: center;
    order: -1;
  }
  .ci-overview__img-wrap {
    max-width: 500px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .ci-overview__title  { font-size: 1.75rem; }
  .ci-overview__badge  { left: 0; bottom: -16px; min-width: auto; }
  .ci-overview__feature { padding: var(--space-sm); }
  .ci-overview__feature-body h3 { font-size: 0.85rem; }
}