:root {
    --brand: #ff5c00;
    --brand-dim: rgba(255, 92, 0, 0.12);
    --bg: #1a1d29;
    --surface: #20243a;
    --surface2: #252a3d;
    --border: rgba(255,255,255,0.07);
    --text: #e0e4f0;
    --muted: #7b82a0;
    --green: #34d399;
    --green-bg: rgba(52, 211, 153, 0.1);
}

body { background: var(--bg); overflow-x: hidden; }

.cp-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.cp-header {
    text-align: center;
    margin-bottom: 3rem;
}
.cp-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.cp-header p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}
.cp-header .cp-accent {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 1rem;
    background: var(--brand-dim);
    border: 1px solid rgba(255,92,0,0.25);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.cp-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.cp-card.is-active {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px rgba(255,92,0,0.2), 0 8px 32px rgba(255,92,0,0.12);
}
.cp-card.is-dimmed {
    opacity: 0.72;
}

.cp-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: 0 0 8px 8px;
}
.cp-badge.soon {
    background: #3a3f55;
    color: var(--muted);
}
.cp-badge.live {
    background: #007bff;
    color: #fff;
}

.cp-card.premium-card {
    border-color: #007bff;
    box-shadow: 0 0 0 1px rgba(0,123,255,0.2), 0 8px 32px rgba(0,123,255,0.12);
}
.cp-card.premium-card .cp-btn.primary {
    background: #007bff;
}
.cp-card.premium-card .cp-btn.primary:hover {
    background: #0056b3;
}

.cp-plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
    margin-top: 0.75rem;
}

.cp-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.cp-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}
.cp-price-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.cp-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.25rem;
}

.cp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.cp-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}
.cp-features li .fi {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    margin-top: 1px;
}
.cp-features li .fi.yes {
    background: var(--green-bg);
    color: var(--green);
}
.cp-features li .fi.no {
    background: rgba(255,255,255,0.05);
    color: #4a5068;
}
.cp-features li.muted { color: var(--muted); }

.cp-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.cp-btn.primary {
    background: var(--brand);
    color: #fff;
}
.cp-btn.primary:hover {
    background: #e05200;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,92,0,0.35);
}
.cp-btn.ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--muted);
    cursor: not-allowed;
}
.cp-btn.outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--text);
}
.cp-btn.outline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-1px);
}

.cp-table-section {
    margin-top: 1rem;
}
.cp-table-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cp-table-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.cp-table-wrap {
    background: var(--surface);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    overflow-x: auto;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.cp-table thead tr {
    background: var(--surface2);
    border-bottom: 1.5px solid var(--border);
}
.cp-table thead th {
    padding: 0.9rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: var(--muted);
}
.cp-table thead th:first-child {
    text-align: left;
    color: #fff;
    width: 45%;
}
.cp-table thead th.live { color: var(--brand); }
.cp-table thead th.premium { color: #007bff; }

.cp-table .cat-row td {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255,255,255,0.02);
    border-top: 1.5px solid var(--border);
}

.cp-table tbody tr.feat-row {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
}
.cp-table tbody tr.feat-row:hover { background: rgba(255,255,255,0.025); }

.cp-table tbody td {
    padding: 0.7rem 1rem;
    text-align: center;
    vertical-align: middle;
}
.cp-table tbody td:first-child {
    text-align: left;
}
.fn { font-size: 0.875rem; color: var(--text); font-weight: 500; }
.fd { font-size: 0.775rem; color: var(--muted); margin-top: 0.1rem; }

.ci { color: var(--green); font-size: 1rem; }
.xi { color: #3a3f55; font-size: 1rem; }

.cp-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border-radius: 20px;
    border: 1.5px solid var(--border);
}
.cp-cta h2 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 0.5rem; }
.cp-cta p { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.5rem; }
.cp-cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cp-cta-btns a {
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.cp-cta-btns .b1 { background: var(--brand); color: #fff; }
.cp-cta-btns .b1:hover { background: #e05200; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,92,0,0.3); }
.cp-cta-btns .b2 { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.cp-cta-btns .b2:hover { border-color: rgba(255,255,255,0.25); color: #fff; }

.cp-currency-selector { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.cp-currency-selector select {
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237b82a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
}
.cp-currency-selector select:hover { border-color: var(--brand); }
.cp-currency-selector select:focus { outline: none; border-color: var(--brand); }

@media (max-width: 900px) {
    .cp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .cp-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .cp-page { padding: 2rem 1rem 3rem; }
    .cp-cards { grid-template-columns: 1fr; }
    .cp-card.is-dimmed { opacity: 1; }
}
