/* ============================================
   PROBLEM SPLIT SECTION
   ============================================ */

.split-section {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
    align-items: center;
    position: relative;
}

.split-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(148, 163, 184, 0.2) 50%, 
        transparent 100%);
}

.split-section__video {
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(90, 62, 255, 0.1));
    grid-column: 2;
    grid-row: 1;
}

.split-section__video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(90, 62, 255, 0.1));
}

.split-section__content {
    padding: 6rem 4rem 6rem 5rem;
    background: var(--bg-white);
    grid-column: 1;
    grid-row: 1;
}

.split-section__title {
    font-size: clamp(2.75rem, 4.5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

