
    :root {
        --px-bg: #f4f6f8;
        --px-surface: #ffffff;
        --px-ink: #0f172a;
        --px-muted: #64748b;
        --px-line: #e2e8f0;
        --px-primary: #1978e5;
        --px-primary-dark: #165fc8;
        --px-card-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    body {
        background: var(--px-bg);
        color: var(--px-ink);
    }

    .pricing-wrap {
        width: min(1280px, calc(100% - 24px));
        margin: 0 auto;
        padding: 58px 0 88px;
    }

    .pricing-hero {
        text-align: center;
        max-width: 860px;
        margin: 0 auto;
        padding: 14px 0 8px;
    }

    .pricing-title {
        margin: 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 0.98;
        letter-spacing: -0.06em;
        font-weight: 800;
        color: #0b132b;
    }

    .pricing-title strong {
        display: inline-block;
        color: var(--px-primary);
    }

    .pricing-subtitle {
        margin: 22px auto 0;
        max-width: 620px;
        font-size: 1.05rem;
        line-height: 1.7;
        color: #475569;
    }

    .billing-toggle {
        margin-top: 24px;
        display: inline-grid;
        justify-items: center;
        gap: 8px;
    }

    .billing-toggle-line {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: .78rem;
        color: #334155;
    }

    .billing-switch {
        width: 42px;
        height: 22px;
        border-radius: 999px;
        background: rgba(25, 120, 229, 0.18);
        position: relative;
        border: 0;
        cursor: pointer;
        padding: 0;
    }

    .billing-switch::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 21px;
        width: 16px;
        height: 16px;
        border-radius: 999px;
        background: var(--px-primary);
        transition: left .2s ease;
    }

    .billing-switch.is-monthly::after {
        left: 5px;
    }

    .billing-switch.is-annual::after {
        left: 21px;
    }

    .billing-tag {
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 0 8px;
        border-radius: 999px;
        background: #dcfce7;
        color: #15803d;
        font-size: .63rem;
        font-weight: 800;
        letter-spacing: .04em;
    }

    .plans-grid {
        margin-top: 42px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .plan-card {
        position: relative;
        border-radius: 14px;
        background: var(--px-surface);
        border: 1px solid #d7e0ea;
        box-shadow: var(--px-card-shadow);
        padding: 22px 18px 18px;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .plan-card.featured {
        border-color: var(--px-primary);
        box-shadow: 0 16px 34px rgba(25, 120, 229, 0.14);
    }

    .plan-popular {
        position: absolute;
        top: -9px;
        left: 50%;
        transform: translateX(-50%);
        min-height: 18px;
        padding: 0 10px;
        border-radius: 999px;
        background: var(--px-primary);
        color: #fff;
        font-size: .58rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
    }

    .plan-name {
        margin: 0;
        font-size: 1.6rem;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .plan-description {
        margin: 8px 0 0;
        font-size: .82rem;
        line-height: 1.6;
        color: #64748b;
        min-height: 40px;
    }

    .plan-price {
        margin-top: 20px;
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .plan-price strong {
        font-size: clamp(2.2rem, 4vw, 2.6rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .plan-price span {
        font-size: .9rem;
        color: #64748b;
    }

    .plan-meta {
        margin-top: 6px;
        font-size: .8rem;
        color: #64748b;
        line-height: 1.55;
    }

    .plan-cta {
        margin-top: 18px;
    }

    .plan-btn {
        width: 100%;
        min-height: 42px;
        border-radius: 8px;
        border: 1px solid #dbe2ea;
        background: #f1f5f9;
        color: #111827;
        font-weight: 700;
        font-size: .84rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
        cursor: pointer;
    }

    .plan-btn:hover {
        transform: translateY(-1px);
    }

    .plan-btn.primary {
        background: var(--px-primary);
        border-color: var(--px-primary);
        color: #fff;
        box-shadow: 0 10px 20px rgba(25, 120, 229, 0.2);
    }

    .plan-btn.dark {
        background: #0f172a;
        border-color: #0f172a;
        color: #fff;
    }

    .plan-btn:disabled,
    .plan-btn.disabled {
        opacity: .6;
        cursor: not-allowed;
        box-shadow: none;
    }

    .plan-options {
        display: grid;
        gap: 8px;
        margin-top: 10px;
    }

    .plan-options select {
        width: 100%;
        min-height: 40px;
        border-radius: 8px;
        border: 1px solid #dbe2ea;
        background: #fff;
        padding: 0 10px;
        font-size: .8rem;
        color: #334155;
    }

    .plan-options label {
        font-size: .74rem;
        font-weight: 700;
        color: #475569;
        margin: 0;
    }

    .plan-annual-note {
        margin-top: 10px;
        font-size: .8rem;
        line-height: 1.5;
        color: #64748b;
    }
    .plan-annual-note.is-hidden {
        display: none;
    }

    .plan-annual-note b {
        color: #475569;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 16px 0 0;
        display: grid;
        gap: 9px;
        flex: 1 1 auto;
    }

    .features-list li {
        position: relative;
        padding-left: 18px;
        font-size: .8rem;
        line-height: 1.45;
        color: #475569;
    }

    .features-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .34rem;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--px-primary);
        box-shadow: 0 0 0 3px rgba(25, 120, 229, 0.14);
    }

    .pricing-section {
        margin-top: 48px;
        background: rgba(255,255,255,0.45);
        border-top: 1px solid #e5eaf0;
        border-bottom: 1px solid #e5eaf0;
        padding: 60px 20px;
    }

    .section-head {
        text-align: center;
        margin-bottom: 28px;
    }

    .section-head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.05em;
    }

    .section-head p {
        margin: 12px auto 0;
        max-width: 520px;
        color: #64748b;
        font-size: .94rem;
        line-height: 1.65;
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 760px;
    }

    .compare-table th,
    .compare-table td {
        padding: 16px 10px;
        border-bottom: 1px solid #e7edf4;
        font-size: .84rem;
        text-align: center;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        text-align: left;
        width: 36%;
    }

    .compare-table thead th {
        font-weight: 700;
        color: #111827;
        background: transparent;
    }

    .compare-table th.is-featured {
        color: var(--px-primary);
    }

    .check-mark {
        color: var(--px-primary);
        font-weight: 800;
    }

    .dash-mark {
        color: #94a3b8;
        font-weight: 700;
    }

    .faq-grid {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 14px;
    }

    .faq-item {
        padding: 16px 18px;
        border-radius: 10px;
        background: #fff;
        border: 1px solid #e2e8f0;
    }

    .faq-item h3 {
        margin: 0;
        font-size: .95rem;
        line-height: 1.4;
        letter-spacing: -0.02em;
    }

    .faq-item p {
        margin: 8px 0 0;
        color: #64748b;
        font-size: .82rem;
        line-height: 1.65;
    }

    .pricing-empty {
        margin-top: 24px;
    }

    @media (max-width: 1080px) {
        .plans-grid {
            grid-template-columns: 1fr;
            max-width: 680px;
            margin-inline: auto;
        }

        .plan-popular {
            left: 24px;
            transform: none;
        }
    }

    @media (max-width: 720px) {
        .pricing-wrap {
            padding-top: 34px;
        }

        .pricing-title {
            font-size: clamp(2.1rem, 10vw, 3.2rem);
        }

        .plan-price {
            justify-content: center;
        }

        .pricing-section {
            padding: 44px 12px;
            margin-top: 36px;
        }
    }
