.why-us {
  background-color: #0a0a23;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.why-us .container {
  position: relative;
  padding: 0 40px;
  z-index: 2;
}

.why-us h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-us-subtitle {
  font-size: 18px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 50px;
  max-width: 900px;
}

.why-us-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}

.why-item {
  flex: 1;
  text-align: center;
  color: #fff;
  max-width: 320px;
  margin: 0 auto;
}

.why-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;

  background: linear-gradient(
    90deg,
    #fceabb 0%,
    #f8b500 25%,
    #fceabb 50%,
    #f8b500 75%,
    #fceabb 100%
  );
  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldPulse 5s ease-in-out infinite alternate;
}

.why-item p {
  font-size: 15px;
  line-height: 1.4;
  color: #ddd;
}

.why-us-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.why-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.why-block img {
  width: 32px;
  height: 32px;
  margin-top: 10px;
}

.why-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;

  background: linear-gradient(
    90deg,
    #fceabb 0%,
    #f8b500 25%,
    #fceabb 50%,
    #f8b500 75%,
    #fceabb 100%
  );
  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldPulse 5s ease-in-out infinite alternate;
}

.why-block p {
  font-size: 14px;
  line-height: 1.5;
  color: #ddd;
}

.why-us .zayavka-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@keyframes goldPulse {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

@media (max-width: 768px) {
  .why-us-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* расстояние между блоками */
  }

  .why-item {
    max-width: 100%;
  }

  .why-us::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%; /* Сдвигаем диагональ правее */
    width: 65%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(20deg);
    transform-origin: bottom right;
    z-index: 0;
  }
}