/* ═══════════════════════════════════════════
   Thm-Samsung-v4 — Steps Grid
   ═══════════════════════════════════════════ */

.fl-v4-grid-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.fl-v4-grid-step-card {
  padding: 20px;
  border-radius: 8px;
  background: #1e1e1e;
  border: 1px solid #333333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fl-v4-grid-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fl-v4-grid-step-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.fl-v4-grid-step-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.fl-v4-grid-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}

@media (max-width: 768px) {
  .fl-v4-grid-steps {
    grid-template-columns: 1fr;
  }
}