.benefits-section {
  background: var(--warm-cream);
  padding: 120px 16px;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  position: relative;
  color: var(--deep-teal);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-teal), var(--coral-peach));
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--desert-sand);
  padding: 3rem 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(125, 189, 182, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(125, 189, 182, 0.2);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--soft-teal), var(--coral-peach));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(125, 189, 182, 0.2);
  border-color: var(--soft-teal);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--soft-teal), var(--deep-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(125, 189, 182, 0.4);
  border: 3px solid white;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(125, 189, 182, 0.5);
}

.benefit-card svg {
  transition: all 0.3s ease;
}

.benefit-card:hover svg {
  transform: scale(1.05);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--deep-teal);
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--coral-peach);
}

.benefit-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE - CRITICAL */
@media (max-width: 1200px) {
  .benefits-grid {
    max-width: 900px;
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .benefit-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .benefit-card {
    padding: 2rem 1.25rem;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
  }
}