/* Customer Needs Slide Styles - Clean & Professional */
.customer-needs-container .customer-needs-content-wrapper {
  padding: 3rem 0;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

/* Visual Flow */
.customer-needs-container .visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 2rem;
}

/* Institutions Section */
.customer-needs-container .institutions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.customer-needs-container .institution-icon {
  font-size: 3.5rem;
  margin: 0.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.customer-needs-container .institutions-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
}

/* Flow Arrow */
.customer-needs-container .flow-arrow {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.customer-needs-container .arrow-body {
  width: 140px;
  height: 20px;
  position: relative;
  background: #4f46e5;
  clip-path: polygon(
    0% 25%,
    82% 25%,
    82% 0%,
    100% 50%,
    82% 100%,
    82% 75%,
    0% 75%
  );
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer-needs-container .arrow-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4f46e5;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #4f46e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main Need */
.customer-needs-container .main-need {
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(79, 70, 229, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.customer-needs-container .main-need::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
}

.customer-needs-container .main-need::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.customer-needs-container .need-visual {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.customer-needs-container .chart-icon {
  font-size: 5rem;
  filter: drop-shadow(0 8px 24px rgba(79, 70, 229, 0.25));
  position: relative;
  z-index: 1;
}

.customer-needs-container .main-need h3 {
  font-size: 2.6rem;
  margin: 0 0 2rem 0;
  color: #4f46e5;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

/* Integrated Features */
.customer-needs-container .integrated-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.customer-needs-container .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border-left: 4px solid;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.customer-needs-container .feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.customer-needs-container .feature-item:nth-child(1) {
  border-left-color: #f59e0b;
}

.customer-needs-container .feature-item:nth-child(2) {
  border-left-color: #3b82f6;
}

.customer-needs-container .feature-item:nth-child(3) {
  border-left-color: #10b981;
}

.customer-needs-container .feature-item:nth-child(4) {
  border-left-color: #8b5cf6;
}

.customer-needs-container .feature-item .feature-icon {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.customer-needs-container .feature-item span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .customer-needs-container .visual-flow {
    flex-direction: column;
    gap: 3rem;
  }

  .customer-needs-container .flow-arrow {
    transform: rotate(90deg);
  }

  .customer-needs-container .integrated-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .customer-needs-container .customer-needs-content-wrapper {
    padding: 2rem 0;
    gap: 3rem;
  }

  .customer-needs-container .visual-flow {
    gap: 2rem;
  }

  .customer-needs-container .institutions-section {
    padding: 2rem;
  }

  .customer-needs-container .institution-icon {
    font-size: 3rem;
  }

  .customer-needs-container .main-need {
    padding: 2rem 1.5rem;
  }

  .customer-needs-container .chart-icon {
    font-size: 3.5rem;
  }

  .customer-needs-container .main-need h3 {
    font-size: 1.8rem;
  }

  .customer-needs-container .integrated-features {
    margin-top: 1rem;
  }

  .customer-needs-container .feature-item {
    padding: 0.8rem 1.2rem;
  }

  .customer-needs-container .feature-item .feature-icon {
    font-size: 1.3rem;
  }

  .customer-needs-container .feature-item span:last-child {
    font-size: 0.9rem;
  }
}
