
    .demo-popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.72);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 20px;
    }

    .demo-popup-card {
        background: #ffffff;
        max-width: 520px;
        width: 100%;
        border-radius: 22px;
        padding: 34px 28px;
        position: relative;
        text-align: center;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
        animation: popupFadeIn 0.35s ease;
    }

    .demo-popup-close {
        position: absolute;
        top: 14px;
        right: 18px;
        border: none;
        background: transparent;
        font-size: 30px;
        cursor: pointer;
        color: #555;
    }

    .demo-popup-badge {
        display: inline-block;
        background: linear-gradient(135deg, #002F5B, #0A5EA8, #3FA7D6, #A7D8F5);
        color: #fff;
        padding: 7px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: 0.4px;
    }

    .demo-popup-card h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
        color: #111;
        font-weight: 800;
    }

    .demo-popup-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 18px;
    }

    .demo-popup-list {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
        text-align: left;
    }

    .demo-popup-list li {
        background: #f7f7f7;
        margin-bottom: 9px;
        padding: 11px 14px;
        border-radius: 12px;
        font-size: 15px;
        color: #222;
		border-left: 6px solid #e3c53d;
    }

    .demo-popup-cta {
        display: block;
        width: 100%;
        background: linear-gradient(135deg, #002F5B, #0A5EA8, #3FA7D6, #A7D8F5);
        color: #fff;
        text-decoration: none;
        padding: 15px 20px;
        border-radius: 14px;
        font-weight: 800;
        font-size: 16px;
        transition: 0.25s ease;
    }

    .demo-popup-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .demo-popup-secondary {
        margin-top: 14px;
        background: transparent;
        border: none;
        color: #666;
        font-size: 14px;
        cursor: pointer;
        text-decoration: underline;
    }

    @keyframes popupFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.96);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (max-width: 600px) {
        .demo-popup-card {
            padding: 30px 22px;
        }

        .demo-popup-card h2 {
            font-size: 24px;
        }
    }
