/* Page-specific hook for Home/Priceing.cshtml — shared article
   design lives in site-new.css (.rv-article-*), this file only holds
   the pricing table component. */

.rv-price-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.rv-price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.rv-price-table thead th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 1rem 1.4rem;
    text-align: center !important;
    border-bottom: 1px solid var(--border);
}

.rv-price-table thead th:first-child,
.rv-price-table tbody td:first-child {
    width: 65%;
}

.rv-price-table thead th:last-child,
.rv-price-table tbody td:last-child {
    width: 35%;
}

.rv-price-table tbody td {
    padding: 1rem 1.4rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.rv-price-table tbody tr:last-child td {
    border-bottom: none;
}

.rv-price-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.rv-price-table td.rv-price-name {
    color: var(--text-primary);
    font-weight: 600;
}

.rv-price-table td.rv-price-amount {
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
}

.rv-price-vat-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 2.6rem;
}

.rv-price-group {
    margin-bottom: 2rem;
}

.rv-price-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);

    margin-bottom: 0.9rem !important;
    padding-right: 0.9rem;
    border-right: 3px solid var(--accent);
}

@media (max-width: 575px) {
    .rv-price-table thead th,
    .rv-price-table tbody td {
        padding: 0.8rem 0.9rem;
        font-size: 0.85rem;
    }
}
