/**
 * Single responsibility: Visual styling for the "5 Simple Steps" Bento Grid section.
 * Grid layout without central image, focused on very high text visibility.
 */

.steps-section {
  padding: var(--space-20) 0;
  position: relative;
  background: #040b14;
  overflow: hidden;
}

.steps-section {
  padding: var(--space-20) 0;
  position: relative;
  background: #040b14;
  overflow: hidden;
}

.steps-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-12);
  max-width: 800px;
  margin-inline: auto;
}

.step-bento-card {
  position: relative;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-6);
  transition: all 0.4s ease;
  overflow: hidden;
}

.step-bento-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

/* Bento Grid Spanning */
.step-card-1 { grid-column: span 1; }
.step-card-2 { grid-column: span 1; }
.step-card-3 { grid-column: span 1; }
.step-card-4 { grid-column: span 1; }
.step-card-5 { grid-column: span 1; }

.step-bento-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.226);
  line-height: 1;
  transition: color 0.4s ease;
  margin: 0;
  order: 3;
  margin-left: auto;
}

.step-bento-card:hover .step-bento-number {
  color: rgba(59, 130, 246, 0.1);
}

.step-bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.step-bento-icon svg {
  width: 24px;
  height: 24px;
}

.step-bento-card:hover .step-bento-icon {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.step-bento-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  margin: 0;
}

.step-bento-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .steps-bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .steps-bento-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .step-bento-card {
    padding: var(--space-6);
  }
}
