/* Feature Card */
.feature-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  border-color: var(--border-secondary);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 230, 255, 0.2), transparent);
  transition: right 0.5s ease;
}

.feature-card:hover::before {
  right: 100%;
}

.feature-card:hover i {
  filter: brightness(1.3);
}

.feature-icon {
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.feature-subtitle {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin: 0;
}
