/* ================================================
   FEATURES — 6-card grid with glassmorphism
   ================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fc {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.fc.on {
  opacity: 1;
  transform: translateY(0);
}

.fc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.fc:hover::before {
  opacity: 1;
}

.fc:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.1), 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

/* ── Icon ── */
.fi {
  width: 48px;
  height: 48px;
  background: rgba(13, 74, 47, 0.55);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.fc:hover .fi {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
  transform: scale(1.08);
}

.ft {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}

.fd {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
