:root {
    --pricing-bg: #050505;
    --pricing-text: #f4f1e9;
    --pricing-muted: rgba(255, 255, 255, .55);
    --pricing-rule: rgba(255, 255, 255, .18);
}

.pricing-page {
    margin: 0;
    background: var(--pricing-bg);
    color: var(--pricing-text);
}

.pricing-content {
    min-height: 100vh;
    padding: clamp(180px, 20vw, 245px) 0 clamp(85px, 10vw, 145px);
}

.pricing-header {
    margin-bottom: clamp(80px, 10vw, 135px);
}

.pricing-header h1 {
    margin: 0;
    font-size: clamp(68px, 12vw, 170px);
    font-weight: 600;
    line-height: .8;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.rate-section + .rate-section {
    margin-top: clamp(85px, 10vw, 140px);
}

.rate-section-title {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 26px;
}

.rate-section-title span {
    color: var(--accent-yellow);
    font-size: 10px;
    font-weight: 800;
}

.rate-section-title h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.rate-section-description {
    max-width: 620px;
    margin: -8px 0 28px 30px;
    color: var(--pricing-muted);
    font-size: 14px;
    line-height: 1.7;
}

.rate-table-wrap {
    width: 100%;
    overflow-x: visible;
}

.rate-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
    color: var(--pricing-text);
}

.rate-table th,
.rate-table td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--pricing-rule);
    overflow-wrap: anywhere;
    text-align: left;
    vertical-align: top;
}

.rate-table th {
    border-top: 1px solid var(--pricing-rule);
    color: var(--pricing-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.rate-table thead th {
    height: 90px;
    color: var(--pricing-text);
    font-size: 13px;
    line-height: 1.45;
}

.rate-table thead th:first-child,
.rate-table tbody th {
    width: 120px;
    padding-left: 0;
    color: var(--pricing-muted);
}

.rate-table td {
    color: var(--pricing-muted);
    font-size: 15px;
    font-weight: 400;
}

.rate-table tbody tr:last-child td {
    padding-top: 30px;
    padding-bottom: 32px;
    color: var(--accent-yellow);
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 600;
    letter-spacing: -.04em;
}

.rate-table th:not(:first-child),
.rate-table td:not(:first-child) {
    border-left: 1px solid var(--pricing-rule);
}

.pricing-footer-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: clamp(75px, 9vw, 120px);
    padding-top: 25px;
    border-top: 1px solid var(--pricing-rule);
}

.pricing-footer-note p {
    max-width: 520px;
    margin: 0;
    color: var(--pricing-muted);
    font-size: 13px;
    line-height: 1.6;
}

.pricing-footer-note a {
    flex-shrink: 0;
    color: var(--pricing-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-decoration: none;
    text-transform: uppercase;
}

.pricing-footer-note a i {
    margin-left: 14px;
    color: var(--accent-yellow);
}

@media (max-width: 767.98px) {
    .pricing-content { padding-top: 165px; }
    .pricing-footer-note { align-items: flex-start; flex-direction: column; }
    .rate-section-description { margin-left: 0; }
    .rate-table th,
    .rate-table td {
        padding: 16px 7px;
        font-size: 11px;
    }
    .rate-table thead th {
        height: auto;
        font-size: 9px;
        letter-spacing: .5px;
    }
    .rate-table thead th:first-child,
    .rate-table tbody th {
        width: 58px;
    }
    .rate-table tbody tr:last-child td {
        font-size: clamp(16px, 4.5vw, 22px);
    }
}
