/* Buscatel Systems Style */

.bs-88d8644f-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 800px;
    padding: 60px 0 300px;
    font-family: 'Roboto', sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.bs-88d8644f-system-card {
    display: flex;
    align-items: center;
    gap: 0;
    position: sticky;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(29, 44, 111, 0.1);
    /* Reduced min-height to ensure it fits comfortably within viewport height on 100% zoom */
    min-height: 600px;
    /* Pushed sticky top higher up to give more space for the bottom content */
    top: 60px !important;
    transform-origin: top center;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: var(--bs-card-bg, #f8fafc);
}

.bs-88d8644f-content-col {
    flex: 1;
    /* Adjusted padding to save space vertically */
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bs-88d8644f-content-inner {
    max-width: 500px;
}

.bs-88d8644f-image-col {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.bs-88d8644f-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bs-88d8644f-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bs-88d8644f-system-card:hover .bs-88d8644f-image-wrapper img {
    transform: scale(1.05);
}

/* Custom Pulse Badge Styles */
.bs-88d8644f-badge-wrap {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.bs-88d8644f-sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    border: none;
    border-radius: 100px;
    padding: 6px 16px;
    position: relative;
}

.bs-88d8644f-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f46e5;
    position: relative;
}

.bs-88d8644f-badge-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: #4f46e5;
    opacity: 0.3;
    animation: bs-88d8644f-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bs-88d8644f-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

.bs-88d8644f-badge-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #4f46e5;
}

.bs-88d8644f-system-title {
    font-family: 'Poppins', sans-serif;
    /* Adjusted font size slightly */
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.bs-88d8644f-system-desc {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 30px;
}

.bs-88d8644f-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bs-88d8644f-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bs-88d8644f-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(153, 183, 255, 0.2);
}

.bs-88d8644f-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
}

.bs-88d8644f-feature-text {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.bs-88d8644f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.bs-88d8644f-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(29, 44, 111, 0.25);
    color: #ffffff;
}

@media (max-width: 991px) {
    .bs-88d8644f-scroll-container {
        padding: 60px 0;
        gap: 40px;
    }
    
    .bs-88d8644f-system-card {
        flex-direction: column;
        position: relative !important;
        top: auto !important;
        min-height: auto;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    
    .bs-88d8644f-content-col {
        padding: 40px 30px;
    }
    
    .bs-88d8644f-image-col {
        padding: 0 30px 40px;
        height: 400px;
    }
    
    .bs-88d8644f-system-title {
        font-size: 2rem;
    }
    
    .bs-88d8644f-badge-wrap {
        justify-content: center;
        text-align: center;
    }
}
