/* ======= PRICES ======= */
.prices-section { background: #fff; }
.prices-toggle {
    text-align: center; margin-bottom: 0;
}
.btn-toggle-prices {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--blue), #2b6ee0);
    color: #fff; font-size: 16px; font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none; border-radius: 50px; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(26,86,219,0.3);
}
.btn-toggle-prices:hover { background: linear-gradient(135deg, var(--dark), #1a3a7a); }

.prices-table-wrap {
    height: 0; overflow: hidden;
    transition: 0.5s ease;
    margin-top: 0;
}
.prices-table-wrap.open {margin-top: 40px; }
.prices-table {
    width: 100%; border-collapse: collapse;
    border-radius: 16px; overflow: hidden;
}
.prices-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}
.scroll-hint {
    display: none;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}
.prices-table thead { background: linear-gradient(135deg, var(--blue), #2b6ee0); }
.prices-table thead th {
    padding: 16px 20px; color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 700;
    text-align: left;
}
.prices-table tbody tr:nth-child(even) { background: var(--bg); }
.prices-table tbody tr:hover { background: var(--blue-light); }
.prices-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--border);
    font-size: 14px; color: var(--text);
}
.prices-table td:last-child { font-weight: 800; color: var(--blue); font-family: 'Montserrat', sans-serif; }

.prices-section p {
    margin-top: 24px;
}
.prices-table th[scope="row"] {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--blue);
}