            .ls-pricing-table {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
                margin: 30px 0;
            }
            .ls-pricing-card {
                background: #fff;
                border: 2px solid #e0e0e0;
                border-radius: 12px;
                padding: 30px;
                text-align: center;
                min-width: 280px;
                max-width: 320px;
                flex: 1;
                transition: transform 0.2s, box-shadow 0.2s;
            }
            .ls-pricing-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            }
            .ls-pricing-card.featured {
                border-color: #0073aa;
                position: relative;
            }
            .ls-pricing-name {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #1d2327;
            }
            .ls-pricing-description {
                color: #646970;
                margin-bottom: 20px;
                min-height: 40px;
            }
            .ls-pricing-price {
                font-size: 48px;
                font-weight: 700;
                color: #0073aa;
                margin-bottom: 5px;
            }
            .ls-pricing-price sup {
                font-size: 20px;
                position: relative;
                top: -15px;
            }
            .ls-pricing-cycle {
                color: #646970;
                margin-bottom: 25px;
            }
            .ls-pricing-features {
                list-style: none;
                padding: 0;
                margin: 0 0 25px;
                text-align: left;
            }
            .ls-pricing-features li {
                padding: 8px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            .ls-pricing-features li:before {
                content: "✓";
                color: #28a745;
                margin-right: 10px;
                font-weight: bold;
            }
            .ls-pricing-button {
                display: block;
                padding: 14px 28px;
                background: #0073aa;
                color: #fff !important;
                text-decoration: none !important;
                border-radius: 6px;
                font-weight: 600;
                font-size: 16px;
                transition: background 0.2s;
            }
            .ls-pricing-button:hover {
                background: #005a87;
            }
-e 
/* ── Success Page ── */

            .ls-success {
                display: flex;
                justify-content: center;
                padding: 60px 20px 80px;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
                -webkit-font-smoothing: antialiased;
            }

            .ls-success-card {
                background: #fff;
                max-width: 520px;
                width: 100%;
                border-radius: 20px;
                padding: 52px 44px 44px;
                text-align: center;
                box-shadow:
                    0 1px 3px rgba(0, 0, 0, 0.04),
                    0 6px 16px rgba(0, 0, 0, 0.06),
                    0 24px 60px rgba(0, 0, 0, 0.06);
            }

            /* ── Animated Checkmark ── */
            .ls-success-check {
                width: 72px;
                height: 72px;
                border-radius: 50%;
                background: #111;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 28px;
                animation: ls-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            }

            .ls-success-check svg {
                width: 32px;
                height: 32px;
                stroke: #fff;
                stroke-dasharray: 30;
                stroke-dashoffset: 30;
                animation: ls-draw 0.5s 0.4s ease forwards;
            }

            @keyframes ls-pop {
                0% { transform: scale(0); opacity: 0; }
                100% { transform: scale(1); opacity: 1; }
            }

            @keyframes ls-draw {
                to { stroke-dashoffset: 0; }
            }

            /* ── Typography ── */
            .ls-success-heading {
                font-size: 26px;
                font-weight: 700;
                color: #111;
                margin: 0 0 10px;
                letter-spacing: -0.02em;
                line-height: 1.2;
            }

            .ls-success-sub {
                font-size: 15px;
                color: #6b7280;
                margin: 0 0 4px;
                line-height: 1.6;
            }

            /* ── Divider ── */
            .ls-success-divider {
                height: 1px;
                background: #e5e7eb;
                margin: 28px 0;
            }

            /* ── Steps ── */
            .ls-success-steps {
                text-align: left;
            }

            .ls-success-step {
                display: flex;
                gap: 16px;
                align-items: flex-start;
                padding: 14px 0;
            }

            .ls-success-step + .ls-success-step {
                border-top: 1px solid #f3f4f6;
            }

            .ls-success-num {
                flex-shrink: 0;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background: #f9fafb;
                border: 1.5px solid #e5e7eb;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: 700;
                color: #374151;
                margin-top: 1px;
            }

            .ls-success-step strong {
                display: block;
                font-size: 14px;
                font-weight: 600;
                color: #111;
                margin-bottom: 2px;
            }

            .ls-success-step p {
                font-size: 13px;
                color: #9ca3af;
                margin: 0;
                line-height: 1.5;
            }

            /* ── Support ── */
            .ls-success-support {
                font-size: 13px;
                color: #9ca3af;
                margin: 0;
                line-height: 1.6;
            }

            .ls-success-support a {
                color: #111;
                text-decoration: underline;
                text-decoration-color: #d1d5db;
                text-underline-offset: 2px;
                transition: text-decoration-color 0.2s;
            }

            .ls-success-support a:hover {
                text-decoration-color: #111;
            }

            /* ── Responsive ── */
            @media (max-width: 580px) {
                .ls-success { padding: 32px 16px 48px; }
                .ls-success-card { padding: 40px 28px 32px; border-radius: 16px; }
                .ls-success-heading { font-size: 22px; }
                .ls-success-check { width: 60px; height: 60px; margin-bottom: 22px; }
                .ls-success-check svg { width: 26px; height: 26px; }
            }
