:root {
    --bento-gap: 1rem; 
}

.problem-section-new {
    padding: 50px 0;
}

.problem-pill-new {
    background-color: #f8dde0;
    color: #ef0707;
    border: 1px solid #f37979;
    font-size: 0.80rem;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.problem-heading-new {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.problem-subtext-new {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.sticky-text {
    position: sticky;
    top: 120px; 
}

.cards-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-wrap {
    padding-bottom: 5px; 
}

.problem-card-new {
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: -25px; 
    box-shadow: 0 10px 30px #bd1c2c0d;
    border: 1px solid #00000008;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), margin-left 0.6s ease, margin-bottom 0.6s ease;
    z-index: 1;
}

.card-wrap:nth-child(1) .problem-card-new { 
    transform: rotate(-3deg); 
    margin-left: -20px; 
    z-index: 5;
}

.card-wrap:nth-child(2) .problem-card-new { 
    transform: rotate(3deg); 
    margin-left: 20px; 
    z-index: 4;
}

.card-wrap:nth-child(3) .problem-card-new { 
    transform: rotate(-2deg); 
    margin-left: -10px; 
    z-index: 3;
}

.card-wrap:nth-child(4) .problem-card-new { 
    transform: rotate(4deg); 
    margin-left: 30px; 
    z-index: 2;
}

.card-wrap:nth-child(5) .problem-card-new { 
    transform: rotate(-3deg); 
    margin-left: 10px; 
    z-index: 1;
}

.card-wrap .problem-card-new.aligned {
    transform: rotate(0deg) !important;
    margin-left: 0 !important;
    margin-bottom: 20px !important; 
    z-index: 10 !important;
}

.card-icon {
    width: 32px;
    height: 32px;
    background-color: #fdf1f2;
    color: #ef0707;
    border-radius: 8px;
    margin-bottom: 16px;
}

.card-icon svg {
    width: 18px;
    height: 18px;
}

.problem-card-title-new {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.problem-card-desc-new {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (width < 991px) {
    .sticky-text {
        position: static;
        margin-bottom: 40px;
    }

    .problem-heading {
        font-size: 2.2rem;
    }

    .card-wrap .problem-card-new {
        transform: none !important;
        margin-left: 0 !important;
        margin-bottom: 20px !important;
    }
}

.ecosystem-section {
    padding: 40px 0;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    z-index: 0;
    pointer-events: none;
    animation: pulse-bg 8s infinite alternate ease-in-out;
}

@keyframes pulse-bg {
    0% { 
        opacity: 0.5; 
        transform: translateX(-50%) scale(0.95); 
    }

    100% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1.05); 
    }
}

.container-eco {
    position: relative;
    z-index: 2;
}

.section-heading {
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-subtext {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.ecosystem-grid {
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
}

.connector-bridge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 2px;
    background: #bd1c2c26; 
    z-index: 3;
}

.data-particle {
    width: 8px;
    height: 8px;
    background-color: #d12235;
    box-shadow: 0 0 15px 4px #d1223566;
    left: 0;
    animation: travel 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes travel {
    0% { 
        left: 0; 
        opacity: 0; 
        transform: scale(0.5); 
    }

    10% { 
        opacity: 1; 
        transform: scale(1); 
    }

    90% { 
        opacity: 1; 
        transform: scale(1); 
    }

    100% { 
        left: 100%; 
        opacity: 0; 
        transform: scale(0.5); 
    }
}

.connector-node {
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border: 2px solid #d1223533;
    box-shadow: 0 0 30px #d1223526;
    color: #d12235;
    z-index: 4;
    animation: node-pulse 3s infinite;
}

@keyframes node-pulse {
    0% { 
        box-shadow: 0 0 15px #d122351a; 
        border-color: #d1223533; 
    }

    50% { 
        box-shadow: 0 0 35px #d122354d; 
        border-color: #d1223599; 
    }

    100% { 
        box-shadow: 0 0 15px #d122351a; 
        border-color: #d1223533; 
    }
}

.ecosystem-card {
    flex: 1;
    border: 1px solid #0000000a;
    border-radius: 24px;
    padding: 60px 40px;
    transition: border-color 0.3s ease;
    box-shadow: 0 15px 35px #bd1c2c0d;
    cursor: crosshair;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), #d1223526, transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ecosystem-card:hover::before {
    opacity: 1;
}

.ecosystem-card:hover {
    border-color: #d1223533;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-tag {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: #d12235;
    background: #fdf1f2;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.ecosystem-card-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ecosystem-card-desc {
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (width < 991px) {
    .section-heading { 
        font-size: 2.5rem; 
    }

    .ecosystem-grid {
        flex-direction: column;
        gap: 40px;
    }

    .connector-bridge {
        position: relative;
        width: 2px;
        height: 80px;
        margin: 0 auto;
    }

    .data-particle {
        animation: travel-vertical 3s infinite;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes travel-vertical {
        0% { 
            top: 0; 
            opacity: 0; 
        }

        10% { 
            opacity: 1; 
        }

        90% { 
            opacity: 1; 
        }

        100% { 
            top: 100%; 
            opacity: 0; 
        }
    }
}

.avatar{ 
    width:40px; 
    height:40px; 
    flex:0 0 auto; 
}

.avatar img { 
    width:25px; 
    height:25px; 
}

        .cards-container {
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .card-wrap {
            padding-bottom: 5px; 
        }

        .problem-card-new {
            border-radius: 16px;
            padding: 24px 30px;
            margin-bottom: -25px; 
            box-shadow: 0 10px 30px #bd1c2c0d;
            border: 1px solid #00000008;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), margin-left 0.6s ease, margin-bottom 0.6s ease;
            z-index: 1;
        }

        .card-wrap:nth-child(1) .problem-card-new { 
          transform: rotate(-3deg); 
          margin-left: -20px; 
          z-index: 5;
        }

        .card-wrap:nth-child(2) .problem-card-new { 
          transform: rotate(3deg); 
          margin-left: 20px; 
          z-index: 4;
        }

        .card-wrap:nth-child(3) .problem-card-new { 
          transform: rotate(-2deg); 
          margin-left: -10px; 
          z-index: 3;
        }

        .card-wrap:nth-child(4) .problem-card-new { 
          transform: rotate(4deg); 
          margin-left: 30px; 
          z-index: 2;
        }

        .card-wrap:nth-child(5) .problem-card-new { 
          transform: rotate(-3deg); 
          margin-left: 10px; 
          z-index: 1;
        }

        .card-wrap .problem-card-new.aligned {
            transform: rotate(0deg) !important;
            margin-left: 0 !important;
            margin-bottom: 20px !important; 
            z-index: 10 !important;
        }

        .card-icon {
            width: 32px;
            height: 32px;
            background-color: #fdf1f2;
            color: #ef0707;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .card-icon svg {
            width: 18px;
            height: 18px;
        }

        .problem-card-title-new {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .problem-card-desc-new {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        @media (width < 991px) {
            .sticky-text {
                position: static;
                margin-bottom: 40px;
            }

            .problem-heading {
                font-size: 2.2rem;
            }

            .card-wrap .problem-card-new {
                transform: none !important;
                margin-left: 0 !important;
                margin-bottom: 20px !important;
            }
        }

        .ecosystem-section {
            padding: 40px 0;
        }

        .ecosystem-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 1000px;
            z-index: 0;
            pointer-events: none;
            animation: pulse-bg 8s infinite alternate ease-in-out;
        }

        @keyframes pulse-bg {
            0% { 
                opacity: 0.5; 
                transform: translateX(-50%) scale(0.95); 
            }

            100% { 
                opacity: 1; 
                transform: translateX(-50%) scale(1.05); 
            }
        }

        .container-eco {
            position: relative;
            z-index: 2;
        }

        .section-heading {
            font-size: 2.5rem;
            letter-spacing: -1px;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .section-subtext {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 80px;
            line-height: 1.6;
        }

        .ecosystem-grid {
            align-items: stretch;
            justify-content: space-between;
            gap: 60px;
        }

        .connector-bridge {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 2px;
            background: #bd1c2c26; 
            z-index: 3;
        }

        .data-particle {
            width: 8px;
            height: 8px;
            background-color: #d12235;
            box-shadow: 0 0 15px 4px #d1223566;
            left: 0;
            animation: travel 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
        }

        @keyframes travel {
            0% { 
                left: 0; 
                opacity: 0; 
                transform: scale(0.5); 
            }

            10% { 
                opacity: 1; 
                transform: scale(1); 
            }

            90% { 
                opacity: 1; 
                transform: scale(1); 
            }

            100% { 
                left: 100%; 
                opacity: 0; 
                transform: scale(0.5); 
            }
        }

        .connector-node {
            left: 50%;
            transform: translateX(-50%);
            width: 56px;
            height: 56px;
            border: 2px solid #d1223533;
            box-shadow: 0 0 30px #d1223526;
            color: #d12235;
            z-index: 4;
            animation: node-pulse 3s infinite;
        }

        @keyframes node-pulse {
            0% { 
                box-shadow: 0 0 15px #d122351a; 
                border-color: #d1223533; 
            }

            50% { 
                box-shadow: 0 0 35px #d122354d; 
                border-color: #d1223599; 
            }

            100% { 
                box-shadow: 0 0 15px #d122351a; 
                border-color: #d1223533; 
            }
        }

        .ecosystem-card {
            flex: 1;
            border: 1px solid #0000000a;
            border-radius: 24px;
            padding: 60px 40px;
            transition: border-color 0.3s ease;
            box-shadow: 0 15px 35px #bd1c2c0d;
            cursor: crosshair;
        }

        .ecosystem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), #d1223526, transparent 40%);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .ecosystem-card:hover::before {
            opacity: 1;
        }
        
        .ecosystem-card:hover {
            border-color: #d1223533;
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .card-tag {
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            color: #d12235;
            background: #fdf1f2;
            padding: 8px 16px;
            margin-bottom: 24px;
        }

        .ecosystem-card-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .ecosystem-card-desc {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        @media (width < 991px) {
            .section-heading { 
                font-size: 2.5rem; 
            }

            .ecosystem-grid {
                flex-direction: column;
                gap: 40px;
            }

            .connector-bridge {
                position: relative;
                width: 2px;
                height: 80px;
                margin: 0 auto;
            }

            .data-particle {
                animation: travel-vertical 3s infinite;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }

            @keyframes travel-vertical {
                0% { 
                    top: 0; 
                    opacity: 0; 
                }

                10% { 
                    opacity: 1; 
                }

                90% { 
                    opacity: 1; 
                }

                100% { 
                    top: 100%; 
                    opacity: 0; 
                }
            }
        }

          .onboard-section {
            padding: 50px 0;
        }

        .onboard-logo-container {
            scale: calc(1);
            margin-bottom: 15px;
        }
        
        .onboard-logo {
            max-height: 48px; 
        }

        .onboard-section-title {
            font-size: 2.5rem;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .onboard-section-tags {
            font-size: 1rem;
            color: #2e5b52;
            letter-spacing: 1px;
            margin-bottom: 70px;
        }

        .onboard-timeline-wrapper {
            margin-bottom: 45px;
            padding: 0 20px;
        }

        .onboard-timeline-wrapper::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 45px;
            right: 45px;
            height: 2px;
            background: linear-gradient(90deg, #2e5b5210 0%, #2e5b5230 50%, #2e5b5210 100%);
            z-index: 1;
        }

        .onboard-timeline-steps {
            z-index: 2;
        }

        .onboard-step-item {
            width: 100px;
            cursor: default;
        }

        .onboard-step-circle {
            width: 50px;
            height: 50px;
            background: #fff;
            border: 1px solid #2e5b5276;
            color: #2e5b52;
            font-size: 1.1rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px #00000005; 
        }

        .onboard-step-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #666;
            transition: color 0.3s ease;
        }

        .onboard-step-item:hover .onboard-step-circle {
            background: #2e5b58;
            border-color: #2e5b58;
            color: #fff;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px #2e5b5833;
        }

        .onboard-step-item:hover .onboard-step-label {
            color: #2e5b58;
        }

        .onboard-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .onboard-feature-card {
            background: linear-gradient(145deg, #fff, #fcfcfc);
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 4px 6px -1px #00000005, 0 12px 30px -4px #0000000a;
            border: 1px solid #00000008;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 1;
        }

        .onboard-feature-card:hover {
            transform: translateY(-8px);
            border-color: #357a7058;
            box-shadow: 0 10px 15px -3px #357a700a, 0 25px 50px -12px #357a7014;
        }

        .onboard-feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #ebfffb 0%, #fff 100%);
            border: 1px solid #2e5b522f;
            color: #2e5b58;
            border-radius: 16px;
            margin-bottom: 24px;
            font-size: 1.5rem; 
            box-shadow: inset 0 2px 4px #fff, 0 4px 10px #2e5b520f;
            transition: transform 0.4s ease;
        }

        .onboard-feature-card:hover .onboard-feature-icon {
            transform: scale(1.05);
            background: #2e5b52;
            color: #fff;
            border-color: #2e5b52;
        }

        .onboard-feature-card-text {
            font-size: 1rem;
            line-height: 1.7;
        }

        @media (width > 1024px) {
            .onboard-feature-card:nth-child(4), .onboard-feature-card:nth-child(5) {
                grid-column: span 1.5; 
            }
        }

       .onboard-banner {
            border-radius: 16px; 
            padding: 14px 32px;
            color: #fff;
            box-shadow: 0 10px 25px #0000000f;
            gap: 12px;
            margin: 20px auto; 
            transition: transform 0.3s ease;
        }

        .highlight-banner {
            color: #170645;
        }

        .onboard-banner-text {
            font-size: 1rem;
        }

        .onboard-banner-icon {
            color: #170645;
            font-size: 1.4rem;
        }

        @media (width < 991px) {
            .onboard-section-title { 
                font-size: 2.2rem; 
            }
            
            .onboard-timeline-wrapper {
                padding: 0 10px;
            }

            .onboard-timeline-steps {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
                overflow: visible; 
            }

            .onboard-timeline-wrapper::before {
                display: none;
            }

            .onboard-step-item {
                flex-direction: row;
                width: 100%;
                text-align: left;
                gap: 20px;
            }

            .onboard-step-circle {
                margin-bottom: 0; 
            }

            .onboard-step-label {
                font-size: 1.05rem; 
            }

            .onboard-feature-card { 
                padding: 30px; 
            }
            
            .onboard-banner {
                flex-direction: column;
                gap: 10px;
            }
        }

/* Proba Workflows Section */
.proba-section {
    padding: 50px 0;
}

.proba-logo-container {
    margin-bottom: 24px;
}

.proba-logo {
    max-height: 55px; 
}

.proba-section-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 70px;
    max-width: 800px;
    line-height: 1.2;
}

.proba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

@media (width > 768px) {
    .proba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 1024px) {
    .proba-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .proba-card:nth-child(1),
    .proba-card:nth-child(2),
    .proba-card:nth-child(3) {
        grid-column: span 2;
    }

    .proba-card:nth-child(4) {
        grid-column: 2 / span 2; 
    }

    .proba-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.proba-card {
    background: linear-gradient(145deg, #fff, #fcfbfe);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px #00000005, 0 12px 30px -4px #4a3b8c0a;
    border: 1px solid #4a3b8c0a;
    border-top: 1px solid #ffffffe6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.proba-card:hover {
    transform: translateY(-8px);
    border-color: #4a3b8c26; 
    box-shadow: 0 10px 15px -3px #4a3b8c0a, 0 25px 50px -12px #4a3b8c1a;
}

.proba-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f2efff 0%, #fff 100%);
    border: 1px solid #4a3b8c1a;
    color: #4a3b8c; 
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 1.5rem; 
    box-shadow: inset 0 2px 4px #fff, 0 4px 10px #4a3b8c0d;
    transition: transform 0.4s ease;
}

.proba-card:hover .proba-icon {
    transform: scale(1.05);
    background: #4a3b8c;
    color: #fff;
    border-color: #4a3b8c;
}

.x-verdict-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f2efff 0%, #fff 100%);
    border: 1px solid #4a3b8c1a;
    color: #0a3b34; 
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 1.5rem; 
    box-shadow: inset 0 2px 4px #fff, 0 4px 10px #4a3b8c0d;
    transition: transform 0.4s ease;
}

.proba-card:hover .x-verdict-icon {
    transform: scale(1.05);
    background: #0a3b34;
    color: #fff;
    border-color: #0a3b34;
}

.proba-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.proba-card-desc {
    font-size: 1rem;
    line-height: 1.7;
}

.proba-banner {
    background: #d1d4d8; 
    border-radius: 16px; 
    padding: 14px 32px;
    box-shadow: 0 10px 25px #0000000f;
    gap: 12px;
    margin: 20px auto 0; 
    transition: transform 0.3s ease;
}

.proba-banner:hover {
    transform: translateY(-2px);
}

.proba-banner-text {
    font-size: 1.05rem;
}

.proba-banner-icon {
    color: #1e1b4b; 
    font-size: 1.3rem;
}

.proba-banner-highlight {
    color: #2e5b52;
}

@media (width < 991px) {
    .proba-section-title { 
        font-size: 2.2rem; 
        margin-bottom: 40px; 
    }

    .proba-card { 
        padding: 30px; 
    }

    .proba-banner {
        padding: 16px 24px;
        text-align: left;
    }

    .proba-banner-text {
        font-size: 0.95rem;
    }
}

/* Analytics Section */
.analytics-section {
    padding: 40px 0;
}

.analytics-logo-container {
    margin-bottom: 24px;
}

.analytics-logo {
    max-height: 55px; 
}

.analytics-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    max-width: 900px;   
    line-height: 1.2;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

@media (width > 768px) {
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 1024px) {
    .analytics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.analytics-card {
    background: linear-gradient(145deg, #fff, #fcfdfe);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px #00000005, 0 12px 30px -4px #0891b20a; 
    border: 1px solid #0891b20a;
    border-top: 1px solid #ffffffe6;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.analytics-card:hover {
    transform: translateY(-8px);
    border-color: #0891b226;
    box-shadow: 0 10px 15px -3px #0891b20a, 0 25px 50px -12px #0891b21a;
}

.analytics-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #fff 100%);
    border: 1px solid #0891b21a;
    color: #0891b2;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 1.5rem; 
    box-shadow: inset 0 2px 4px #fff, 0 4px 10px #0891b20d;
    transition: transform 0.4s ease;
}

.analytics-card:hover .analytics-icon {
    transform: scale(1.05);
    background: #0891b2;
    color: #fff;
    border-color: #0891b2;
}

.analytics-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.analytics-card-text {
    font-size: 1rem;
    line-height: 1.7;
}

.analytics-banner { 
    border-radius: 16px; 
    padding: 14px 32px;
    box-shadow: 0 10px 25px #0000000f;
    gap: 12px;
    margin: 20px auto 0; 
    transition: transform 0.3s ease;
}

.analytics-banner:hover {
    transform: translateY(-2px);
}

.analytics-banner-text {
    font-size: 1rem;
}

.proba-highlight {
    color: #0891b2;
}

.analytics-banner-icon {
    color: #0891b2; 
    font-size: 1.3rem;
}

@media (width < 991px) {
    .analytics-title { 
        font-size: 2.2rem; 
        margin-bottom: 40px; 
    }

    .analytics-card { 
        padding: 30px; 
    }

    .analytics-banner {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .analytics-banner-text {
        font-size: 0.95rem;
    }
}

/* EngageNet */
.engage-section {
    padding: 60px 0;
}

.engage-logo-wrapper {
    margin-bottom: 24px;
}

.engage-logo-img {
    max-height: 55px; 
}

.engage-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.engage-highlight {
    color: #0d3a8a;
}

.engage-card {
    background: linear-gradient(145deg, #fff, #fcfcfd);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px #00000005, 0 12px 30px -4px #0a42820a;
    border: 1px solid #0a42820a;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.engage-card:hover {
    transform: translateY(-8px);
    border-color: #0a428226; 
    box-shadow: 0 10px 15px -3px #0a42820d, 0 25px 50px -12px #0a42821f;
}

.engage-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eef2f6 0%, #fff 100%);
    border: 1px solid #0a428214;
    color: #0a4282; 
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 1.5rem; 
    box-shadow: inset 0 2px 4px #fff, 0 4px 10px #0a428208;
    transition: transform 0.4s ease;
}

.engage-card:hover .engage-card-icon {
    transform: scale(1.05);
    background: #0d3a8a;
    color: #fff;
    border-color: #0d3a8a;
}

.engage-card-title {
    font-size: 1.2rem;
    color: #0d3a8a;
    margin-bottom: 12px;
}

.engage-card-desc {
    font-size: 1rem;
    line-height: 1.6;
}

.engage-suite-container {
    margin-top: 80px;
    background: #eef3f9;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 10px #00000003;
}

.engage-suite-header {
    gap: 12px;
    margin-bottom: 30px;
}

.engage-suite-title {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
}

.engage-suite-badge {
    background: #0d3a8a;
    font-size: 0.75rem;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}

.engage-module-block {
    border: 1px solid #0a42820f;
    border-radius: 16px;
    padding: 16px 20px;
    gap: 16px;
    box-shadow: 0 4px 6px #0a428205;
    transition: all 0.3s ease;
    cursor: default;
}

.engage-module-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0a428214;
    border-color: #0a428233;
}

.engage-module-icon {
    font-size: 1.25rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.engage-module-block:hover .engage-module-icon {
    color: #0a4282;
}

.engage-module-name {
    font-size: 0.95rem;
    color: #1e293b;
    transition: color 0.3s ease;
}

.engage-module-block:hover .engage-module-name {
    color: #0a4282;
}

@media (width < 991px) {
    .engage-title { 
        font-size: 2rem; 
    }

    .engage-suite-container { 
        margin-top: 60px; 
        padding: 24px;
    }
}

/* Proof Signal */
.aic-proof-section {
    margin-bottom: 80px;
    z-index: 1;
}

.aic-proof-header-area {
    margin-bottom: 40px;
    z-index: 2;
}

.aic-proof-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.aic-proof-subtitle {
    font-size: 1rem;
    max-width: 800px;
    line-height: 1.7;
}

.aic-proof-card {
    background: #fff;
    border: 1px solid #0000000f;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px -10px #00000008;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.aic-proof-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--node-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(60px);
    transition: all 0.6s ease;
    z-index: -1;
}

.aic-proof-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--node-color);
    box-shadow: 0 30px 60px -15px #0000001a;
}

.aic-proof-card:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0.12;
}

.aic-proof-card-top {
    align-items: flex-start;
    margin-bottom: 40px;
}

.aic-proof-badge {
    background: #f1f5f9;
    border: 1px solid #0000000d;
    color: #475569;
    padding: 6px 14px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.aic-proof-card:hover .aic-proof-badge {
    background: var(--node-color);
    color: #fff;
    border-color: var(--node-color);
    box-shadow: 0 0 15px var(--node-glow);
}

.aic-proof-icon {
    font-size: 2.2rem;
    color: #cbd5e1;
    transition: all 0.4s ease;
}

.aic-proof-card:hover .aic-proof-icon {
    color: var(--node-color);
    transform: rotate(10deg) scale(1.1);
}

.aic-proof-card-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.aic-proof-card-text {
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.aic-proof-card:hover .aic-proof-card-text {
    color: #1e293b; 
}

.aic-theme-analytics {
    --node-color: #365b6d;
    --node-glow: #06b6d44d;
}

.aic-theme-engage {
    --node-color: #0d3a8a;
    --node-glow: #3b82f64d;
}

.aic-theme-orcaa {
    --node-color: #70459b;
    --node-glow: #a855f74d;
}

.aic-theme-comply {
    --node-color: #427e72; 
    --node-glow: #14b8a64d;
}

.aic-theme-verdict {
    --node-color: #0a3b34;
    --node-glow: #22c55e4d;
}

@media (width < 991px) {
    .aic-proof-section { 
        padding: 80px 0; 
    }

    .aic-proof-title { 
        font-size: 2.5rem; 
    }

    .aic-proof-header-area { 
        margin-bottom: 50px; 
    }
}
   
.first-col {
    width: 22%;
}

.second-col {
    width: 35%;
}

.glass-card{
    background-color: #fff !important;
}

@media (width > 992px) {
    .desktop-vh-100 { 
        overflow: hidden; 
    }

    .img-max { 
        max-height: 65vh; 
        width: auto; 
    }
}

.img-zoom:hover { 
    transform: scale(1.03); 
    transition: transform 0.3s ease;
}

.jq-anim {
    opacity: 0;
    position: relative;
    top: 20px;
}

.card-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

body {
    background-color: #e2e2e7;
    color: #1d1d1f;
    margin: 0;
    padding: 0;
}

.viewport-wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 4rem 0;
    margin: 0 auto;
    overflow: hidden;
    mask-image: 
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
}

.saas-container {
    z-index: 10;
    background-color: #fff;
    border-radius: 2.5rem;
    padding: 2.5rem 3.5rem;
    width: 90%;
}

.bg-card {
    background-color: #fff;
    border-radius: 2.5rem;
    z-index: 1;
}

.bg-top { 
    bottom: calc(100% + var(--bento-gap)); 
    left: 0; 
    right: 0; 
    height: 100vh; 
}

.bg-bottom { 
    top: calc(100% + var(--bento-gap)); 
    left: 0; right: 0; 
    height: 100vh; 
}

.bg-left { 
    top: 0; 
    bottom: 0; 
    right: calc(100% + var(--bento-gap)); 
    width: 100vw; 
}

.bg-right { 
    top: 0; 
    bottom: 0; 
    left: calc(100% + var(--bento-gap)); 
    width: 100vw; 
}

.bg-tl { 
    bottom: calc(100% + var(--bento-gap)); 
    right: calc(100% + var(--bento-gap)); 
    width: 100vw; 
    height: 100vh; 
}

.bg-tr { 
    bottom: calc(100% + var(--bento-gap)); 
    left: calc(100% + var(--bento-gap)); 
    width: 100vw; 
    height: 100vh; 
}

.bg-bl { 
    top: calc(100% + var(--bento-gap)); 
    right: calc(100% + var(--bento-gap)); 
    width: 100vw; 
    height: 100vh; 
}

.bg-br { 
    top: calc(100% + var(--bento-gap)); 
    left: calc(100% + var(--bento-gap)); 
    width: 100vw; 
    height: 100vh; 
}

@media (width < 991px) {
    .bg-card { 
        display: none; 
    }

    .viewport-wrapper { 
        height: auto; 
        min-height: 100vh; 
        padding: 1rem; 
    }

    .saas-container { 
        padding: 3rem 2rem; 
        border-radius: 1.5rem; 
        width: 100%; 
    }
}

.pill-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: #f5f5f7;
    border-radius: 50rem;
    font-size: 0.75rem;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 3.5rem;
}

.main-heading strong { 
    color: #1d1d1f; 
    font-weight: 600; 
}

.graphic-box {
    background-color: #ebe8f2;
    border: 1px solid #f2f2f7;
    border-radius: 1.5rem;
    height: 180px;
    margin-bottom: 1.5rem;
}

.graphic-box.bg-lines {
    background: repeating-linear-gradient( 90deg, #fbfbfd, #f1ebff 8px, #f2f2f7 8px, #f2f2f7 9px );
}

.graphic-box.bg-dots {
    background-image: radial-gradient(#d2d2d7 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.mock-ui {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    width: 85%;
    border: 1px solid #0000000d;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.feature-desc { 
    font-size: 0.9rem; 
    color: #86868b; 
    line-height: 1.6; 
}

.lifecycle-steps {
    gap: 0.8rem;
    margin-top: 4.5rem;
}

.step-item {
    gap: 0.4rem;
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.9rem;
}

.step-number {
    width: 22px;
    height: 22px;
    background-color: #e5e5ea;
    color: #1d1d1f;
    border-radius: 50%;
    font-size: 0.75rem;
}

.step-arrow { 
    color: #d2d2d7; 
    font-size: 0.75rem; 
}

.footer-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #86868b;
    max-width: 650px;
    line-height: 1.5;
}

.icon-style {
    width: 38px;
    height: 38px;
    color: white;
    background-color: #714dbd !important;
}

.tick-style {
    color: #714dbd !important;
}   

.section-pad{ 
    padding: 7rem 0; 
  }

  .eyebrow{
    letter-spacing: .1em;
    color: #ff3b30;
    font-size: .78rem;
  }
  
  .heading{
    letter-spacing: -.035em;
    font-weight: 600;
    font-size: 3.1rem;
    line-height: 1.08;
  }
  
  .lede{
    color: #6e6e73;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .btn-apple{
    background: #ff3b30;
    border: none;
    border-radius: 980px;
    font-weight: 500;
    font-size: .95rem;
    padding: .8rem 2.1rem !important;
    transition: transform .2s ease, opacity .2s ease;
  }
  
  .btn-apple:hover{ 
    opacity: .85; 
    transform: translateY(-2px); 
    color:#fff; 
  }

  .steps-row{
    margin-top: 4.5rem;
  }
  
  .step-col{
    border-top: 1px solid #d2d2d7;
    padding-top: 1.75rem;
    transition: border-color .25s ease;
  }
  
  @media (width > 768px){
    .step-col{ 
        border-left: 1px solid #d2d2d7; 
        border-top: none; 
        padding-top: 0; 
        padding-left: 1.75rem; 
    }

    .step-col:first-child{ 
        border-left: none; 
        padding-left: 0; 
    }
  }

  .step-col:hover{ 
    border-color: #ff3b30; 
  }

  .step-num{
    font-weight: 200;
    font-size: 3.4rem;
    letter-spacing: -.02em;
    color: #d2d2d7;
    line-height: 1;
    margin-bottom: 1rem;
    transition: color .25s ease;
  }

  .step-col:hover .step-num{ 
    color: #ff3b30; 
  }
  
  .step-title{
    letter-spacing: -.015em;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: .5rem;
  }
  
  .step-text{
    color: #86868b;
    font-size: .88rem;
    line-height: 1.55;
  }

  .tick-style-2{
    color: #2e5b52;
  }

  .icon-style-2{
    background-color: #2e5b52 !important;
  }

@keyframes pulse-subtle {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }

    50% { 
        transform: scale(1.05); 
        opacity: 0.85; 
    }

    100% { 
        transform: scale(1); 
        opacity: 1; 
    }
}

.pulse-badge {
    animation: pulse-subtle 2.5s infinite ease-in-out;
}

.bg-success-subtle {
    background-color: #e8f5e9;
}

.border-success-subtle {
    border-color: #a5d6a7 !important;
}

.info-card-style{
    max-width: 380px;
}

.line-one{
    width: 60%;
    height: 8px;
}

.line-two{
    width: 40%;
    height: 6px;
}


    .engage-pricing {
        padding: 100px 0;
        background-color: #f9fafc;
        background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 0L0 0 0 80' fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='1'/%3E%3Cpath d='M-3 -0.5h7v1h-7zM-0.5 -3h1v7h-1z' fill='rgba(0,0,0,0.08)'/%3E%3C/svg%3E");
        background-position: center top;
        color: #333;
        z-index: 1;
    }

    .engage-ambient-glow {
        top: -150px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, #0d3a8a33 0%, #0d3a8a00 65%);
        z-index: -1;
        pointer-events: none;
    }

    .engage-product-logo {
        max-height: 50px;
        margin-bottom: 40px;
    }

    .engage-header-block {
        margin-bottom: 50px;
    }
    
    .engage-section-title {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
        color: #061b42; 
        line-height: 1.1;
    }

    .engage-section-subtitle {
        font-size: 2rem;
        color: #a0a0a0;
        letter-spacing: -0.03em;
        line-height: 1.1;
        margin-top: 5px;
    }

    .engage-billing-toggle-wrap {
        gap: 12px;
        color: #888;
        font-size: 1.05rem;
        margin-top: 20px;
    }

    .engage-toggle-label { 
        transition: color 0.3s; 
    }

    .engage-toggle-label.active { 
        color: #061b42; 
    }

    .engage-switch {
        width: 52px;
        height: 30px;
    }

    .engage-switch input { 
        opacity: 0; 
        width: 0; 
        height: 0; 
    }
    
    .engage-slider {
        cursor: pointer;
        inset: 0;
        background-color: #d1d1d1;
        transition: .4s;
        border-radius: 34px;
    }
    
    .engage-slider::before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 2px 4px #0000001a;
    }

    .engage-switch input:checked + .engage-slider {
        background-color: #0d3a8a; 
    }

    .engage-switch input:checked + .engage-slider::before {
        transform: translateX(22px);
    }

    .engage-pricing-card {
        border-radius: 30px;
        padding: 45px 35px;
        transition: transform 0.3s ease;
        box-shadow: 0 25px 50px #00000a;
    }

    .engage-card-light {
        background: #fff;
        background: linear-gradient(180deg, #f0f1f5 0%, #fff 200px);
        box-shadow: 0 20px 40px #0d3a8a0d, inset 0 2px 0 #ffffffb3;
    }

    .engage-card-dark {
        background: #061b42; 
        background: linear-gradient(180deg, #0d3a8a 0%, #061b42 180px); 
        color: white;
        box-shadow: 0 25px 50px #061b4240, inset 0 2px 0 #ffffff1a;
    }

    .engage-tier-badge {
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .engage-badge-basic { 
        background-color: #061b42; 
        color: white; 
    }
    
    .engage-badge-growth { 
        background-color: #0d3a8a; 
        color: white; 
    }
    
    .engage-badge-enterprise { 
        background-color: #061b42; 
        color: white; 
        border: 1px solid #ffffff1a; 
    } 

    .engage-card-subtitle-divider {
        border-left: 2px solid #d1d1d1;
        padding-left: 14px;
        font-size: 1.05rem;
        margin-bottom: 25px;
        color: #061b42; 
    }
    
    .engage-card-dark .engage-card-subtitle-divider {
        border-left-color: #7ab0ff; 
        color: #e0e8f5;
    }

    .engage-price-block {
        align-items: baseline;
        margin-bottom: 35px;
    }
    
    .engage-currency {
        font-size: 1.5rem;
        margin-right: 4px;
        color: #555;
    }
    
    .engage-price {
        font-size: 3.5rem;
        line-height: 1;
        letter-spacing: -0.03em;
        color: #061b42; 
    }

    .engage-period {
        font-size: 1rem;
        color: #888;
        margin-left: 6px;
    }

    .engage-card-dark .engage-price { 
        color: #fff; 
    }

    .engage-card-dark .engage-currency { 
        color: #7ab0ff; 
    }
    
    .engage-card-dark .engage-period { 
        color: #9bbcf2; 
    }

    .engage-feature-list {
        margin: 0 0 40px;
        flex-grow: 1;
    }

    .engage-feature-list li {
        margin-bottom: 18px;
        font-size: 0.95rem;
        color: #555;
    }

    .engage-card-dark .engage-feature-list li {
        color: #d1e2fc;
    }

    .engage-feature-list li i {
        margin-right: 14px;
        margin-top: 2px; 
        font-size: 1.1rem;
        color: #0d3a8a;
    }

    .engage-card-dark .engage-feature-list li i {
        color: #7ab0ff;
    }

    .engage-btn-pricing {
        padding: 16px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .engage-btn-basic {
        background-color: #061b42; 
        color: white;
        box-shadow: 0 10px 20px #061b4233;
    }

    .engage-btn-basic:hover { 
        background-color: #0d3a8a; 
        color: white; 
        transform: translateY(-3px); 
    }

    .engage-btn-primary-custom {
        background-color: #0d3a8a; 
        color: white;
        box-shadow: 0 12px 24px #0d3a8a4d;
    }

    .engage-btn-primary-custom:hover { 
        background-color: #7ab0ff; 
        color: #061b42; 
        transform: translateY(-3px); 
    }

    /* Orcaa Pricing */

    .orcaa-product-logo {
    width: 40px;
    height: auto;
    display: block;
}

.orcaa-name {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    color: #6f42c1;
}

.orcaa-ai {
    color: #6f42c1;
}

.roadblock-section {
    display: none !important;
}

.roadblock-section-mobile {
    display: none !important;
}

/* Sectors Section */
    .engage-sectors-section {
        padding: 40px 0;
        color: #333;
    }

    .engage-sectors-header {
        margin-bottom: 60px;
        max-width: 800px;
    }
    
    .engage-sectors-title {
        font-size: 2.2rem;
        letter-spacing: -0.03em;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .engage-sectors-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .engage-sector-card {
        background: #f9fafc;
        border-radius: 24px;
        padding: 40px 30px;
        transition: all 0.3s ease;
        border: 1px solid #0d3a8a0f;
    }

    .engage-sector-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px #061b4214;
        border-color: #ff7a7a76; 
        background: #fff;
    }

    .engage-sector-icon-wrap {
        width: 60px;
        height: 60px;
        background: #ff7a7a26; 
        border-radius: 18px;
        margin-bottom: 25px;
        color: #ef0707; 
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }

    .engage-sector-card:hover .engage-sector-icon-wrap {
        background: #ef0707;
        color: #fff;
        transform: scale(1.05);
    }

    .engage-sector-card-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        letter-spacing: -0.01em;
    }

    .engage-sector-card-text {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }


