#hero {
    position: relative; 
    background: url(https://v-perspectiva.ru/wp-content/uploads/2025/07/IMG_0089-1-scaled.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: transparent;
    background-image: linear-gradient(90deg, #000000C2 26%, #0000002E 100%);
    
    z-index: -1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-title { 
    color: var(--gray-light);
}