@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&family=Inter:wght@400;600;700&display=swap');

.process-section {
  background: #fff;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

.process-section h2 {
  color: #0f172a;
  margin-bottom: 4rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* сетка шагов */
.process-step {
  display: grid;
  grid-template-columns: minmax(50px, 70px) minmax(280px, 380px) 1fr; /* Увеличено с 340px до 380px */
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2rem 0;
}

/* номера шагов */
.step-number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--brand-700);
  text-align: right;
  transform: translateY(-2px);
}

/* заголовки шагов */
.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.2rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* основной текст */
.step-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  max-width: 700px;
}

/* разделители */
.process-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* --- адаптив --- */
@media (max-width: 1200px) {
  .process-step {
    grid-template-columns: minmax(45px, 60px) minmax(260px, 340px) 1fr;
  }
  .step-title {
    white-space: wrap;
  }
}

@media (max-width: 992px) {
  .process-step {
    grid-template-columns: minmax(40px, 50px) minmax(240px, 300px) 1fr;
    gap: 1.3rem;
  }
}

@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.6rem 0;
  }
  .step-number {
    font-size: 1.2rem;
    text-align: left;
    transform: none;
  }
  .step-title {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
    white-space: normal;
  }
  .step-text {
    font-size: 1rem;
  }
}