/* ------------------------------- SPLIT SECTION --------------------------------- */
.split-app-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 80px 0;
    padding: 1rem 1rem 0 1rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
}

.split-app-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.split-app-half h3 {
    font-size: var(--fs-p);
    font-weight: 600;
    color: var(--clr-white);
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.split-app-half p {
    font-size: var(--fs-p);
    font-weight: 400;
    color: var(--clr-white-80);
    margin: 0;
    line-height: 1.25;
    font-family: 'Inter', sans-serif;
}

.split-app-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 1rem;
}

.split-app-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

/* Desktop view - side by side */
@media (min-width: 768px) {
    .split-app-section {
        flex-direction: row;
        gap: 0;
        margin: 100px 0;
        align-items: stretch;
        padding: 2rem 1rem 0 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .split-app-half {
        padding: 0 2rem;
        align-items: flex-start;
        position: relative;
        border-top: none;
    }
    
    .split-app-half:first-child {
        padding-left: 0;
    }
    
    .split-app-half:first-child::after {
        content: '';
        position: absolute;
        right: 0;
        top: -2rem;
        bottom: 0;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .split-app-half:last-child {
        padding-right: 0;
    }
    
    .split-app-half h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .split-app-section {
        /* margin: 120px 0; */
        padding: 3rem 1rem;
    }
    
    .split-app-half {
        padding: 0 3rem;
    }
    
    .split-app-half:first-child {
        padding-left: 0;
    }
    
    .split-app-half:first-child::after {
        top: -3rem;
        bottom: -3rem;
    }
    
    .split-app-half:last-child {
        padding-right: 0;
    }
    
    .split-app-half h2 {
        font-size: 3rem;
    }
}
