.matrix-section {
    padding: 4rem 0;
    background: var(--light-bg);
}
.matrix-table-container {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(122, 122, 169, 0.15);
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 800px;
}
.matrix-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}
.matrix-table th:first-child {
    text-align: left;
}
.matrix-table th.license-lite {
    background: linear-gradient(135deg, #6c757d, #495057);
}
.matrix-table th.license-standard {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
.matrix-table th.license-professional {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}
.matrix-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}
.matrix-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}
.matrix-table tbody tr:hover {
    background: var(--light-bg);
}
.matrix-table .category-row td {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    padding: 1rem 1.25rem;
}
.matrix-table .check {
    color: #28a745;
    font-size: 1.25rem;
}
.matrix-table .cross {
    color: #dc3545;
    font-size: 1.25rem;
}
.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}
.legend-item i {
    font-size: 1.25rem;
}
.legend-item .check {
    color: #28a745;
}
.legend-item .cross {
    color: #dc3545;
}
.pricing-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(122, 122, 169, 0.1);
}
.pricing-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
