
      /* Overlay */
      .knodics-popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        text-shadow: 1px 1px 1px #000;
      }

      /* Card */
      .knodics-popup-card {
        background: linear-gradient(135deg, #1e40af, #457ddf);
        color: #ffffff;
        max-width: 670px;
        width: 92%;
        padding: 40px 35px;
        border-radius: 22px;
        text-align: center;
        position: relative;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        animation: popupFade 0.4s ease;
      }

      /* Close */
      .popup-close {
        position: absolute;
        top: 14px;
        right: 18px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 30px;
        cursor: pointer;
      }

      /* Text */
      .popup-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .popup-subtitle span {
        color: #ffb800;
        font-weight: 700;
        text-shadow: 1px 1px 1px #000;
      }

      .popup-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 22px;
      }

      .popup-title span {
        color: #ffb000;
        text-shadow: 1px 1px 1px #000;
      }

      /* Features */
      .popup-features {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        text-align: left;
      }

      .popup-features li {
        margin-bottom: 10px;
        font-size: 16px;
      }

      /* CTA */
      .call-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ffb000, #f5a737);
        color: var(--primary-blue);
        padding: 14px 26px;
        border-radius: 40px;
        font-size: 24px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(255, 176, 0, 0.5);
        text-transform: uppercase;
      }

      .call-btn:hover {
        transform: scale(1.05);
      }

      .cta-note {
        margin-top: 10px;
        font-size: 14px;
        opacity: 0.9;
      }

      /* Animation */
      @keyframes popupFade {
        from {
          transform: scale(0.85);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }

