.hpw {
  width: 100%;
  padding: var(--hpw-pad-top, 28px) 20px var(--hpw-pad-bottom, 28px);
  background: var(--hpw-bg, #f7f4ec);
  box-sizing: border-box;
}

.hpw__inner {
  max-width: var(--hpw-max, 1400px);
  margin: 0 auto;
}

.hpw__head {
  max-width: 720px;
  margin: 0 0 24px;
  text-align: left;
}

.hpw__title {
  margin: 0 0 10px;
  color: #214f2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hpw__desc {
  margin: 0;
  color: #6d7a68;
  font-size: 14px;
  line-height: 1.55;
}

.hpw__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hpw__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 22px 20px 24px;
  text-align: left;
  background: #fff;
  border: 1px solid #e8ebe4;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(33, 79, 47, 0.05);
  box-sizing: border-box;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.hpw__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(33, 79, 47, 0.12);
}

.hpw__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  background: #214f2f;
  border-radius: 50%;
}

.hpw__step-title {
  margin: 0 0 10px;
  color: #214f2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hpw__step-desc {
  margin: 0;
  color: #6d7a68;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 959px) {
  .hpw__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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