.cps-presentation-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.cps-presentation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.cps-breadcrumb {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cps-category { color: #d32f2f; text-transform: uppercase; }
.cps-separator { color: #cbd5e1; margin: 0 10px; font-weight: 300; }
.cps-current-title { color: #64748b; }

.cps-nav-controls { display: flex; align-items: center; gap: 16px; }
.cps-slide-counter { font-family: monospace; font-size: 15px; font-weight: 500; color: #64748b; letter-spacing: 1px; }

.cps-nav-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #475569;
}

.cps-slider-wrapper { position: relative; margin-bottom: 40px; }
.cps-slick-slide-inner { opacity: 0; transform: translateX(20px); transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.slick-slide.slick-active .cps-slick-slide-inner { opacity: 1; transform: translateX(0); }

.cps-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  padding: 15px 1px;

}

.cps-card-container {
  position: relative;
   border-radius: 20px; 
  background: #f8f9fa; 
/*   height: 420px; */
  padding:10px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cps-card-before { border: 1px solid #e2e8f0; }
.cps-card-after { border: 1px solid #fee2e2; }

.cps-card-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cps-pill-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 5;
}

.cps-pill-before { background-color: #0c101a; }
.cps-pill-after { background-color: #d32f2f; }

.cps-center-divider {
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
}

.cps-center-divider:before,
.cps-center-divider:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1.12px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(191, 30, 46, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.cps-center-divider:before {
  top: 0;
  bottom: calc(50% + 22px);
}

.cps-center-divider:after {
  top: calc(50% + 22px);
  bottom: 0;
}

.cps-arrow-circle {
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cps-progress-bar-container {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.cps-progress-segment {
  flex: 1;
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.cps-progress-fill {
  height: 100%;
  width: 0;
  background-color: #d32f2f;
}

.cps-progress-fill.completed { width: 100%; }
.cps-progress-fill.active { animation: cpsProgress linear forwards; }

@keyframes cpsProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.cps-presentation-container:hover .cps-progress-fill.active {
  animation-play-state: paused;
}

@media (max-width: 992px) {
  .cps-comparison-grid { grid-template-columns: 1fr; gap: 40px; }
  .cps-center-divider {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 44px;
  }
  .cps-center-divider:before {
    top: 50%;
    left: 0;
    right: calc(50% + 22px);
  }
  .cps-center-divider:after {
    top: 50%;
    left: calc(50% + 22px);
    right: 0;
  }
  .cps-center-divider:before,
  .cps-center-divider:after {
    bottom: auto;
    width: auto;
    height: 1.12px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(191, 30, 46, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  }
  .cps-arrow-circle { transform: rotate(90deg); }
  .cps-card-container { height: 320px; }
	.cps-card-container img { object-fit:contain;}
}
