 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            background: #f8f9fa;
        }

        /* Solutions Comparisons Section */
        #solutions-comparisons {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        #solutions-comparisons-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        #solutions-comparisons-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        #solutions-comparisons-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #2a156f;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        #solutions-comparisons-highlight {
            color: #fd49a0;
        }

        #solutions-comparisons-subtitle {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        #solutions-comparisons-table-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        #solutions-comparisons-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        #solutions-comparisons-table thead {
            background: linear-gradient(135deg, #4120A9, #2a156f);
            color: #666;
        }

        #solutions-comparisons-table thead th {
            padding: 25px 20px;
            text-align: left;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            position: relative;
        }

        #solutions-comparisons-table thead th:first-child {
            border-top-left-radius: 20px;
            padding-left: 30px;
        }

        #solutions-comparisons-table thead th:last-child {
            border-top-right-radius: 20px;
            padding-right: 30px;
        }

        #solutions-comparisons-table tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        #solutions-comparisons-table tbody tr:hover {
            background: rgba(65, 32, 169, 0.02);
            transform: scale(1.01);
        }

        #solutions-comparisons-table tbody tr:last-child {
            border-bottom: none;
        }

        #solutions-comparisons-table td {
            padding: 25px 20px;
            border: none;
            vertical-align: middle;
            position: relative;
        }

        #solutions-comparisons-table td:first-child {
            padding-left: 30px;
            font-weight: 600;
            color: #2a156f;
            font-size: 1.05rem;
        }

        #solutions-comparisons-table td:last-child {
            padding-right: 30px;
        }

        .solutions-comparisons-feature-name {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .solutions-comparisons-feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.1), rgba(253, 73, 160, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #4120A9;
            font-weight: bold;
        }

        .solutions-comparisons-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .solutions-comparisons-cross {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f44336, #d32f2f);
            color: white;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .solutions-comparisons-partial {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff9800, #f57c00);
            color: white;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .solutions-comparisons-optimal-column {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.03), rgba(253, 73, 160, 0.03));
            position: relative;
        }

        .solutions-comparisons-optimal-column::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #4120A9, #fd49a0);
        }

        .solutions-comparisons-brand-highlight {
            background: linear-gradient(135deg, #4120A9, #fd49a0);
            color: white !important;
            font-weight: 700;
        }

        #solutions-comparisons-cta {
            text-align: center;
            margin-top: 60px;
        }

        .solutions-comparisons-main-button {
            display: inline-block;
            background: linear-gradient(135deg, #fd49a0, #ff6b9d);
            color: white;
            padding: 18px 40px;
            margin: 20px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(253, 73, 160, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solutions-comparisons-main-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .solutions-comparisons-main-button:hover {
            color: white;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(253, 73, 160, 0.4);
        }

        .solutions-comparisons-main-button:hover::before {
            left: 100%;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            #solutions-comparisons-table {
                font-size: 14px;
            }
            
            #solutions-comparisons-table td,
            #solutions-comparisons-table th {
                padding: 20px 15px;
            }

            #solutions-comparisons-table td:first-child,
            #solutions-comparisons-table th:first-child {
                padding-left: 20px;
            }

            #solutions-comparisons-table td:last-child,
            #solutions-comparisons-table th:last-child {
                padding-right: 20px;
            }
        }

        @media (max-width: 768px) {
            #solutions-comparisons {
                padding: 60px 0;
            }

            #solutions-comparisons-container {
                padding: 0 15px;
            }

            #solutions-comparisons-header {
                margin-bottom: 50px;
            }

            #solutions-comparisons-table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            #solutions-comparisons-table {
                min-width: 600px;
                font-size: 13px;
            }

            #solutions-comparisons-table td,
            #solutions-comparisons-table th {
                padding: 15px 12px;
            }

            .solutions-comparisons-check,
            .solutions-comparisons-cross,
            .solutions-comparisons-partial {
                width: 24px;
                height: 24px;
                font-size: 14px;
            }

            .solutions-comparisons-main-button {
                padding: 16px 30px;
                font-size: 14px;
                margin: 15px;
            }
        }

        /* Animation */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #solutions-comparisons-table tbody tr {
            animation: slideInUp 0.6s ease both;
        }

        #solutions-comparisons-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
        #solutions-comparisons-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
        #solutions-comparisons-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
        #solutions-comparisons-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
        #solutions-comparisons-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
        #solutions-comparisons-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
        #solutions-comparisons-table tbody tr:nth-child(7) { animation-delay: 0.7s; }
        #solutions-comparisons-table tbody tr:nth-child(8) { animation-delay: 0.8s; }
        #solutions-comparisons-table tbody tr:nth-child(9) { animation-delay: 0.9s; }
        #solutions-comparisons-table tbody tr:nth-child(10) { animation-delay: 1.0s; }