/* Integration Slider - Compact 15/85 Split Design */

/* Override existing styles for compact layout */
.split-section {
    background: linear-gradient(135deg, #0F91F2 0%, #6C3AEA 100%);
    padding: 40px 0 !important; /* Reduced from 80px */
    position: relative;
    overflow: visible;
}

.split-container {
    display: flex;
    min-height: 250px !important; /* Much more compact */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

/* 15% for Integrates With section */
.split-left {
    flex: 0 0 15% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: -30px;
    z-index: 2;
}

/* 85% for Platform CTA section */
.split-right {
    flex: 0 0 85% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px 30px 60px !important;
}

/* Compact integrates section */
.integrates-part {
    background: white !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 25px 15px !important;
    min-width: 160px;
    max-width: 180px;
}

.integrates-part .split-content {
    max-width: 100% !important;
    width: 100%;
}

/* Smaller title */
.integrates-title {
    font-size: 14px !important;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 20px !important;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

/* Single logo slider container */
.integrates-logos {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 60px !important;
    margin-bottom: 20px !important;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Individual logo styling for slider */
.integrate-logo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    opacity: 0;
    transform: translateX(100%);
}

.integrate-logo.active {
    opacity: 0.8;
    transform: translateX(0);
    filter: grayscale(100%);
}

.integrate-logo.active:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.integrate-logo.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.integrate-logo img {
    max-height: 100%;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Smaller dots */
.integrates-dots {
    display: flex;
    justify-content: center;
    gap: 6px !important;
}

.dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a90e2;
}

/* Compact platform CTA */
.platform-cta-title {
    font-size: clamp(28px, 3vw, 36px) !important;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px !important;
    text-transform: uppercase;
}

.platform-cta-btn {
    padding: 14px 28px !important;
    font-size: 16px !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        min-height: auto !important;
        padding: 20px;
    }
    
    .split-left,
    .split-right {
        flex: 1 1 100% !important;
        width: 100%;
        margin-right: 0;
        padding: 20px !important;
    }
    
    .integrates-part {
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .platform-cta-title {
        font-size: 24px !important;
        text-align: center;
    }
    
    .platform-cta-part .split-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .split-section {
        padding: 30px 0 !important;
    }
    
    .platform-cta-title {
        font-size: 20px !important;
    }
    
    .integrates-title {
        font-size: 12px !important;
    }
}