/* --- PRICING TABLE --- */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text-main);
}

th,
td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    border-top-right-radius: 12px;
}

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

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.price-header {
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 8px;
}

.check {
    color: #10b981;
    font-weight: bold;
}

.cross {
    color: #ef4444;
    font-weight: bold;
    opacity: 0.5;
}

.limit {
    color: #f59e0b;
    font-weight: 500;
}

.table-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
}

.btn-price-free {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-price-pro {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}