    :root {
        --trx-primary: #0E82FD;
        --trx-primary-dark: #0867CA;
        --trx-secondary: #00B894;
        --trx-ink: #102033;
        --trx-muted: #667085;
        --trx-soft: #F4F8FF;
        --trx-soft-green: #EAFBF5;
        --trx-border: #E7EEF8;
        --trx-white: #FFFFFF;
        --trx-warning: #FFB547;
        --trx-shadow: 0 18px 45px rgba(16, 32, 51, 0.10);
        --trx-radius: 22px;
    }

    .trx-subscription-page {
        font-family: inherit;
        color: var(--trx-ink);
        background: #ffffff;
        overflow: hidden;
        width: 100%;
    }

    .trx-subscription-page * {
        box-sizing: border-box;
    }

    .trx-container {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
    }

    .trx-hero {
        position: relative;
        padding: 90px 0 70px;
        background:
            radial-gradient(circle at top left, rgba(14, 130, 253, 0.16), transparent 38%),
            linear-gradient(135deg, #F7FBFF 0%, #FFFFFF 52%, #EFFFFA 100%);
    }

    .trx-hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 38px;
        align-items: center;
    }

    .trx-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        border-radius: 999px;
        color: var(--trx-primary-dark);
        background: rgba(14, 130, 253, 0.10);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .trx-eyebrow span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--trx-secondary);
        display: inline-block;
    }

    .trx-hero h1 {
        font-size: clamp(36px, 5vw, 62px);
        line-height: 1.05;
        margin: 0 0 18px;
        letter-spacing: -1.4px;
        color: var(--trx-ink);
    }

    .trx-hero h1 strong {
        color: var(--trx-primary);
        font-weight: 800;
    }

    .trx-hero p {
        margin: 0;
        color: var(--trx-muted);
        font-size: 18px;
        line-height: 1.75;
        max-width: 640px;
    }

    .trx-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
    }

    .trx-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        padding: 13px 22px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 800;
        transition: 0.25s ease;
        border: 1px solid transparent;
        cursor: pointer;
    }

    .trx-btn-primary {
        color: #fff;
        background: linear-gradient(135deg, var(--trx-primary), var(--trx-secondary));
        box-shadow: 0 14px 30px rgba(14, 130, 253, 0.24);
    }

    .trx-btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(14, 130, 253, 0.30);
    }

    .trx-btn-outline {
        color: var(--trx-primary-dark);
        background: #fff;
        border-color: rgba(14, 130, 253, 0.20);
    }

    .trx-btn-outline:hover {
        color: var(--trx-primary-dark);
        transform: translateY(-2px);
        border-color: var(--trx-primary);
    }

    .trx-hero-card {
        position: relative;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(231, 238, 248, 0.95);
        border-radius: 30px;
        box-shadow: var(--trx-shadow);
        padding: 28px;
    }

    .trx-hero-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 30px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(14, 130, 253, 0.34), rgba(0, 184, 148, 0.25));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .trx-stat-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 18px;
    }

    .trx-stat {
        background: var(--trx-soft);
        border-radius: 18px;
        padding: 18px 14px;
        text-align: center;
    }

    .trx-stat strong {
        display: block;
        font-size: 27px;
        line-height: 1;
        color: var(--trx-primary);
        margin-bottom: 7px;
    }

    .trx-stat span {
        color: var(--trx-muted);
        font-size: 13px;
        font-weight: 700;
    }

    .trx-care-box {
        padding: 22px;
        border-radius: 22px;
        background: linear-gradient(135deg, #0E82FD, #00B894);
        color: #fff;
    }

    .trx-care-box h3 {
        color: #fff;
        margin: 0 0 12px;
        font-size: 24px;
    }

    .trx-care-box p {
        color: rgba(255, 255, 255, 0.90);
        font-size: 15px;
        line-height: 1.7;
        margin: 0 0 16px;
    }

    .trx-care-list {
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .trx-care-list li {
        display: flex;
        gap: 9px;
        align-items: flex-start;
        color: #fff;
        font-weight: 700;
        font-size: 14px;
    }

    .trx-section {
        padding: 72px 0;
    }

    .trx-section-soft {
        background: linear-gradient(180deg, #fff 0%, #F7FBFF 100%);
    }

    .trx-section-title {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 42px;
    }

    .trx-section-title .trx-kicker {
        color: var(--trx-secondary);
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .trx-section-title h2 {
        font-size: clamp(30px, 4vw, 46px);
        line-height: 1.14;
        margin: 0 0 14px;
        color: var(--trx-ink);
    }

    .trx-section-title p {
        color: var(--trx-muted);
        font-size: 17px;
        line-height: 1.7;
        margin: 0;
    }

    .trx-duration-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin: 0 auto 34px;
    }

    .trx-duration-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 132px;
        min-height: 44px;
        border-radius: 999px;
        border: 1px solid var(--trx-border);
        background: #fff;
        color: var(--trx-primary-dark);
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(16, 32, 51, 0.05);
    }

    .trx-duration-pill:hover {
        color: #fff;
        background: linear-gradient(135deg, var(--trx-primary), var(--trx-secondary));
        border-color: transparent;
    }

    .trx-package-group {
        padding-top: 18px;
        scroll-margin-top: 110px;
    }

    .trx-package-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 24px;
    }

    .trx-package-heading h3 {
        font-size: 30px;
        margin: 0 0 8px;
        color: var(--trx-ink);
    }

    .trx-package-heading p {
        max-width: 660px;
        color: var(--trx-muted);
        margin: 0;
        line-height: 1.65;
    }

    .trx-pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        align-items: stretch;
        margin-bottom: 44px;
    }

    .trx-plan {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid var(--trx-border);
        border-radius: var(--trx-radius);
        background: #fff;
        box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
        padding: 28px;
        transition: 0.25s ease;
    }

    .trx-plan:hover {
        transform: translateY(-6px);
        box-shadow: var(--trx-shadow);
    }

    .trx-plan-featured {
        border: 2px solid rgba(14, 130, 253, 0.30);
        box-shadow: 0 18px 42px rgba(14, 130, 253, 0.15);
    }

    .trx-badge {
        position: absolute;
        top: 18px;
        right: 18px;
        background: var(--trx-soft-green);
        color: #087A62;
        border-radius: 999px;
        padding: 7px 11px;
        font-size: 12px;
        font-weight: 900;
    }

    .trx-plan-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 25px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--trx-primary), var(--trx-secondary));
        margin-bottom: 18px;
    }

    .trx-plan h3 {
        font-size: 24px;
        line-height: 1.2;
        margin: 0 0 8px;
        color: var(--trx-ink);
        padding-right: 90px;
    }

    .trx-price {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin: 4px 0 5px;
    }

    .trx-price strong {
        font-size: 42px;
        line-height: 1;
        color: var(--trx-ink);
        letter-spacing: -1px;
    }

    .trx-price span {
        color: var(--trx-muted);
        font-weight: 700;
    }

    .trx-validity {
        display: inline-flex;
        width: fit-content;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--trx-soft);
        color: var(--trx-primary-dark);
        font-weight: 900;
        font-size: 13px;
        margin: 8px 0 20px;
    }

    .trx-feature-list {
        display: grid;
        gap: 12px;
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
    }

    .trx-feature-list li {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 10px;
        color: #344054;
        line-height: 1.55;
        font-size: 15px;
    }

    .trx-check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(0, 184, 148, 0.12);
        color: var(--trx-secondary);
        font-size: 13px;
        font-weight: 900;
        margin-top: 1px;
    }

    .trx-plan .trx-btn {
        width: 100%;
        margin-top: auto;
    }

    .trx-support-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .trx-support-card {
        border: 1px solid var(--trx-border);
        border-radius: 20px;
        padding: 22px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(16, 32, 51, 0.05);
    }

    .trx-support-card .trx-mini-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: var(--trx-soft);
        color: var(--trx-primary);
        display: grid;
        place-items: center;
        font-weight: 900;
        margin-bottom: 14px;
    }

    .trx-support-card h3 {
        margin: 0 0 10px;
        font-size: 19px;
        color: var(--trx-ink);
    }

    .trx-support-card p {
        margin: 0;
        color: var(--trx-muted);
        line-height: 1.65;
        font-size: 15px;
    }

    .trx-compare-block {
        margin-top: 32px;
        scroll-margin-top: 110px;
    }

    .trx-compare-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 14px;
    }

    .trx-compare-title h3 {
        margin: 0;
        font-size: 24px;
        color: var(--trx-ink);
    }

    .trx-compare-wrap {
        overflow-x: auto;
        border: 1px solid var(--trx-border);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(16, 32, 51, 0.05);
    }

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

    .trx-compare-table th,
    .trx-compare-table td {
        padding: 16px 18px;
        border-bottom: 1px solid var(--trx-border);
        text-align: left;
        vertical-align: top;
    }

    .trx-compare-table th {
        color: var(--trx-ink);
        background: #F7FBFF;
        font-size: 15px;
    }

    .trx-compare-table td {
        color: #344054;
        font-size: 15px;
        line-height: 1.6;
    }

    .trx-compare-table tr:last-child td {
        border-bottom: 0;
    }

    .trx-process {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .trx-step {
        position: relative;
        padding: 24px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--trx-border);
    }

    .trx-step-number {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #fff;
        background: var(--trx-primary);
        font-weight: 900;
        margin-bottom: 15px;
    }

    .trx-step h3 {
        margin: 0 0 8px;
        font-size: 18px;
        color: var(--trx-ink);
    }

    .trx-step p {
        margin: 0;
        color: var(--trx-muted);
        line-height: 1.6;
        font-size: 15px;
    }

    .trx-terms {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 28px;
        align-items: start;
        padding: 34px;
        border-radius: 28px;
        background: #102033;
        color: #fff;
    }

    .trx-terms h2 {
        color: #fff;
        margin: 0 0 12px;
        font-size: 34px;
    }

    .trx-terms p {
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.75;
        margin: 0;
    }

    .trx-terms ul {
        display: grid;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .trx-terms li {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 10px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.55;
        font-size: 15px;
    }

    .trx-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trx-faq-item {
        padding: 22px;
        border: 1px solid var(--trx-border);
        border-radius: 20px;
        background: #fff;
    }

    .trx-faq-item h3 {
        margin: 0 0 8px;
        color: var(--trx-ink);
        font-size: 18px;
    }

    .trx-faq-item p {
        margin: 0;
        color: var(--trx-muted);
        line-height: 1.65;
        font-size: 15px;
    }

    .trx-bottom-cta {
        text-align: center;
        padding: 56px 28px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 35%),
            linear-gradient(135deg, var(--trx-primary), var(--trx-secondary));
        color: #fff;
        box-shadow: var(--trx-shadow);
    }

    .trx-bottom-cta h2 {
        color: #fff;
        font-size: clamp(30px, 4vw, 44px);
        margin: 0 0 12px;
    }

    .trx-bottom-cta p {
        color: rgba(255, 255, 255, 0.90);
        margin: 0 auto 26px;
        max-width: 720px;
        line-height: 1.75;
        font-size: 17px;
    }

    .trx-bottom-cta .trx-btn {
        background: #fff;
        color: var(--trx-primary-dark);
        border-color: #fff;
    }

    @media (max-width: 991px) {
        .trx-hero {
            padding: 64px 0 56px;
        }

        .trx-hero-grid,
        .trx-pricing-grid,
        .trx-terms {
            grid-template-columns: 1fr;
        }

        .trx-support-grid,
        .trx-process {
            grid-template-columns: repeat(2, 1fr);
        }

        .trx-package-heading {
            display: block;
        }
    }

    @media (max-width: 575px) {
        .trx-container {
            width: min(100% - 22px, 1180px);
        }

        .trx-hero h1 {
            letter-spacing: -0.6px;
        }

        .trx-hero p,
        .trx-section-title p {
            font-size: 16px;
        }

        .trx-stat-row,
        .trx-support-grid,
        .trx-process,
        .trx-faq-grid {
            grid-template-columns: 1fr;
        }

        .trx-hero-card,
        .trx-plan,
        .trx-terms {
            padding: 22px;
        }

        .trx-section {
            padding: 54px 0;
        }

        .trx-hero-actions .trx-btn,
        .trx-duration-pill {
            width: 100%;
        }

        .trx-plan h3 {
            padding-right: 0;
            margin-top: 34px;
        }
    }


    /* Tabbed package and comparison view */
    .trx-duration-nav {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 12px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
        margin: 0 auto 34px;
        width: fit-content;
        max-width: 100%;
    }

    .trx-section .trx-duration-nav {
        display: flex;
    }

    .trx-duration-pill {
        border: 0;
        min-width: 132px;
        min-height: 46px;
        border-radius: 14px;
        background: transparent;
        color: var(--trx-ink);
        font-weight: 900;
        cursor: pointer;
        box-shadow: none;
        transition: 0.22s ease;
        text-decoration: none;
    }

    .trx-duration-pill:hover {
        color: var(--trx-primary-dark);
        background: rgba(14, 130, 253, 0.08);
    }

    .trx-duration-pill.is-active {
        color: #fff;
        background: linear-gradient(135deg, var(--trx-primary), #19B2D8);
        box-shadow: 0 10px 24px rgba(14, 130, 253, 0.22);
    }

    .trx-package-group,
    .trx-compare-block {
        display: none;
    }

    .trx-package-group.is-active,
    .trx-compare-block.is-active {
        display: block;
        animation: trxTabFade 0.22s ease;
    }

    @keyframes trxTabFade {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
    }