/* Заголовок/лид на этой странице чуть компактнее */
.h1.how{
  font-size: clamp(34px, 5.5vw, 56px);
  margin-bottom: 12px;
}

.lead.how{
  margin-bottom: 24px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:8px;
}

@media (max-width: 760px){
  .grid{ grid-template-columns: 1fr; }
}

.step{
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(2,6,23,0.55);
  border-radius:14px;
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  min-height:104px;
}

.badge{
  width:32px;
  height:32px;
  border-radius:10px;
  background: rgba(94,234,212,0.12);
  border:1px solid rgba(94,234,212,0.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  font-weight:800;
  flex:0 0 32px;
}

.step h3{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.25;
}
.step p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color: var(--text-muted);
}

.divider{
  margin:18px 0;
  height:1px;
  background: rgba(255,255,255,0.08);
}

.bullets{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--text-muted);
  font-size:14px;
  line-height:1.6;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--accent);
  margin-top:7px;
  flex: 0 0 8px;
}

code.inline{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(2,6,23,0.65);
  border:1px solid rgba(255,255,255,0.08);
  padding:2px 6px;
  border-radius:8px;
  color: rgba(229,231,235,0.92);
  font-size:12px;
}

.actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

@media (max-width: 640px){
  .actions{ flex-direction:column; }
}