/* ====================== */
/* DARK BENEFITS SECTION */
/* ====================== */
.dark-benefits {
  padding: 80px 0 100px;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)),
    url('https://i.ibb.co/kg8s4MVK/a-dashboard-section-background-image-for-Agspj-HP3-Tpqo-ABCKJ9-HPKA-zsfea-ALw-TPKaqdf-GGsetkw.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  font-family: 'Inter', sans-serif;
  position: relative;
  border-radius: 0 0 80px 80px;
  margin-top: -40px;
  z-index: 1;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.dark-benefits .section-title {
  font-size: 42px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Highlight text with colored underline ONLY */
.section-title .highlight {
  color: #4fd1c5;
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c5, #4CAF50);
  z-index: -1;
  border-radius: 2px;
}

/* ====================== */
/* BENEFIT CARDS */
/* ====================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(79, 209, 197, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.1) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-number {
  font-size: 32px;
  font-weight: 600;
  color: #4fd1c5;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
}

.benefit-title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.benefit-description {
  color: #b2ebf2;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.benefit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-features li {
  margin-bottom: 12px;
  color: #88b4c7;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.benefit-features i {
  margin-right: 12px;
  color: #4fd1c5;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* ====================== */
/* HOVER EFFECTS */
/* ====================== */
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(79, 209, 197, 0.25);
  border-color: rgba(79, 209, 197, 0.5);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover .benefit-number {
  transform: translateX(10px);
}

.benefit-card:hover .benefit-features li {
  color: #b2ebf2;
}

.benefit-card:hover .benefit-features i {
  color: #42a5f5;
  transform: scale(1.15);
}

/* ====================== */
/* RESPONSIVE ADJUSTMENTS */ 
/* ====================== */
@media (max-width: 1200px) {
  .benefits-grid {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .dark-benefits {
    padding: 60px 0 80px;
    border-radius: 0 0 60px 60px;
    margin-top: -30px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .benefit-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .dark-benefits {
    padding: 50px 0 70px;
    border-radius: 0 0 50px 50px;
    margin-top: -25px;
    background-position: center 30%;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .benefit-title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .dark-benefits {
    padding: 40px 0 60px;
    border-radius: 0 0 40px 40px;
    margin-top: -20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .benefit-number {
    font-size: 28px;
  }
}