.feature-card {
  border: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(250,250,255,0.85));
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(20,30,60,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  padding: 1.2rem;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(20,30,60,0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(59,130,246,0.08));
  font-size: 1.6rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: .35rem;
}

.feature-desc {
  color: #54607a;
  font-size: .95rem;
}

