/* ERP Comparison Section Styles */
.erp-comparison-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.erp-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.erp-comparison-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.comparison-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #212529;
    position: sticky;
    top: 0;
}

.comparison-table th:first-child {
    text-align: left;
    width: 250px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #4b5563;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: #f9fafb;
}

.comparison-table .fatoorix-col {
    background-color: rgba(79, 70, 229, 0.03);
}

.comparison-table th.fatoorix-col {
    background-color: #4f46e5;
    color: white;
}

.comparison-table .fatoorix-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-table .fatoorix-logo img {
    height: 30px;
    margin-right: 10px;
}

.comparison-table .fatoorix-logo span {
    font-size: 18px;
    font-weight: 700;
}

.comparison-table .check {
    color: #10b981;
    font-size: 20px;
}

.comparison-table .times {
    color: #ef4444;
    font-size: 20px;
}

.comparison-table .partial {
    color: #f59e0b;
    font-size: 20px;
}

.comparison-table .feature-category {
    font-weight: 700;
    color: #212529;
    background-color: #f8fafc;
}

.comparison-cta {
    margin-top: 40px;
    text-align: center;
}

.comparison-cta-text {
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 20px;
}

.comparison-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comparison-cta-btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .comparison-cta-text {
        font-size: 16px;
    }
}
