.hero-tech {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(to top, #0f172a, transparent);
}

.tech-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tech-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scroll 25s linear infinite;
}

/* пауза при наведении (как у нормальных продуктов 😄) */
.tech-marquee:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    opacity: 0.7;
    transition: 0.3s;
}

.tech-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.tech-item span {
    font-size: 14px;
    color: #94a3b8;
}

/* hover эффект */
.tech-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* ключевая магия */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}