.fixed-bg-section {
    position: relative;
    width: 100% !important;
    max-width: 100%;
    height: 450px; 
    margin: 100px 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 4px;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-image: url('../images/back_block_3_4.webp'); 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Эффект на ПК */
}

.fixed-bg-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(10, 11, 13, 0.75); 
    z-index: 1; 
}

.fixed-bg-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: 700px; 
    padding: 0 40px; 
}

.fixed-badge { 
    font-family: 'Syncopate', sans-serif; 
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    color: var(--accent); 
    display: block; 
    margin-bottom: 20px; 
}

.fixed-bg-content h2 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 36px; 
    font-weight: 300; 
    color: #ffffff; 
    margin-bottom: 20px; 
    letter-spacing: 0.5px; 
    line-height: 1.3; 
}

.fixed-bg-content p { 
    font-size: 14px; 
    color: rgba(255, 255, 255, 0.65); 
    font-weight: 300; 
    line-height: 1.6; 
}

@media (max-width: 1024px) {
    .fixed-bg-section { 
        clip-path: inset(0 0 0 0); 
        height: 400px !important; 
    }
}
@media (max-width: 768px) {
    .fixed-bg-section { 
        clip-path: inset(0 0 0 0); 
        height: auto !important; 
        padding: 80px 20px !important; 
    }

    .fixed-bg-content h2 { 
        font-size: 24px !important; 
    }
}
