.features {
  text-align: center;
  padding: 100px 30px;
  background: #fafafa;
  font-family: 'Heebo', sans-serif;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 200;
  font-size: clamp(20px, 6vw, 26px);
}

.features h3 {
    font-weight: 200;
    font-size: clamp(16px, 5vw, 22px);
    color: rgb(20, 95, 99);
}

.features p {
    font-weight: 100;
    font-size: clamp(16px, 3vw, 18px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(40px);
}

.card.active {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}