.matrix-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.matrix-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.matrix-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}
.matrix-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(122, 122, 169, 0.1);
    overflow-x: auto;
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.matrix-table th,
.matrix-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.matrix-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}
.matrix-table th.feature-col {
    text-align: left;
}
.matrix-table td.feature-col {
    text-align: left;
    font-weight: 500;
}
.matrix-table tr:hover {
    background: var(--light-bg);
}
.matrix-table .check {
    color: var(--success);
    font-size: 1.25rem;
}
.matrix-table .cross {
    color: var(--text-muted);
    font-size: 1.25rem;
}
.matrix-table .lite-col {
    background: rgba(122, 122, 169, 0.05);
}
.matrix-table .standard-col {
    background: rgba(235, 39, 94, 0.05);
}
.matrix-table .professional-col {
    background: rgba(122, 122, 169, 0.1);
}
.license-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.license-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(122, 122, 169, 0.1);
}
.license-card.lite {
    border-top: 4px solid var(--primary-color);
}
.license-card.standard {
    border-top: 4px solid var(--accent-color);
}
.license-card.professional {
    border-top: 4px solid var(--primary-dark);
}
.license-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.license-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}
.license-card .desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.section-note {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}