 /* ==========================================================
           PurpleXtra — Pricing
           Self-contained styling, brand-aligned with AskPx.
           Drop into PX_Website root. Wrap with site header later.
           ========================================================== */

        :root {
            --px-purple: #7B38C2;
            --px-purple-dark: #5e1a9e;
            --px-purple-light: #b08be4;
            --px-purple-bg: #f5f0fc;
            --px-text: #2b2f42;
            --px-muted: #636a7a;
            --px-border: #e9e9ef;
            --px-bg: #ffffff;
            --px-bg-soft: #fafbfe;

            /* ─── Variables lifted from CSS/index.css for the shared header ─── */
            --bg:             #FFFFFF;
            --bg-card:        #FFFFFF;
            --border:         #E8E5F0;
            --purple-700:     #6D28D9;
            --purple-600:     #7C3AED;
            --purple-500:     #8B5CF6;
            --purple-400:     #A78BFA;
            --text:           #111018;
            --text-70:        rgba(17, 16, 24, 0.65);
            --text-45:        rgba(17, 16, 24, 0.42);
            --dark:           #140F22;
            --dark-border:    rgba(139, 92, 246, 0.15);
            --white:          #F8F8FC;
            --white-40:       rgba(248, 248, 252, 0.4);
            --font:           'Poppins', -apple-system, sans-serif;
            --shadow-lg:
                0 2px 4px rgba(17, 16, 24, 0.04),
                0 16px 40px -12px rgba(17, 16, 24, 0.14),
                0 0 0 1px rgba(17, 16, 24, 0.04);
            --shadow-btn-primary:
                inset 0 1px 0 rgba(255, 255, 255, 0.18),
                0 1px 2px rgba(17, 16, 24, 0.10),
                0 4px 12px rgba(124, 58, 237, 0.28);
            --shadow-btn-primary-hover:
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                0 2px 4px rgba(17, 16, 24, 0.12),
                0 8px 20px rgba(124, 58, 237, 0.38);
        }

        * { box-sizing: border-box; }

        html, body {
            margin: 0; padding: 0;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--px-text);
            background: #fff;
            line-height: 1.55;
        }

        /* ==========================================================
           Header — lifted from CSS/index.css to keep visual parity
           with the homepage. If index.css changes, mirror here.
           ========================================================== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 48px;
            background: #ffffff;
            box-shadow: 0 1px 2px rgba(17, 16, 24, 0.04), 0 4px 16px rgba(17, 16, 24, 0.04);
        }
        .nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }
        nav::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, #7B38C2, #b08be4 70%, #d6c7f2);
            opacity: 0.85;
        }
        .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .nav-mark { height: 52px; flex-shrink: 0; display: block; background: transparent; border-radius: 0; padding: 0; }
        .nav-mark img { height: 100%; width: auto; display: block; }
        .nav-tagline { display: none; }
        .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

        /* ─── Hamburger menu ─── */
        .hamburger-menu { position: relative; }
        .hamburger-btn {
            display: flex; flex-direction: column; justify-content: center; gap: 5px;
            width: 36px; height: 36px; padding: 8px;
            background: none; border: none; cursor: pointer;
        }
        .hamburger-btn span {
            display: block; width: 100%; height: 2.5px;
            background: #2b2f42; border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s; transform-origin: center;
        }
        .hamburger-btn.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
        .hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
        .menu-dropdown {
            display: none; position: absolute; top: calc(100% + 8px); right: 0;
            background: #fff; border: none;
            border-radius: 12px; box-shadow: var(--shadow-lg);
            min-width: 180px; padding: 8px 0; z-index: 200;
        }
        .menu-dropdown.is-open { display: block; }
        .menu-dropdown a {
            display: block; padding: 10px 18px;
            font-size: 14px; font-weight: 500; color: #2b2f42;
            text-decoration: none; transition: background 0.15s, color 0.15s;
        }
        .menu-dropdown a:hover { background: rgba(123,56,194,.06); color: var(--purple-600); }
        .menu-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

        /* ─── Header buttons ─── */
        .btn-login {
            padding: 8px 20px;
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-600) 100%);
            border: none;
            border-radius: 6px;
            color: #ffffff;
            font-size: 13px; font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.18),
                0 1px 2px rgba(17, 16, 24, 0.08),
                0 2px 8px rgba(124, 58, 237, 0.22);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
        }
        .btn-login:hover {
            background: linear-gradient(180deg, var(--purple-600) 0%, var(--purple-700) 100%);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                0 2px 4px rgba(17, 16, 24, 0.12),
                0 6px 16px rgba(124, 58, 237, 0.32);
            transform: translateY(-1px);
        }
        .btn-primary {
            padding: 7px 18px;
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-600) 100%);
            border: none;
            border-radius: 6px;
            color: #fff; font-size: 13px; font-weight: 600;
            text-decoration: none;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.18),
                0 1px 2px rgba(17, 16, 24, 0.08),
                0 2px 8px rgba(124, 58, 237, 0.22);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            font-family: var(--font); cursor: pointer;
        }
        .btn-primary:hover {
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-700) 100%);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                0 2px 4px rgba(17, 16, 24, 0.12),
                0 8px 20px rgba(124, 58, 237, 0.38);
            transform: translateY(-1px);
        }
        .btn-ghost {
            padding: 8px 20px;
            background: var(--purple-600);
            border: 1px solid var(--purple-600);
            border-radius: 6px;
            color: #fff;
            font-size: 13px; font-weight: 500;
            text-decoration: none; transition: all 0.2s;
            font-family: var(--font); cursor: pointer;
        }
        .btn-ghost:hover { background: var(--purple-700); border-color: var(--purple-700); color: #fff; }

        /* ─── Mobile menu ─── */
        .mobile-menu { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(20,15,34,0.98); backdrop-filter: blur(24px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
        .mobile-menu-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 0; padding: 80px 32px 48px; }
        .mobile-menu-link { display: block; padding: 18px 0; font-size: 24px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.02em; transition: color 0.2s; text-align: center; }
        .mobile-menu-link:hover { color: var(--purple-400); }
        .mobile-menu-divider { width: 48px; height: 1px; background: var(--dark-border); margin: 16px 0 24px; }
        .mobile-menu-btn { width: 200px; text-align: center; margin-top: 8px; padding: 12px 24px; font-size: 15px; }

        /* ─── Header responsive ─── */
        @media (max-width: 868px) {
            .btn-login, .nav-right .btn-primary { display: none; }
            .mobile-menu { display: block; }
        }
        @media (max-width: 640px) {
            nav { padding: 0 16px; }
        }

        /* ─── Login modal ─── */
        .login-overlay {
            position: fixed; inset: 0; z-index: 200;
            background: rgba(20, 15, 34, 0.6);
            backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .login-overlay.is-open { opacity: 1; visibility: visible; }
        .login-modal {
            position: relative;
            background: var(--bg-card);
            border: none;
            border-radius: 20px;
            padding: 40px 36px;
            width: 90%; max-width: 420px;
            box-shadow:
                0 32px 80px rgba(17, 16, 24, 0.28),
                0 12px 24px rgba(124, 58, 237, 0.14),
                0 0 0 1px rgba(17, 16, 24, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .login-overlay.is-open .login-modal { transform: translateY(0); }
        .login-modal-close {
            position: absolute; top: 16px; right: 18px;
            background: none; border: none; cursor: pointer;
            font-size: 26px; color: var(--text-45); line-height: 1;
            transition: color 0.2s;
        }
        .login-modal-close:hover { color: var(--text); }
        .login-modal-title {
            font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px;
        }
        .login-modal-sub {
            font-size: 14px; color: var(--text-70); margin-bottom: 28px; line-height: 1.5;
        }
        .login-field { margin-bottom: 18px; }
        .login-field label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--text); margin-bottom: 6px;
        }
        .login-field input {
            width: 100%; padding: 11px 14px; font-size: 14px;
            font-family: var(--font); color: var(--text);
            background: var(--bg); border: 1px solid var(--border);
            border-radius: 10px; outline: none;
            transition: border-color 0.2s;
        }
        .login-field input::placeholder { color: var(--text-45); }
        .login-field input:focus { border-color: var(--purple-500); }
        .login-pw-wrap { position: relative; display: flex; align-items: center; }
        .login-pw-wrap input { padding-right: 44px; }
        .login-pw-toggle {
            position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
            background: none; border: none; cursor: pointer; padding: 4px;
            color: var(--text-45); display: flex; align-items: center; justify-content: center;
            transition: color 0.2s;
        }
        .login-pw-toggle:hover { color: var(--purple-600); }
        .login-error {
            background: rgba(220, 38, 38, 0.06); border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 10px; padding: 12px 14px; margin-bottom: 18px;
            font-size: 13px; color: #b91c1c; line-height: 1.5;
        }
        .login-submit {
            width: 100%; padding: 13px 20px;
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-600) 100%);
            color: #fff;
            border: none; border-radius: 10px; cursor: pointer;
            font-family: var(--font); font-size: 15px; font-weight: 600;
            box-shadow: var(--shadow-btn-primary);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .login-submit:hover {
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-700) 100%);
            box-shadow: var(--shadow-btn-primary-hover);
            transform: translateY(-1px);
        }
        .login-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
        .login-submit-loader {
            width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff; border-radius: 50%;
            animation: loginSpin 0.6s linear infinite;
        }
        @keyframes loginSpin { to { transform: rotate(360deg); } }
        .login-help {
            margin-top: 24px; text-align: center;
            font-size: 12.5px; color: var(--text-45);
        }
        .login-help a { color: var(--purple-600); text-decoration: none; }
        .login-help a:hover { text-decoration: underline; }
        .login-dest-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
        .login-dest {
            display: flex; align-items: center; gap: 16px;
            padding: 18px 22px;
            border: none; border-radius: 14px;
            cursor: pointer; font-family: var(--font); font-size: 16px;
            font-weight: 700; color: #fff;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .login-dest:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
        .login-dest-flag { font-size: 20px; font-weight: 800; }
        .login-dest-europe { background: linear-gradient(135deg, #1e3a8a, #2563eb, #3b82f6); }
        .login-dest-japan  { background: linear-gradient(135deg, #9f1239, #dc2626, #e11d48); }
        .login-dest-askpx  { background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc); }

        /* ─── Contact modal ─── */
        .contact-overlay {
            position: fixed; inset: 0; z-index: 200;
            background: rgba(20, 15, 34, 0.6);
            backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .contact-overlay.is-open { opacity: 1; visibility: visible; }
        .contact-modal {
            position: relative;
            background: var(--bg-card);
            border: none;
            border-radius: 20px;
            padding: 40px 36px;
            width: 90%; max-width: 480px;
            max-height: 92vh;
            overflow-y: auto;
            box-shadow:
                0 32px 80px rgba(17, 16, 24, 0.28),
                0 12px 24px rgba(124, 58, 237, 0.14),
                0 0 0 1px rgba(17, 16, 24, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .contact-overlay.is-open .contact-modal { transform: translateY(0); }
        .contact-modal-close {
            position: absolute; top: 16px; right: 18px;
            background: none; border: none; cursor: pointer;
            font-size: 26px; color: var(--text-45); line-height: 1;
            transition: color 0.2s;
        }
        .contact-modal-close:hover { color: var(--text); }
        .contact-modal-title {
            font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px;
        }
        .contact-modal-sub {
            font-size: 14px; color: var(--text-70); margin-bottom: 24px; line-height: 1.5;
        }
        .contact-field { margin-bottom: 14px; }
        .contact-field label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--text); margin-bottom: 6px;
        }
        .contact-field input,
        .contact-field textarea {
            width: 100%; padding: 11px 14px; font-size: 14px;
            font-family: var(--font); color: var(--text);
            background: var(--bg); border: 1px solid var(--border);
            border-radius: 10px; outline: none;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }
        .contact-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
        .contact-field input:focus,
        .contact-field textarea:focus { border-color: var(--purple-500); }
        .contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
        .contact-error {
            background: rgba(220, 38, 38, 0.06); border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 10px; padding: 12px 14px; margin-bottom: 14px;
            font-size: 13px; color: #b91c1c; line-height: 1.5;
        }
        .contact-submit {
            width: 100%; padding: 13px 20px;
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-600) 100%);
            color: #fff;
            border: none; border-radius: 10px; cursor: pointer;
            font-family: var(--font); font-size: 15px; font-weight: 600;
            box-shadow: var(--shadow-btn-primary);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            margin-top: 4px;
        }
        .contact-submit:hover {
            background: linear-gradient(180deg, var(--purple-500) 0%, var(--purple-700) 100%);
            box-shadow: var(--shadow-btn-primary-hover);
            transform: translateY(-1px);
        }
        .contact-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
        .contact-submit-loader {
            width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff; border-radius: 50%;
            animation: loginSpin 0.6s linear infinite;
        }
        .contact-small {
            margin-top: 16px; font-size: 11.5px; color: var(--text-45); line-height: 1.5;
        }

        /* Push first section below the now-fixed nav (nav is 68px tall + 3px gradient line) */
        body { padding-top: 71px; }

        /* ---- Hero ---- */
        .px-hero {
            text-align: center;
            padding: 56px 24px 32px;
            background: linear-gradient(180deg, var(--px-purple-bg) 0%, #fff 100%);
        }
        .px-hero h1 {
            font-size: 38px;
            font-weight: 700;
            margin: 0 0 12px;
            color: var(--px-text);
        }
        .px-hero p {
            font-size: 17px;
            color: var(--px-muted);
            max-width: 640px;
            margin: 0 auto;
        }

        /* ---- Section container ---- */
        .px-section {
            max-width: 1080px;
            margin: 0 auto;
            padding: 48px 32px;
        }
        .px-section h2 {
            font-size: 26px;
            font-weight: 600;
            margin: 0 0 8px;
            color: var(--px-text);
        }
        .px-section .px-section-intro {
            color: var(--px-muted);
            font-size: 15px;
            margin: 0 0 28px;
            max-width: 720px;
        }

        /* ---- How tokens work — three pill cards ---- */
        .px-how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 8px;
        }
        .px-how-card {
            background: var(--px-bg-soft);
            border: 1px solid var(--px-border);
            border-radius: 12px;
            padding: 24px 22px;
        }
        .px-how-card .px-how-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--px-purple);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 14px;
        }
        .px-how-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin: 0 0 6px;
            color: var(--px-text);
        }
        .px-how-card p {
            font-size: 14px;
            color: var(--px-muted);
            margin: 0;
            line-height: 1.5;
        }

        /* ---- Token cost table ---- */
        .px-cost-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 8px;
            background: #fff;
            border: 1px solid var(--px-border);
            border-radius: 12px;
            overflow: hidden;
        }
        .px-cost-table th, .px-cost-table td {
            padding: 14px 20px;
            text-align: left;
            font-size: 14px;
            border-bottom: 1px solid var(--px-border);
        }
        .px-cost-table th {
            background: var(--px-purple-bg);
            color: var(--px-purple-dark);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .px-cost-table tr:last-child td { border-bottom: none; }
        .px-cost-table tr:nth-child(even) td { background: var(--px-bg-soft); }
        .px-cost-table .px-cost-cell {
            text-align: right;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }
        .px-cost-table .px-cost-free {
            color: #1a7a3a;
            font-weight: 700;
        }

        /* ---- Pricing ladder ---- */
        .px-tier-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 8px;
        }
        .px-tier {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 24px;
            align-items: center;
            padding: 22px 28px;
            background: #fff;
            border: 1px solid var(--px-border);
            border-radius: 14px;
            transition: border-color 0.15s, box-shadow 0.15s;
        }
        .px-tier:hover {
            border-color: var(--px-purple-light);
            box-shadow: 0 2px 12px rgba(123, 56, 194, 0.08);
        }
        .px-tier.px-tier-featured {
            border-color: var(--px-purple);
            background: linear-gradient(180deg, #fff 0%, var(--px-purple-bg) 100%);
        }
        .px-tier-info { min-width: 0; }
        .px-tier-name {
            font-size: 17px;
            font-weight: 600;
            color: var(--px-text);
            margin-bottom: 4px;
        }
        .px-tier-meta {
            font-size: 13px;
            color: var(--px-muted);
        }
        .px-tier-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--px-purple-dark);
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }
        .px-tier-price-per {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: var(--px-muted);
            margin-top: 2px;
        }
        .px-tier-actions {
            display: flex;
            gap: 8px;
            white-space: nowrap;
        }
        .px-btn {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 8px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: 1.5px solid transparent;
            transition: background 0.15s, border-color 0.15s, color 0.15s;
            white-space: nowrap;
        }
        .px-btn-primary {
            background: var(--px-purple);
            color: #fff;
            border-color: var(--px-purple);
        }
        .px-btn-primary:hover {
            background: var(--px-purple-dark);
            border-color: var(--px-purple-dark);
        }
        .px-btn-secondary {
            background: #fff;
            color: var(--px-purple);
            border-color: var(--px-purple);
        }
        .px-btn-secondary:hover {
            background: var(--px-purple-bg);
        }

        /* ---- Starter tier (the one open, self-serve price) ---- */
        .px-starter {
            position: relative;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: center;
            padding: 34px 36px;
            border: 2px solid var(--px-purple);
            border-radius: 18px;
            background: linear-gradient(135deg, #fff 0%, var(--px-purple-bg) 100%);
            box-shadow: 0 8px 30px rgba(123, 56, 194, 0.10);
            margin-top: 8px;
        }
        .px-starter-badge {
            position: absolute;
            top: -12px; left: 36px;
            background: var(--px-purple);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .px-starter-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--px-text);
            margin-bottom: 6px;
        }
        .px-starter-desc {
            font-size: 14.5px;
            color: var(--px-muted);
            max-width: 460px;
            margin: 0 0 16px;
            line-height: 1.55;
        }
        .px-starter-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        .px-starter-features li {
            font-size: 13px;
            color: var(--px-text);
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .px-starter-features li::before {
            content: '✓';
            color: var(--px-purple);
            font-weight: 800;
            font-size: 13px;
        }
        .px-starter-right {
            text-align: center;
            white-space: nowrap;
        }
        .px-starter-price {
            font-size: 40px;
            font-weight: 800;
            color: var(--px-purple-dark);
            font-variant-numeric: tabular-nums;
            line-height: 1;
        }
        .px-starter-price-sub {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: var(--px-muted);
            margin: 8px 0 18px;
        }
        .px-starter-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .px-starter-actions .px-btn { padding: 12px 26px; font-size: 14px; }

        /* ---- Gated pack band (prices behind "talk to us") ---- */
        .px-packs-band {
            margin-top: 16px;
            border: 1px solid var(--px-border);
            border-radius: 18px;
            background: var(--px-bg-soft);
            padding: 32px 36px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 28px;
            align-items: center;
        }
        .px-packs-copy h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--px-text);
            margin: 0 0 8px;
        }
        .px-packs-copy p {
            font-size: 14.5px;
            color: var(--px-muted);
            margin: 0 0 16px;
            max-width: 540px;
            line-height: 1.55;
        }
        .px-packs-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .px-packs-list li {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--px-purple-dark);
            background: var(--px-purple-bg);
            border: 1px solid #e5d9f6;
            border-radius: 20px;
            padding: 5px 13px;
        }
        .px-packs-cta {
            text-align: center;
            white-space: nowrap;
        }
        .px-packs-cta .px-packs-cta-label {
            display: block;
            font-size: 13px;
            color: var(--px-muted);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .px-packs-cta .px-btn { padding: 13px 30px; font-size: 14px; }
        @media (max-width: 880px) {
            .px-starter,
            .px-packs-band {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .px-starter-right,
            .px-packs-cta { text-align: left; }
            .px-starter-actions .px-btn,
            .px-packs-cta .px-btn { width: 100%; text-align: center; }
            .px-starter-badge { left: 24px; }
        }

        /* ---- Footer notes ---- */
        .px-fineprint {
            background: var(--px-bg-soft);
            border-top: 1px solid var(--px-border);
            padding: 32px 32px 24px;
            font-size: 13px;
            color: var(--px-muted);
            text-align: center;
        }
        .px-fineprint p {
            margin: 0 auto 8px;
            max-width: 720px;
        }
        .px-fineprint a {
            color: var(--px-purple);
            text-decoration: none;
            font-weight: 500;
        }
        .px-fineprint a:hover { text-decoration: underline; }

        .px-footer {
            background: #2b2f42;
            color: #b0b5c3;
            padding: 22px 40px;
            font-size: 13px;
            text-align: center;
        }
        .px-footer a { color: #d6c7f2; text-decoration: none; }
        .px-footer a:hover { text-decoration: underline; }

        /* ---- Responsive ---- */
        @media (max-width: 880px) {
            .px-hero h1 { font-size: 30px; }
            .px-section { padding: 36px 20px; }
            .px-how-grid { grid-template-columns: 1fr; }
            .px-tier {
                grid-template-columns: 1fr;
                gap: 14px;
                text-align: left;
            }
            .px-tier-price { font-size: 20px; }
            .px-tier-actions { width: 100%; }
            .px-btn { flex: 1; text-align: center; }
            .px-cost-table th, .px-cost-table td {
                padding: 12px 14px;
                font-size: 13px;
            }
        }
        @media (max-width: 600px) {
            .px-hero { padding: 40px 18px 24px; }
            .px-hero h1 { font-size: 26px; }
            .px-hero p { font-size: 15px; }
        }