
.home-how {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-how .container {
  position: relative;
  z-index: 1;
}

.home-how .home-section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-how .home-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-how .home-section-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.home-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.home-how-step {
  position: relative;
  text-align: center;
  padding: 24px 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  z-index: 1;
}

.home-how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  background: white;
}

.home-how-step__number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  z-index: 2;
}

.home-how-step__icon {
  width: 64px;
  height: 64px;
  margin: 20px auto 16px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.home-how-step:hover .home-how-step__icon {
  background: #10b981;
}

.home-how-step__icon svg {
  width: 32px;
  height: 32px;
  color: #10b981;
  transition: all 0.3s ease;
}

.home-how-step:hover .home-how-step__icon svg {
  color: white;
}

.home-how-step__title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.home-how-step__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .home-how__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-how-step {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-how {
    padding: 40px 0;
  }

  .home-how .home-section-title {
    font-size: 24px;
  }

  .home-how .home-section-desc {
    font-size: 13px;
  }

  .home-how__grid {
    gap: 20px;
  }

  .home-how-step {
    padding: 20px 16px;
  }

  .home-how-step__icon {
    width: 56px;
    height: 56px;
    margin: 16px auto 12px;
  }

  .home-how-step__icon svg {
    width: 28px;
    height: 28px;
  }

  .home-how-step__title {
    font-size: 16px;
  }

  .home-how-step__desc {
    font-size: 13px;
  }
}
