.hb-home-steps {
  padding: 56px 0 20px;
  background: #fff;
}
.hb-home-steps-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.hb-home-steps-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
}
.hb-home-steps-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0f172a;
  line-height: 1.15;
}
.hb-home-steps-head p {
  margin: 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.65;
}
.hb-home-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.hb-home-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #f8fbf8 0%, #fff 100%);
  border: 1px solid #e6edf0;
  border-radius: 20px;
  padding: 22px 16px 20px;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hb-home-step:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary-border);
  box-shadow: 0 18px 36px rgba(56, 104, 112, .12);
}
.hb-home-step-num {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hb-home-step-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: 8px;
}
.hb-home-step-art img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.hb-home-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-ink);
}
.hb-home-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--brand-muted);
}
@media (max-width: 991px) {
  .hb-home-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .hb-home-steps { padding: 36px 0 8px; }
  .hb-home-steps-grid { grid-template-columns: 1fr; }
  .hb-home-step-art { height: 128px; }
}
