.b2b-steps-section {
  max-width: 1170px;
  margin: 60px auto;
  text-align: center;
  padding: 0 15px;
}

.b2b-steps-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 40px;
}

.b2b-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.b2b-step {
  flex: 1 1 calc(25% - 30px);
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.b2b-step:nth-child(1) { animation-delay: 0.2s; }
.b2b-step:nth-child(2) { animation-delay: 0.4s; }
.b2b-step:nth-child(3) { animation-delay: 0.6s; }
.b2b-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.b2b-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.b2b-step img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #2b2d42;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.b2b-step .step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2d42;
}

.b2b-step .step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 992px) {
  .b2b-step {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .b2b-step {
    flex: 1 1 100%;
  }
}

.b2b-cta-button {
  margin-top: 40px;
}

.b2b-cta-button a {
  display: inline-block;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  background-color: #2b2d42;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.b2b-cta-button a:hover {
  color: #fff;
  background-color: #1f2333;
}