.brand-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
}

.brand-tab {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all .3s;
    background: var(--card);
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    cursor: pointer;
}

.brand-tab:hover {
    color: var(--foreground);
    border-color: rgba(255, 107, 0, .5);
}

.brand-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, .3);
}

.price-table-tab {
    display: none;
}

.price-table-tab.active {
    display: block;
}

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

.price-table-scroll {
    overflow-x: auto;
}

.price-table-inner table {
    width: 100%;
    border-collapse: collapse;
}

.price-table-inner table th,
.price-table-inner table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.price-table-inner table th {
    background: var(--background);
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.price-table-inner table th:last-child {
    color: var(--primary);
}

.price-table-inner table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.price-table-inner table tbody tr:hover {
    background: rgba(10, 14, 23, .5);
}

.price-table-inner table td {
    color: var(--muted-foreground);
}

.price-table-inner table td:first-child {
    font-weight: 600;
    color: var(--foreground);
}

.price-table-inner table td:last-child {
    font-weight: 700;
    color: var(--primary);
}

.price-table-inner table th:nth-child(3),
.price-table-inner table td:nth-child(3) {
    text-align: center;
}

.price-table-inner table th:nth-child(4),
.price-table-inner table th:nth-child(5),
.price-table-inner table td:nth-child(4),
.price-table-inner table td:nth-child(5) {
    text-align: right;
}

.hot-badge {
    display: inline-block;
    margin-left: .5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .75rem;
    padding: .125rem .5rem;
    border-radius: .25rem;
}

.price-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.price-cta .btn {
    width: 100%;
    justify-content: center;
}

@media(min-width:640px) {
    .price-cta {
        flex-direction: row;
        justify-content: center;
    }
    .price-cta .btn {
        width: 280px;
    }
}

/* ── Notice box ────────────────────────────────────────────────── */
.price-notice {
    background: rgba(255, 107, 0, .06);
    border: 1px solid rgba(255, 107, 0, .2);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.price-notice-warnings {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.price-notice-warnings p,
.price-notice-cta p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.price-notice-cta {
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 107, 0, .15);
}

.price-notice-cta p {
    color: var(--foreground);
}

.price-notice-cta strong {
    color: var(--primary);
}

@media(max-width:768px) {
    .price-table-inner table th,
    .price-table-inner table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}