.home-v5 .propaganda {
  background: #1e73be;
  color: #fff;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.home-v5 .propaganda h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.home-v5 .propaganda p {
  margin-bottom: 30px;
  font-size: 1.05em;
}

.home-v5 .carousel {
  width: 100%;
  overflow: hidden;
}

.home-v5 .carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: v5-scroll 25s linear infinite;
}

.home-v5 .software-card {
  flex: 0 0 140px;
  background: #ffffff11;
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-v5 .software-card:hover {
  background: #ffffff22;
  transform: scale(1.08);
}

.home-v5 .software-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.home-v5 .software-card span {
  display: block;
  font-weight: 700;
  font-size: 0.95em;
}

@keyframes v5-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .home-v5 .carousel-track { gap: 15px; }
  .home-v5 .software-card { flex: 0 0 100px; }
  .home-v5 .software-card img { width: 50px; height: 50px; }
}
