/* Герой секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /*background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 30%);*/
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.infinite-scroll-container {
    position: absolute;
    width: 100%;
    left: 0;
    overflow: hidden;
    z-index: 1;
    filter: brightness(50%);
}

.infinite-scroll-container:first-child {
    top: 10%;
}

.infinite-scroll-container:last-child {
    bottom: 15%;
}
.scroller {
    display: flex;
    width: max-content;
}

.scroller-left {
    animation: scrollLeft var(--left_scroller_s) linear infinite;
}

.scroller-right {
    animation: scrollRight var(--right_scroller_s) linear infinite;
}

.scroller-inner {
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

.scroller img {
    max-width: 400px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    flex-shrink: 0;
}