/* Page Header */
    .page-header {
        margin-bottom: var(--hero-gap);
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }
    
    .page-subtitle {
        color: var(--text-secondary);
        font-size: 1.1rem;
    }
    
    /* Modernized Filters bar */
    .filters-bar-minimal {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.25rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        padding: 0.6rem 1.25rem;
        border-radius: 12px;
    }

    .filter-group-minimal {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .filter-group-minimal label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
    }

    .filter-group-minimal select {
        padding: 0.6rem 2.2rem 0.6rem 1rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--bg-primary);
        color: var(--text-primary);
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        outline: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffa366' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 1rem;
        min-width: 180px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .filter-group-minimal select:hover {
        border-color: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 163, 102, 0.1);
    }

    .filter-group-minimal select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 163, 102, 0.2);
    }

    /* Duration Filter */
    .duration-filter-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .duration-filter-pills {
        display: inline-flex;
        background: var(--bg-primary);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 3px;
        gap: 3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .duration-pill {
        background: none;
        border: none;
        color: var(--text-secondary);
        font-family: inherit;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.45rem 0.85rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        white-space: nowrap;
    }

    .duration-pill:hover {
        color: var(--text-primary);
        background: var(--bg-secondary);
    }

    .duration-pill.active {
        background: var(--primary);
        color: #fff;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
    }

    /* Country Cards Grid */
    .countries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* Country Card */
    .country-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: pointer;
        position: relative;
    }
    
    .country-card:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
        box-shadow: var(--card-shadow);
    }
    
    .country-card-header {
        padding: 1.5rem 1.5rem 0;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }
    
    .country-flag {
        font-size: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-tertiary);
        width: 64px;
        height: 64px;
        border-radius: 14px;
        border: 1px solid var(--border);
    }
    
    .country-info {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        flex: 1;
    }
    
    .country-name {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-primary);
    }
    
    .country-meta {
        display: flex;
        gap: 0.75rem;
        font-size: 0.72rem;
        color: var(--gray);
        font-weight: 500;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .country-card-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        flex-grow: 1;
    }

    .country-promo {
        font-size: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.5;
        background: rgba(249, 115, 22, 0.05);
        border: 1px solid rgba(249, 115, 22, 0.1);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    [data-theme="dark"] .country-promo {
        background: rgba(255, 163, 102, 0.05);
        border-color: rgba(255, 163, 102, 0.1);
        color: var(--primary);
    }
    
    .price-section {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    
    .price-label {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--gray);
    }
    
    .price {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--text-primary);
        font-size: 1.4rem;
    }
    
    .price-value {
        font-size: 1.4rem;
        font-weight: 800;
    }

    .price-unit {
        font-size: 0.8rem;
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    .operators-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .operators-label {
        font-size: 0.72rem;
        color: var(--gray);
        font-weight: 500;
    }
    
    .operators-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    
    .operator-tag {
        font-size: 0.72rem;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border);
        color: var(--text-primary);
        padding: 0.15rem 0.4rem;
        border-radius: 5px;
        font-weight: 500;
    }
    
    .network-badges {
        display: flex;
        gap: 0.4rem;
    }
    
    .network-badge {
        font-family: var(--font-mono);
        font-size: 0.65rem;
        font-weight: 600;
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
        text-transform: uppercase;
    }
    
    .order-btn {
        width: 100%;
        padding: 0.6rem;
        border: 1px solid transparent;
        background: var(--primary);
        color: var(--white);
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.8rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 12px var(--glow-color);
        margin-top: auto;
    }
    
    .order-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px var(--glow-color);
    }

    .order-btn.order-btn-disabled {
        background: var(--bg-secondary);
        color: var(--text-secondary);
        border-color: var(--border);
        box-shadow: none;
        cursor: not-allowed;
    }

    .order-btn.order-btn-disabled:hover {
        background: var(--bg-secondary);
        transform: none;
        box-shadow: none;
    }
    
    /* Order Modal Modern styles */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Neutral dark dim that matches the page background (no blue cast);
           kept light so the blur doesn't wash out the backdrop. */
        background: rgba(10, 10, 10, 0.55);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 9998;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal {
        background-color: var(--bg-primary);
        border: 1px solid var(--border);
        border-radius: 20px;
        width: 100%;
        max-width: 540px;
        max-height: 90vh;
        overflow-y: auto;
        padding: 2rem;
        box-shadow: var(--card-shadow), 0 0 0 1px rgba(249, 115, 22, 0.06), 0 24px 60px -20px rgba(0, 0, 0, 0.55);
        position: relative;
        animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        display: block;
        margin: 0;
        background-image: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, transparent 12%);
    }

    .modal-overlay.active .modal {
        will-change: transform, opacity;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-14px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
    }

    .modal-header-left {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        min-width: 0;
    }

    .modal-back-btn {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-back-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateX(-2px);
    }

    .modal-title-section {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .modal-flag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(249, 115, 22, 0.08);
        color: var(--primary);
        font-size: 1.6rem;
    }

    .modal-title {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--text-primary);
        margin: 0;
    }

    .modal-close, .close-btn {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        font-size: 0.8rem;
        color: var(--text-secondary);
        cursor: pointer;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-close:hover, .close-btn:hover {
        color: var(--primary);
        border-color: var(--primary);
        transform: scale(1.05) rotate(90deg);
    }

    .modal-body {
        padding: 0;
    }

    .modal-section {
        margin-bottom: 1.25rem;
    }

    .modal-section:last-child {
        margin-bottom: 0;
    }

    .modal-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        display: block;
    }

    .crypto-minimal-panel {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0.8rem;
        background: var(--bg-secondary);
    }

    .crypto-minimal-qr {
        width: 186px;
        height: 186px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--bg-secondary);
        padding: 0.3rem;
        object-fit: contain;
    }

    .option-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .option-btn {
        position: relative;
        padding: 0.5rem 0.65rem;
        border: 1px solid var(--border);
        background: var(--bg-secondary);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: center;
        font-weight: 500;
        color: var(--text-primary);
        /* Matches the height of .submit-btn (Continue to Checkout) so
           every button in the modal -- operator, network, duration, and
           the final action -- reads as one consistent size. Fixed so a
           group with a "No Stock" line doesn't grow taller than its
           sibling groups. */
        min-height: 3.1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    .option-btn:hover {
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    .option-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 12px var(--glow-color);
    }

    [data-theme="dark"] .option-btn.active {
        color: #1a1a1a;
    }

    .option-btn-label {
        display: block;
        font-size: 0.64rem;
        margin-bottom: 0.15rem;
        opacity: 0.75;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .option-btn-value {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .option-stock-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        color: #dc3545;
        font-size: 0.58rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .option-stock-badge .pxm2-icon {
        width: 9px;
        height: 9px;
        flex-shrink: 0;
    }

    .price-display {
        background: radial-gradient(circle at top, rgba(249, 115, 22, 0.08) 0%, var(--bg-secondary) 70%);
        padding: 0.85rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        text-align: center;
    }

    .price-display-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-secondary);
        margin-bottom: 0.25rem;
    }

    .price-display-amount {
        font-family: var(--font-heading);
        font-size: 1.7rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--primary);
    }

    /* Feature highlights -- given the visual weight so buyers register
       what they're getting (bandwidth, activation, rotation, security)
       before their eye ever lands on the price. */
    .modal-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .modal-highlight-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.4rem 0.5rem;
        border-radius: 8px;
        background: rgba(249, 115, 22, 0.06);
        border: 1px solid rgba(249, 115, 22, 0.15);
        color: var(--text-primary);
        font-size: 0.68rem;
        font-weight: 600;
        text-align: center;
    }

    .modal-highlight-item .pxm2-icon {
        color: var(--primary);
        flex-shrink: 0;
        width: 13px;
        height: 13px;
    }

    /* Price + CTA -- price is intentionally small and secondary so the
       button remains the focal point of the step. */
    .modal-cta-section {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-inline-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .price-row-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
        min-width: 0;
    }

    .price-inline-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-secondary);
    }

    .price-inline-suffix {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-secondary);
        white-space: nowrap;
    }

    .price-row-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.2rem;
        flex-shrink: 0;
    }

    .price-row-discount {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    /* Struck-through "was" price -- shows the real cost of paying at the
       previous duration's rate for this long (e.g. what a month would
       cost at the weekly rate), so the new price reads as a genuine
       tiered-pricing saving. */
    .price-inline-original {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-decoration: line-through;
        text-decoration-color: var(--danger);
        opacity: 0.85;
    }

    .price-inline-amount {
        font-size: 1.35rem;
        font-weight: 800;
        font-family: var(--font-heading);
        color: var(--text-primary);
        line-height: 1.1;
    }

    .price-inline-save {
        font-size: 0.68rem;
        font-weight: 700;
        color: #10b981;
        background: rgba(16, 185, 129, 0.15);
        padding: 0.15rem 0.45rem;
        border-radius: 6px;
        white-space: nowrap;
        line-height: 1.2;
    }

    /* Reassurance line under the CTA -- reduces last-step hesitation. */
    .modal-reassurance {
        text-align: center;
        font-size: 0.72rem;
        color: var(--text-secondary);
        margin: 0;
    }

    .modal-reassurance .dot {
        color: var(--border);
        margin: 0 0.15rem;
    }

    .modal-reassurance a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    .modal-reassurance a:hover {
        text-decoration: underline;
    }

    .auth-section {
        background: var(--bg-secondary);
        padding: 1.25rem;
        border-radius: 14px;
        border: 1px solid var(--border);
    }

    .auth-tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .auth-tab {
        flex: 1;
        padding: 0.75rem;
        border: none;
        background: transparent;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-secondary);
        transition: all 0.25s;
    }

    .auth-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }
    
    .auth-form {
        display: none;
    }
    
    .auth-form.active {
        display: block;
    }
    
    .form-input {
        width: 100%;
        padding: 0.875rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-primary);
        color: var(--text-primary);
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        transition: border-color 0.3s;
    }
    
    .form-input:focus {
        outline: none;
        border-color: var(--primary);
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.95rem;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 0.75rem;
        box-shadow: 0 4px 12px var(--glow-color);
    }

    [data-theme="dark"] .submit-btn {
        color: #1a1a1a;
    }

    /* Main checkout CTA -- a deeper amber/red gradient (still the site's
       warm hue family) so it reads as distinct from the lighter-orange
       option buttons surrounding it, without introducing an unrelated
       color like blue/green. */
    .submit-btn.cta-btn {
        background: linear-gradient(135deg, var(--warning) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    }

    [data-theme="dark"] .submit-btn.cta-btn {
        color: #1a1400;
    }

    .submit-btn.cta-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, var(--warning) 0%, var(--primary-dark) 100%);
        filter: brightness(1.08);
        box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
    }

    .submit-btn:hover:not(:disabled) {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px var(--glow-color);
    }

    .submit-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
    }
    
    .terms-notice {
        text-align: center;
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .terms-notice a {
        color: var(--primary);
        text-decoration: none;
    }
    
    .terms-notice a:hover {
        text-decoration: underline;
    }
    
    .card-element {
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-primary);
        margin-bottom: 1rem;
    }
    
    .saved-cards-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .saved-card-item {
        padding: 1rem;
        border: 2px solid var(--border);
        border-radius: 8px;
        background: var(--bg-primary);
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .saved-card-item:hover {
        border-color: var(--primary);
    }
    
    .saved-card-item.selected {
        border-color: var(--primary);
        background: rgba(255, 140, 0, 0.1);
    }
    
    .saved-card-icon {
        display: inline-flex;
    }

    .saved-card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .submit-btn svg,
    .toast svg {
        width: 1.1em;
        height: 1.1em;
        flex-shrink: 0;
        vertical-align: -0.15em;
    }

    .saved-card-info {
        flex: 1;
    }
    
    .saved-card-brand {
        font-weight: 600;
        color: var(--text-primary);
        text-transform: capitalize;
    }
    
    .saved-card-number {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }
    
    .add-card-btn, .edit-billing-btn {
        width: 100%;
        padding: 0.875rem;
        border: 2px dashed var(--border);
        border-radius: 8px;
        background: transparent;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.2s;
        font-weight: 500;
    }
    
    .add-card-btn:hover, .edit-billing-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }
    
    .billing-address-display {
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-primary);
        color: var(--text-primary);
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .error-message {
        color: var(--danger);
        font-size: 0.875rem;
        margin-top: 0.5rem;
        display: none;
    }
    
    .error-message.show {
        display: block;
    }
    
    /* Toast Notifications */
    .toast {
        position: fixed;
        top: 20px;
        right: 20px;
        background: #10b981;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        z-index: 10002;
        animation: slideIn 0.3s ease-out;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        max-width: 400px;
    }
    
    .toast.error {
        background: #ef4444;
    }
    
    .toast.warning {
        background: #f59e0b;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(400px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateX(0);
            opacity: 1;
        }
        to {
            transform: translateX(400px);
            opacity: 0;
        }
    }
    
    .form-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-primary);
        color: var(--text-primary);
        font-size: 1rem;
        transition: border-color 0.2s;
    }
    
    .form-input:focus {
        outline: none;
        border-color: var(--primary);
    }
    
    .form-input::placeholder {
        color: var(--text-secondary);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .countries-grid {
            grid-template-columns: 1fr;
        }
        
        .country-flag {
            font-size: 3rem;
        }
        
        .country-name {
            font-size: 1.25rem;
        }
        
        .price {
            font-size: 1.75rem;
        }
        
        .modal {
            max-height: 95vh;
        }
        
        .option-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* PXM2 Custom Layout Classes */
    .pxm2-layout-container {
        max-width: 1200px;
        margin: 4rem auto 0 auto;
        padding: 3rem 1.5rem 0 1.5rem;
        border-top: 1px solid var(--border);
        box-sizing: border-box;
    }
    .pxm2-section {
        margin-bottom: 5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-section-title {
        font-family: var(--font-heading);
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .pxm2-section-subtitle {
        font-size: 1.05rem;
        color: var(--text-secondary);
        text-align: center;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    .pxm2-hero {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0.5rem 1.5rem 0;
        border: none;
        background: transparent;
        position: relative;
    }
    .pxm2-hero > * {
        position: relative;
        z-index: 2;
    }
    /*
     * Full-bleed animated ambient backdrop behind the hero — same recipe
     * as the homepage (GPU-composited floating glow blobs) mixed with the
     * aurora hues of the reference design (warm top, blue/cyan lows).
     * The layer is masked so it dissolves into the page background with
     * no visible edge, and only `transform` animates so the compositor
     * keeps it perfectly fluid.
     */
    .pxm2-ambient {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        margin-left: -50vw;
        height: 110vh;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 20%, #000 0%, transparent 78%);
                mask-image: radial-gradient(ellipse 70% 70% at 50% 20%, #000 0%, transparent 78%);
    }
    .pxm2-ambient-blob {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        will-change: transform;
        transform: translateZ(0);
    }
    .pxm2-ambient-warm {
        width: 640px;
        height: 640px;
        background: radial-gradient(circle, rgba(255, 163, 102, 0.34) 0%, rgba(255, 163, 102, 0.13) 32%, transparent 68%);
        top: -6%;
        left: 8%;
        opacity: 0.5;
        animation: pxm2AmbientFloat1 22s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    }
    .pxm2-ambient-blue {
        width: 760px;
        height: 760px;
        background: radial-gradient(circle, rgba(96, 130, 225, 0.30) 0%, rgba(96, 130, 225, 0.11) 32%, transparent 68%);
        top: 18%;
        right: -6%;
        opacity: 0.45;
        animation: pxm2AmbientFloat2 28s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    }
    .pxm2-ambient-cyan {
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(64, 190, 215, 0.28) 0%, rgba(64, 190, 215, 0.10) 32%, transparent 68%);
        top: 42%;
        left: -4%;
        opacity: 0.42;
        animation: pxm2AmbientFloat3 34s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    }
    /* Seamless loops (0% == 100%), ease-in-out curves, transform-only. */
    @keyframes pxm2AmbientFloat1 {
        0%   { transform: translate(0, 0) scale(1); }
        22%  { transform: translate(130px, 70px) scale(1.14); }
        48%  { transform: translate(-70px, 150px) scale(0.9); }
        74%  { transform: translate(-140px, 55px) scale(1.08); }
        100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes pxm2AmbientFloat2 {
        0%   { transform: translate(0, 0) scale(1); }
        26%  { transform: translate(-160px, -95px) scale(1.15); }
        54%  { transform: translate(110px, -130px) scale(0.88); }
        80%  { transform: translate(80px, 75px) scale(1.06); }
        100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes pxm2AmbientFloat3 {
        0%   { transform: translate(0, 0) scale(1); }
        33%  { transform: translate(105px, -80px) scale(1.2); }
        66%  { transform: translate(-95px, 70px) scale(0.85); }
        100% { transform: translate(0, 0) scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
        .pxm2-ambient-blob { animation: none !important; }
    }
    .pxm2-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        padding: 0.3rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(90, 140, 220, 0.35);
        font-family: var(--font-mono);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-primary);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        margin-bottom: 0.6rem;
    }
    [data-theme="dark"] .pxm2-hero-eyebrow {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 163, 102, 0.35);
    }
    .pxm2-hero-supporting {
        font-size: 1rem;
        color: var(--text-secondary);
        opacity: 0.85;
        margin: -1.5rem auto 2.5rem auto;
        max-width: 720px;
        line-height: 1.6;
    }
    .pxm2-hero-micro {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .pxm2-hero-micro .dot {
        color: var(--text-secondary);
        opacity: 0.6;
    }
    .pxm2-hero-micro a {
        text-decoration: none;
        font-weight: 500;
        color: var(--text-secondary);
        transition: color 0.2s ease;
    }
    .pxm2-hero-micro a:hover {
        color: var(--text-primary);
    }
    .pxm2-hero-micro .pxm2-hero-micro-trial {
        color: var(--text-primary);
        font-weight: 600;
    }
    /* Hero key-features strip -- four core selling points, each led by a
       green SVG check so it renders identically on every browser (no emoji
       dependency). Replaces the old tool-logo marquee. */
    .pxm2-hero-featstrip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.75rem;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }
    .pxm2-hero-featstrip-item {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-secondary);
        white-space: nowrap;
    }
    .pxm2-hero-featstrip-check {
        color: var(--success);
        flex-shrink: 0;
    }
    .pxm2-buy-section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    /* Subtle, low-emphasis label -- it should orient, not shout, so it
       never competes with the primary "Buy proxies" call to action. */
    .pxm2-buy-spotlight-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(148, 163, 184, 0.10);
        color: var(--text-secondary);
        border: 1px solid var(--border);
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    .pxm2-buy-spotlight-badge .pxm2-icon {
        color: var(--gray);
    }
    .pxm2-badge-bar {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }
    .pxm2-badge {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        padding: 0.35rem 0.85rem;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 500;
    }
    .pxm2-hero-team-tag {
        font-size: 0.82rem;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    .pxm2-hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.15rem, 4.5vw, 3.25rem);
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.08;
        margin-bottom: 0.6rem;
        letter-spacing: -0.03em;
    }
    .pxm2-hero-title-line1 {
        display: block;
        color: var(--text-primary);
    }
    .pxm2-hero-title-line2 {
        display: block;
        /* Accent color, same as the homepage's highlighted h1 spans */
        color: var(--primary);
    }
    .pxm2-hero-desc {
        font-size: clamp(0.95rem, 1.4vw, 1.1rem);
        font-weight: 500;
        color: var(--text-secondary);
        max-width: 760px;
        margin: 0 auto 1rem auto;
        line-height: 1.45;
    }
    .pxm2-hero-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.25rem;
    }
    /* Same button sizing as the homepage hero (base .btn scale) */
    .pxm2-hero-actions .btn {
        padding: 0.6rem 1.4rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .pxm2-hero-actions .btn-primary {
        background: var(--primary);
        color: var(--white);
        border: none;
        box-shadow: 0 4px 14px var(--glow-color);
    }
    [data-theme="dark"] .pxm2-hero-actions .btn-primary {
        color: #1a1a1a;
    }
    .pxm2-hero-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px var(--glow-color);
    }
    .pxm2-hero-actions .btn-secondary {
        background: var(--bg-primary);
        border: 1px solid var(--border);
        color: var(--text-primary);
    }
    .pxm2-hero-actions .btn-secondary:hover {
        transform: translateY(-2px);
    }
    .pxm2-hero-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: left;
    }
    .pxm2-card-row {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    /* Slight horizontal offset between rows for the staggered look */
    .pxm2-card-row:nth-child(2) {
        transform: translateX(14px);
    }
    .pxm2-card-row:nth-child(3) {
        transform: translateX(-14px);
    }
    .pxm2-feature-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.1rem 1.5rem 1.1rem 1.1rem;
        border-radius: 20px;
        min-width: 270px;
        max-width: 330px;
        box-shadow: 0 6px 18px -8px rgba(23, 26, 36, 0.14), 0 1px 3px rgba(23, 26, 36, 0.05);
        transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    /* Mobile: stack full-width, drop the stagger, tighten the layout */
    @media (max-width: 760px) {
        .pxm2-card-row:nth-child(2),
        .pxm2-card-row:nth-child(3) {
            transform: none;
        }
        .pxm2-hero-features {
            gap: 0.75rem;
            align-items: stretch;
        }
        .pxm2-card-row {
            flex-direction: column;
            gap: 0.75rem;
        }
        .pxm2-feature-card {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            padding: 0.9rem 1.1rem 0.9rem 0.9rem;
            border-radius: 16px;
        }
        .pxm2-feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
        }
    }
    [data-theme="dark"] .pxm2-feature-card {
        box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    .pxm2-feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px -10px rgba(23, 26, 36, 0.2);
    }
    [data-theme="dark"] .pxm2-feature-card:hover {
        box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.6);
    }
    .pxm2-feature-icon {
        display: grid;
        place-items: center;
        align-self: flex-start;
        background: var(--bg-primary);
        width: 52px;
        height: 52px;
        border-radius: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px -2px rgba(23, 26, 36, 0.12);
        color: var(--text-secondary);
    }
    [data-theme="dark"] .pxm2-feature-icon {
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
    }
    .pxm2-feature-icon svg {
        width: 22px;
        height: 22px;
    }
    .pxm2-feature-card h3 {
        font-size: 0.98rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 0.15rem 0;
        font-family: var(--font-heading);
        line-height: 1.3;
    }
    .pxm2-feature-card p {
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.4;
        margin: 0;
    }
    /* Per-card tint + border variants (light values mirror the reference;
       dark overrides keep the same hue at low alpha on the dark surface). */
    .pxm2-feature-card--neutral { background: #ffffff; border: 1px solid rgba(23, 26, 36, 0.10); }
    .pxm2-feature-card--green   { background: #eef8ef; border: 1px solid rgba(52, 168, 83, 0.28); }
    .pxm2-feature-card--blue    { background: #eef1fb; border: 1px solid rgba(90, 110, 220, 0.25); }
    .pxm2-feature-card--purple  { background: #f4effa; border: 1px solid rgba(140, 90, 220, 0.25); }
    .pxm2-feature-card--cyan    { background: #eaf7fa; border: 1px solid rgba(40, 170, 200, 0.28); }
    .pxm2-feature-card--yellow  { background: #fdf7e6; border: 1px solid rgba(220, 170, 40, 0.35); }
    .pxm2-feature-card--orange  { background: #fdf1e6; border: 1px solid rgba(240, 140, 60, 0.40); }
    [data-theme="dark"] .pxm2-feature-card--neutral { background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.12); }
    [data-theme="dark"] .pxm2-feature-card--green   { background: rgba(52, 168, 83, 0.10);  border-color: rgba(52, 168, 83, 0.32); }
    [data-theme="dark"] .pxm2-feature-card--blue    { background: rgba(90, 110, 220, 0.12); border-color: rgba(90, 110, 220, 0.34); }
    [data-theme="dark"] .pxm2-feature-card--purple  { background: rgba(140, 90, 220, 0.12); border-color: rgba(140, 90, 220, 0.34); }
    [data-theme="dark"] .pxm2-feature-card--cyan    { background: rgba(40, 170, 200, 0.10); border-color: rgba(40, 170, 200, 0.32); }
    [data-theme="dark"] .pxm2-feature-card--yellow  { background: rgba(220, 170, 40, 0.10); border-color: rgba(220, 170, 40, 0.34); }
    [data-theme="dark"] .pxm2-feature-card--orange  { background: rgba(255, 163, 102, 0.10); border-color: rgba(255, 163, 102, 0.38); }
    /* Icon picks up each card's accent hue */
    .pxm2-feature-card--green .pxm2-feature-icon  { color: #2f9e50; }
    .pxm2-feature-card--blue .pxm2-feature-icon   { color: #5a6edc; }
    .pxm2-feature-card--purple .pxm2-feature-icon { color: #8c5adc; }
    .pxm2-feature-card--cyan .pxm2-feature-icon   { color: #28aac8; }
    .pxm2-feature-card--yellow .pxm2-feature-icon { color: #c99a1e; }
    .pxm2-feature-card--orange .pxm2-feature-icon { color: var(--primary); }
    [data-theme="dark"] .pxm2-feature-card--green .pxm2-feature-icon  { color: #4ecb74; }
    [data-theme="dark"] .pxm2-feature-card--blue .pxm2-feature-icon   { color: #8b9bf0; }
    [data-theme="dark"] .pxm2-feature-card--purple .pxm2-feature-icon { color: #b18cec; }
    [data-theme="dark"] .pxm2-feature-card--cyan .pxm2-feature-icon   { color: #58c8e2; }
    [data-theme="dark"] .pxm2-feature-card--yellow .pxm2-feature-icon { color: #e6c04a; }
    .pxm2-feature-cta-btn {
        margin-top: 0.6rem;
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 0.45rem 1rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    [data-theme="dark"] .pxm2-feature-cta-btn {
        color: #1a1a1a;
    }
    .pxm2-feature-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 163, 102, 0.3);
    }
    .pxm2-hero-spec-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        text-align: left;
        margin-bottom: 3.5rem;
    }
    .pxm2-spec-card {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid var(--border);
        padding: 1.75rem;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .pxm2-spec-card-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 1rem 0;
        font-family: var(--font-heading);
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.5rem;
    }
    .pxm2-use-cases-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pxm2-use-cases-list li {
        font-size: 0.88rem;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .pxm2-bullet-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pxm2-bullet-list li {
        font-size: 0.88rem;
        color: var(--text-secondary);
        margin-bottom: 0.6rem;
        padding-left: 1rem;
        position: relative;
        line-height: 1.5;
    }
    .pxm2-bullet-list li::before {
        content: "•";
        color: var(--primary);
        font-size: 1.1rem;
        position: absolute;
        left: 0;
        top: -1px;
    }
    .pxm2-tags-cloud {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    .pxm2-tags-cloud span {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        padding: 0.25rem 0.6rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 500;
    }
    .pxm2-tags-cloud span.highlight {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(255, 163, 102, 0.03);
    }
    /* Guide items -- compact list style borrowed from the homepage
       use-cases widget (.use-case-item), laid out as a two-column grid. */
    .pxm2-guide-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem 0.9rem;
        margin-bottom: 4rem;
    }
    .pxm2-guide-item {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0.9rem 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        position: relative;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 3px solid transparent;
    }
    .pxm2-guide-item:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        border-left: 3px solid var(--primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .pxm2-guide-item--linked {
        cursor: pointer;
    }
    .pxm2-guide-item--linked h3 a {
        color: inherit;
        text-decoration: none;
    }
    .pxm2-guide-item--linked h3 a:hover {
        text-decoration: underline;
    }
    .pxm2-guide-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    .pxm2-guide-item h3 {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
    }
    .pxm2-guide-badge-meta {
        font-size: 0.72rem;
        color: var(--gray);
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        white-space: nowrap;
    }
    .pxm2-guide-item p {
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0;
    }
    .pxm2-guide-tags {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-top: auto;
        padding-top: 0.35rem;
    }
    .pxm2-guide-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
        border-radius: 4px;
        background: var(--bg-tertiary);
        color: var(--text-secondary);
        border: 1px solid var(--border);
        font-weight: 500;
    }
    .pxm2-guide-tag.highlight {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(255, 163, 102, 0.05);
    }
    .pxm2-guide-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.78rem;
        margin-left: auto;
        white-space: nowrap;
    }
    .pxm2-guide-link:hover {
        text-decoration: underline;
    }
    @media (max-width: 760px) {
        .pxm2-guide-list {
            grid-template-columns: 1fr;
        }
    }
    .pxm2-mini-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1rem;
    }
    .pxm2-mini-table td {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 0.88rem;
        color: var(--text-secondary);
    }
    .pxm2-mini-table tr:last-child td {
        border-bottom: none;
    }
    .pxm2-spec-footer {
        text-align: right;
        margin-top: 0.75rem;
    }
    .pxm2-spec-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.88rem;
        transition: all 0.2s ease;
    }
    .pxm2-spec-link:hover {
        text-decoration: underline;
    }
    .pxm2-stats-summary {
        display: flex;
        justify-content: space-around;
        gap: 1.5rem;
        flex-wrap: wrap;
        border-top: 1px solid var(--border);
        padding-top: 1.75rem;
    }
    .pxm2-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pxm2-stat-item .number {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--primary);
        font-family: var(--font-heading);
    }
    .pxm2-stat-item .label {
        font-size: 0.75rem;
        color: var(--text-secondary);
        margin-top: 0.2rem;
        font-weight: 500;
    }
    .pxm2-grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        padding: 1.75rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
    }
    .pxm2-card:hover {
        transform: translateY(-3px);
        border-color: var(--primary);
    }
    .pxm2-card-header h3 {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 0.5rem 0;
    }
    .pxm2-card-badge {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--primary);
        background: rgba(255, 163, 102, 0.08);
        padding: 0.15rem 0.5rem;
        border-radius: 3px;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        width: fit-content;
    }
    .pxm2-card-desc {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0 0 1.25rem 0;
    }
    .pxm2-card-bullets {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .pxm2-card-bullets li {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 0.4rem;
        padding-left: 1rem;
        position: relative;
    }
    .pxm2-card-bullets li::before {
        content: "✓";
        color: var(--primary);
        position: absolute;
        left: 0;
        font-weight: 700;
    }
    .pxm2-card-action {
        width: 100%;
        padding: 0.55rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        text-align: center;
        text-decoration: none;
        display: block;
        cursor: pointer;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }
    .pxm2-card-action.btn-primary {
        background: var(--primary);
        color: var(--white);
        border: none;
    }
    [data-theme="dark"] .pxm2-card-action.btn-primary {
        color: #1a1a1a;
    }
    .pxm2-card-action.btn-primary:hover {
        opacity: 0.9;
    }
    .pxm2-card-action.btn-secondary {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        color: var(--text-primary);
    }
    .pxm2-card-action.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    .pxm2-spec-table-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-spec-table-title {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 1rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .pxm2-spec-table-title::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }
    .pxm2-table-card {
        border-radius: 14px;
        border: 1px solid var(--border);
        background: var(--bg-primary, var(--white));
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .pxm2-table-card:hover {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
        transform: translateY(-2px);
    }
    [data-theme="dark"] .pxm2-table-card {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    [data-theme="dark"] .pxm2-table-card:hover {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    }
    .pxm2-spec-table {
        width: 100%;
        border-collapse: collapse;
    }
    .pxm2-spec-table th {
        background: var(--bg-tertiary);
        padding: 0.85rem 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-align: left;
        border-bottom: 1px solid var(--border);
    }
    .pxm2-spec-table td {
        padding: 0.85rem 1.1rem;
        border-bottom: 1px solid var(--border);
        font-size: 0.9rem;
        transition: background 0.15s ease;
    }
    .pxm2-spec-table tbody tr:hover td {
        background: var(--glow-color);
    }
    .pxm2-spec-table tr:last-child td {
        border-bottom: none;
    }
    .pxm2-spec-table td:first-child {
        font-weight: 600;
        color: var(--text-primary);
        width: 45%;
    }
    .pxm2-spec-table td:last-child {
        color: var(--text-secondary);
        font-weight: 500;
    }
    .pxm2-case-study {
        background: linear-gradient(135deg, rgba(255, 163, 102, 0.03) 0%, rgba(236, 72, 153, 0.01) 100%);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.5rem;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 1.5rem;
        text-align: left;
        box-sizing: border-box;
    }
    .pxm2-case-study-left h4 {
        color: var(--primary);
        font-weight: 700;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin: 0 0 0.4rem 0;
    }
    .pxm2-case-study-left h3 {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 0.5rem 0;
        line-height: 1.25;
    }
    .pxm2-case-study-left p {
        color: var(--text-secondary);
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }
    .pxm2-case-study-right {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .pxm2-case-step {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.85rem 1rem;
        display: flex;
        gap: 0.75rem;
    }
    .pxm2-case-step-num {
        background: rgba(255, 163, 102, 0.1);
        color: var(--primary);
        font-weight: 800;
        font-size: 0.95rem;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .pxm2-case-step-content h4 {
        margin: 0 0 0.2rem 0;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--text-primary);
    }
    .pxm2-case-step-content p {
        margin: 0;
        font-size: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.45;
    }
    .pxm2-case-roi {
        border-top: 1px solid var(--border);
        padding-top: 0.85rem;
        margin-top: 0.4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .pxm2-case-roi-val {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--primary);
        font-family: var(--font-heading);
    }
    .pxm2-case-roi-lbl {
        font-size: 0.8rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    /* Unified Use Cases panel (merges pxm2-spec-card + pxm2-case-tab-container + pxm2-card-desc) */
    .pxm2-usecase-panel {
        transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .pxm2-usecase-panel.pxm2-usecase-switching {
        opacity: 0.3;
        transform: translateY(6px);
    }
    .pxm2-usecase-top {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1.75rem;
        align-items: start;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    .pxm2-usecase-intro h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0.5rem 0 0.3rem 0;
        line-height: 1.25;
    }
    .pxm2-usecase-meta {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.85rem;
        margin: 0 0 0.85rem 0;
    }
    .pxm2-usecase-roi {
        background: var(--glow-color);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.1rem 1.4rem;
        text-align: center;
        min-width: 170px;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        align-self: center;
        box-sizing: border-box;
    }
    @media (max-width: 720px) {
        .pxm2-usecase-top {
            grid-template-columns: 1fr;
        }
        .pxm2-usecase-roi {
            min-width: 0;
        }
    }
    .pxm2-concierge-card {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
        box-sizing: border-box;
    }
    .pxm2-concierge-badge {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--primary);
        border: 1px solid var(--primary);
        padding: 0.2rem 0.6rem;
        border-radius: 50px;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 1rem;
        width: fit-content;
    }
    .pxm2-concierge-title {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 1.25rem 0;
    }
    .pxm2-concierge-p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.65;
        margin-bottom: 1.75rem;
    }
    .pxm2-concierge-btn {
        background: var(--primary);
        color: var(--white);
        padding: 0.6rem 1.35rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.85rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    [data-theme="dark"] .pxm2-concierge-btn {
        color: #1a1a1a;
    }
    .pxm2-concierge-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 163, 102, 0.3);
    }
    .pxm2-concierge-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .pxm2-concierge-feature h4 {
        margin: 0 0 0.4rem 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
    }
    .pxm2-concierge-feature p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }
    .pxm2-cluster-block {
        margin-bottom: 3rem;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2rem;
        text-align: left;
        box-sizing: border-box;
    }
    .pxm2-cluster-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    .pxm2-cluster-title {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0;
    }
    .pxm2-cluster-badge {
        font-size: 0.75rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        color: var(--text-secondary);
    }
    .pxm2-cluster-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
    }
    .pxm2-cluster-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        transition: all 0.3s ease;
    }
    .pxm2-cluster-card:hover {
        border-color: var(--primary);
    }
    .pxm2-cluster-card h4 {
        margin: 0 0 0.4rem 0;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.4;
    }
    .pxm2-cluster-card p {
        margin: 0 0 1rem 0;
        font-size: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }
    .pxm2-cluster-card a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    .pxm2-cluster-card a:hover {
        text-decoration: underline;
    }
    .pxm2-blog-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        transition: all 0.3s ease;
        text-align: left;
        box-sizing: border-box;
    }
    .pxm2-blog-card:hover {
        border-color: var(--primary);
    }
    .pxm2-blog-meta {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
    }
    .pxm2-blog-title {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 0.75rem 0;
        line-height: 1.3;
    }
    .pxm2-blog-desc {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.55;
        margin: 0 0 1.25rem 0;
    }
    .pxm2-blog-read {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
    }
    .pxm2-blog-read:hover {
        text-decoration: underline;
    }
    .pxm2-faq-list {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-faq-item {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 10px;
        box-sizing: border-box;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }
    .pxm2-faq-item--open {
        border-color: var(--primary);
    }
    .pxm2-faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
        padding: 1.25rem;
    }
    .pxm2-faq-chevron {
        flex-shrink: 0;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--primary);
        border-bottom: 2px solid var(--primary);
        transform: rotate(45deg);
        transition: transform 0.25s ease;
        margin-top: -4px;
    }
    .pxm2-faq-item--open .pxm2-faq-chevron {
        transform: rotate(-135deg);
        margin-top: 4px;
    }
    .pxm2-faq-answer-wrap {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }
    .pxm2-faq-item--open .pxm2-faq-answer-wrap {
        grid-template-rows: 1fr;
    }
    .pxm2-faq-answer-wrap > .pxm2-faq-answer-inner {
        overflow: hidden;
        min-height: 0;
    }
    .pxm2-faq-answer {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.55;
        margin: 0;
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    .pxm2-faq-answer a {
        color: var(--primary);
        text-decoration: none;
    }
    .pxm2-faq-answer a:hover {
        text-decoration: underline;
    }
    .pxm2-alt-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-alt-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        padding: 1.25rem;
        border-radius: 10px;
        transition: all 0.2s ease;
        text-decoration: none;
        display: block;
        box-sizing: border-box;
    }
    .pxm2-alt-card:hover {
        border-color: var(--primary);
    }
    .pxm2-alt-title {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 0.2rem 0;
    }
    .pxm2-alt-tag {
        font-size: 0.7rem;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        display: block;
    }
    .pxm2-alt-desc {
        font-size: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.4;
        margin: 0;
    }
    .pxm2-horizontal-scroll {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 1rem 0.25rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        box-sizing: border-box;
    }
    .pxm2-horizontal-scroll::-webkit-scrollbar {
        display: none;
    }
    .pxm2-scroll-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        padding: 1.75rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
        box-sizing: border-box;
    }
    .pxm2-scroll-card:hover {
        border-color: var(--primary);
        transform: translateY(-3px);
    }
    .pxm2-horizontal-scroll, .pxm2-tab-header, .pxm2-case-tab, .pxm2-scroll-card, .pxm2-card, .pxm2-alt-card, .pxm2-blog-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pxm2-scroll-card:hover, .pxm2-card:hover, .pxm2-alt-card:hover, .pxm2-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
    .pxm2-tab-content-item {
        animation: pxm2-fade-in 0.4s ease-out;
    }
    @keyframes pxm2-fade-in {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Case Studies Clickable Tabs */
    .pxm2-case-tab-container {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 1.25rem;
    }
    .pxm2-case-tab {
        font-weight: 600;
        font-size: 0.82rem;
        color: var(--text-secondary);
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        padding: 0.4rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        user-select: none;
    }
    .pxm2-case-tab:hover {
        border-color: var(--primary);
        color: var(--text-primary);
    }
    .pxm2-case-tab.active {
        font-weight: 700;
        color: var(--primary);
        background: var(--glow-color);
        border-color: var(--primary);
    }

    /* Tab Switcher Headers */
    .pxm2-tab-header-container {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.75rem;
    }
    .pxm2-tab-header {
        font-weight: 600;
        color: var(--text-secondary);
        padding-bottom: 0.75rem;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all 0.2s ease;
        user-select: none;
    }
    .pxm2-tab-header.active {
        font-weight: 700;
        color: var(--primary);
        border-bottom-color: var(--primary);
    }
    .pxm2-tab-content-item {
        display: none;
    }
    .pxm2-tab-content-item.active {
        display: block;
    }

    /* Code Snippets */
    .pxm2-code-snippet {
        background: #090d16;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 1rem;
        font-family: var(--font-mono);
        font-size: 0.85rem;
        color: var(--primary);
        overflow-x: auto;
        text-align: left;
        margin: 1rem 0;
    }

    /* Final CTA — mirrors the hero's language (eyebrow pill, big two-tone
       type, oversized rounded buttons, green checklist) with a soft glow
       backdrop that blends into the page with no visible edges. */
    .pxm2-final-cta {
        position: relative;
        text-align: center;
        padding: 4rem 1.5rem 3rem;
        margin-top: 2rem;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pxm2-final-cta::before {
        content: "";
        position: absolute;
        inset: -10% -20%;
        pointer-events: none;
        z-index: 0;
        background:
            radial-gradient(45% 55% at 50% 45%, var(--glow-color) 0%, transparent 70%);
    }
    .pxm2-final-cta > * {
        position: relative;
        z-index: 1;
    }
    .pxm2-final-cta-title {
        font-family: var(--font-heading);
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        margin: 0 0 0.75rem 0;
    }
    .pxm2-final-cta-sub {
        max-width: 620px;
        margin: 0 auto 1.75rem auto;
        font-size: 1.02rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }
    .pxm2-final-cta-checks {
        display: flex;
        gap: 0.9rem 2rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 760px;
        margin: 0 auto 2.25rem auto;
    }
    .pxm2-final-cta-checks .pxm2-check-item {
        font-size: 0.9rem;
    }

    @media (max-width: 1024px) {
        .pxm2-hero-spec-grid, .pxm2-spec-table-wrapper, .pxm2-case-study, .pxm2-concierge-card {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .pxm2-case-study {
            padding: 1.5rem;
        }
    }
    @media (max-width: 768px) {
        .pxm2-hero {
            padding-left: 0;
            padding-right: 0;
        }
        .pxm2-hero-main {
            text-align: left;
        }
        .pxm2-hero-main .pxm2-hero-title {
            font-size: 2rem;
        }
        .pxm2-hero-main .pxm2-hero-desc {
            font-size: 0.95rem;
            margin: 0 0 0.75rem 0;
            max-width: 100%;
        }
        .pxm2-hero-main .pxm2-hero-micro {
            justify-content: flex-start;
        }
        .pxm2-hero-actions {
            flex-direction: column;
            gap: 0.75rem;
        }
        .pxm2-concierge-features {
            grid-template-columns: 1fr;
        }
        .filters-bar-minimal {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
        }
        .filter-group-minimal {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.35rem;
        }
        .filter-group-minimal select {
            width: 100%;
            min-width: 0;
        }
        .duration-filter-pills {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            width: 100%;
            text-align: center;
        }
        .duration-pill {
            padding: 0.45rem 0.2rem;
            text-align: center;
            font-size: 0.8rem;
        }
        .pxm2-buy-section-container {
            padding-left: 0;
            padding-right: 0;
        }
        .pxm2-layout-container {
            padding-left: 0;
            padding-right: 0;
        }
        .countries-grid {
            gap: 1.25rem;
        }
        .pxm2-spec-table-wrapper {
            gap: 1.5rem;
        }
    }

    /* Free Trial Modal form + CAPTCHA (mirrors the homepage's "Get 1-Hour
       Trial" modal so the two flows look and behave identically). */
    .form-group {
        margin-bottom: 1.25rem;
        text-align: left;
    }
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
        font-weight: 600;
        font-size: 0.85rem;
    }
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-size: 0.9rem;
        font-family: var(--font-sans);
        box-sizing: border-box;
        transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
    }
    .form-group textarea {
        resize: vertical;
        min-height: 80px;
    }
    .captcha-image {
        width: 100%;
        aspect-ratio: 3;
        border: 1px solid var(--border);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
    }
    .captcha-image svg {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }
    .captcha-image:hover {
        border-color: var(--primary);
        transform: scale(1.02);
    }
    .captcha-image.selected {
        border-color: var(--primary);
        background: var(--glow-color);
        transform: scale(0.98);
    }
    .success-message {
        text-align: center;
        padding: 1.5rem 0;
    }
    .success-message h3 {
        color: var(--success);
        font-family: var(--font-heading);
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    .success-message p {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* Use Cases widget (shared component, borrowed from home.html) */
    .use-cases-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .use-cases-header h2 {
        font-family: var(--font-heading);
        font-size: 1.85rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 0.5rem;
    }

    .use-cases-header p {
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .use-cases-view-all {
        display: inline-block;
        margin-top: 1rem;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--primary);
        text-decoration: none;
    }

    .use-cases-view-all:hover {
        text-decoration: underline;
    }

    .use-cases-section {
        padding: var(--section-padding) 0;
    }

    .use-cases-container {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 2rem;
        align-items: start;
        margin-top: 2rem;
    }

    .use-cases-list-viewport {
        height: var(--use-case-viewport-h, 27rem);
        overflow-y: auto;
        overflow-x: hidden;
        scroll-behavior: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
    }

    .use-cases-list-viewport::-webkit-scrollbar {
        display: none;
    }

    .use-cases-list {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }

    .use-case-item {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0.9rem 1.1rem;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        position: relative;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 3px solid transparent;
    }

    .use-case-item:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .use-case-item.active {
        background: var(--bg-primary);
        border-color: var(--primary);
        border-left: 3px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .use-case-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .use-case-item h4 {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    .use-case-badge-meta {
        font-size: 0.72rem;
        color: var(--gray);
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    .use-case-item p {
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .use-case-tags {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-top: 0.1rem;
    }

    .use-case-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
        border-radius: 4px;
        background: var(--bg-tertiary);
        color: var(--text-secondary);
        border: 1px solid var(--border);
        font-weight: 500;
    }

    .use-case-detail-pane {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 2rem;
        min-height: var(--use-case-viewport-h, 27rem);
        position: relative;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .use-case-detail-content {
        transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        opacity: 1;
        transform: translateY(0);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .use-case-detail-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.75rem;
        margin-bottom: 1.1rem;
    }

    .use-case-detail-header-row h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }

    .use-case-detail-badges {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .use-case-detail-badge {
        font-size: 0.72rem;
        font-weight: 600;
        padding: 0.25rem 0.6rem;
        border-radius: 6px;
        background: var(--bg-tertiary);
        color: var(--text-secondary);
        border: 1px solid var(--border);
    }

    .use-case-detail-badge.active {
        background: var(--text-primary);
        color: var(--bg-primary);
        border-color: var(--text-primary);
    }

    .use-case-detail-badge-rating {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary);
        margin-left: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .use-case-challenge-solution-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .use-case-challenge-box {
        background: rgba(239, 68, 68, 0.03);
        border: 1px solid rgba(239, 68, 68, 0.1);
        border-left: 3px solid #ef4444;
        border-radius: 10px;
        padding: 1rem 1.1rem;
    }

    .use-case-solution-box {
        background: rgba(16, 185, 129, 0.03);
        border: 1px solid rgba(16, 185, 129, 0.1);
        border-left: 3px solid #10b981;
        border-radius: 10px;
        padding: 1rem 1.1rem;
    }

    .use-case-box-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        margin-bottom: 0.35rem;
    }

    .use-case-challenge-label {
        color: #fca5a5;
    }

    .use-case-solution-label {
        color: #86efac;
    }

    .use-case-challenge-box p,
    .use-case-solution-box p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .use-case-capabilities-section {
        margin-bottom: 1.25rem;
    }

    .use-case-section-label, .use-case-results-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--gray);
        margin-bottom: 0.5rem;
    }

    .use-case-capabilities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 1rem;
    }

    .use-case-capabilities-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .use-case-capabilities-list li {
        font-size: 0.85rem;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .use-case-capabilities-list li span {
        color: var(--primary);
        font-weight: bold;
    }

    .use-case-results-box {
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.9rem 1.1rem;
        margin-bottom: 1.25rem;
    }

    .use-case-results-box p {
        font-size: 0.88rem;
        color: var(--text-primary);
        font-weight: 500;
        line-height: 1.5;
    }

    .use-case-learn-more-link {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s;
    }

    .use-case-learn-more-link:hover {
        color: var(--primary);
    }

    @media (max-width: 992px) {
        .use-cases-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .use-cases-list-viewport {
            height: auto;
            overflow: visible;
            -webkit-mask-image: none;
            mask-image: none;
        }
        .use-case-detail-pane {
            padding: 2rem;
            min-height: auto;
        }
        .use-case-challenge-solution-row {
            grid-template-columns: 1fr;
        }
        .use-case-capabilities-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .use-case-item {
            padding: 0.7rem 0.85rem;
        }
        .use-case-detail-pane {
            padding: 1.25rem;
        }
        .use-case-capabilities-list li {
            font-size: 0.8rem;
        }
    }
