/* Simplify Needs Section Styling */
.simplify-needs-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, #050f22 0%, #09152b 100%);
  overflow: hidden;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Grid Pattern */
.simplify-needs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(239, 49, 57, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 49, 57, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

/* Soft Neon Glowing Orbs */
.needs-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}
.needs-glow-orb.glow-red {
  background: #ef3139;
  top: -100px;
  right: -100px;
}
.needs-glow-orb.glow-blue {
  background: #00c6ff;
  bottom: -150px;
  left: -150px;
}

.simplify-needs-section .container {
  position: relative;
  z-index: 2;
}

/* Header Text Styles */
.needs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ef3139;
  margin-bottom: 15px;
  background: rgba(239, 49, 57, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(239, 49, 57, 0.2);
}

.needs-title {
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.needs-title span {
  color: #ef3139;
  position: relative;
  display: inline-block;
}

.needs-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(239, 49, 57, 0.3);
  z-index: -1;
  border-radius: 2px;
}

.needs-desc {
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0 auto 50px auto;
}

/* Needs Grid Layout */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
}

/* Needs Compact Card Item */
.needs-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid #ef3139;
  border-radius: 8px;
  padding: 12px 18px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.needs-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(239, 49, 57, 0.3);
  border-left-color: #ef3139;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 49, 57, 0.1);
}

/* Checkmark Wrapper */
.needs-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(239, 49, 57, 0.15);
  border: 1px solid rgba(239, 49, 57, 0.25);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.needs-card:hover .needs-icon-box {
  background: #ef3139;
  border-color: #ef3139;
  transform: scale(1.1);
}

.needs-icon-box svg {
  width: 14px;
  height: 14px;
  color: #ef3139;
  transition: all 0.3s ease;
}

.needs-card:hover .needs-icon-box svg {
  color: #ffffff;
}

.needs-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.needs-card:hover .needs-text {
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .needs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .needs-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .simplify-needs-section {
    padding: 60px 0;
  }
  
  .needs-desc {
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .needs-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .needs-desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
  }
  
  .needs-card {
    padding: 10px 14px;
  }
  
  .needs-text {
    font-size: 13.5px;
  }
  
  .needs-icon-box {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  
  .needs-icon-box svg {
    width: 12px;
    height: 12px;
  }
}
