.benefits-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.benefits-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.1);
}

.benefit-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal-500), var(--accent-teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
}

.benefit-icon {
  color: white;
}

.benefit-title {
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.6;
}
