/* ─── COME FUNZIONA ─────────────────────────────────────────────── */
#come { padding: 8rem 2rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 24px;
  left: calc(16.666% + 8px);
  right: calc(16.666% + 8px);
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(0,192,127,0.25) 20%,
    rgba(0,192,127,0.15) 50%,
    rgba(0,192,127,0.25) 80%,
    transparent 100%
  );
}

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

.step-item { padding: 0 2rem 0 0; }
.step-item:last-child { padding-right: 0; }

@media (max-width: 768px) {
  .step-item { padding: 0 0 3rem; }
}

.step-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,192,127,0.3);
  background: rgba(0,192,127,0.04);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--emerald);
  margin-bottom: 1.75rem;
}
.step-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── STEP BADGES — GLOWING RING ON HOVER ────────────────────── */
.step-badge {
  transition: box-shadow 0.35s, background 0.35s;
}
.step-item:hover .step-badge {
  box-shadow:
    0 0 0 4px rgba(0,192,127,0.07),
    0 0 28px rgba(0,192,127,0.22);
  background: rgba(0,192,127,0.1);
}

/* Section decompression — breathing room enterprise */
#come { padding: 12rem 2rem; }
