זה שירות תיאום וייעוץ תהליכי - לא ייעוץ משפטי ולא הגשת בקשות תושבות בעצמנו. המטרה: שלא תקנו נכס שלא עומד בסף, ושתיק המסמכים יהיה מוכן לפני שמגישים. אזרחי ישראל הם אזרחי מדינה שלישית; הדרישות האדמיניסטרטיביות דורשות תכנון מראש.
למי זה מתאים
משפחות שמתכננות מעבר מלא או חלקי לקפריסין
גמלאים ובעלי הכנסה מחו"ל שמחפשים בסיס יציב באיחוד האירופי
עצמאים ועובדים מרחוק שצריכים מסגרת שהייה מעבר לתיירות
משקיעים שרוצים אופציית תושבות עתידית על נכס מתאים
איך זה עובד
הערכת התאמה ראשונית לדרישות תוכנית התושבות
יישור קו בין חיפוש הנכס לסף ההשקעה ולסוג הנכס הנדרש
צ׳ק־ליסט מסמכים, תרגומים ואפוסטיל - עם לוחות זמנים
מסירה לעורך דין להגירה מורשה והמשך מעקב תיאום
מה אתם מקבלים
נכס שלא שובר את המסלול
שורטליסט שמסונן גם לפי קריטריוני תושבות, לא רק לפי טעם אישי.
פחות עיכובים אדמיניסטרטיביים
מסמכים בפורמט הנכון, בזמן הנכון - לפני שהבקשה נתקעת.
עצמאות לאורך כל הדרך
Cyprus Gate מייצג רק את הקונה. אין לנו מלאי של נכסים או פרויקטים של יזמים שאנחנו חייבים למכור, אין עמלת מוכר ואין עמלות הפניה מבעלי מקצוע.
אתם משלמים לנו בלבד, לפי היקף העבודה שסוכם מראש ובכתב. בלי עמלות נסתרות ובלי אינטרסים מאחורי הקלעים, העלות הכוללת עבורכם נמוכה משמעותית.
אנחנו לא צריכים למכור לכם נכס. אנחנו צריכים למצוא לכם את הנכס הנכון.
/* Cyprus Gate: load the Voiceflow widget on demand, not on every page view.
*
* Replaces the body of the existing "Simple Custom CSS and JS" snippet that
* contains the Voiceflow widget-next bundle URL.
*
* Before: 713 KB transferred and 1.9 MB decoded on every page, for every
* visitor, whether or not anyone opens the chat.
* After: nothing is fetched from Voiceflow until someone clicks.
*
* The three existing entry points are preserved:
* - the floating launcher (#cg-chat-launcher, see 2- and 3- in this folder)
* - the #talktoagent button
* - empty buttons and placeholder links, which send the page title
*/
(function () {
var VF_PROJECT = '69cabed422b2cc69776855ae';
var loading = null;
// Fetches and initialises the widget once. Returns a promise that settles
// when chat.open() is actually callable.
function loadVoiceflow() {
if (loading) return loading;
loading = new Promise(function (resolve, reject) {
var v = document.createElement('script');
v.type = 'text/javascript';
v.async = true;
v.onload = function () {
window.voiceflow.chat.load({
verify: { projectID: VF_PROJECT },
url: 'https://general-runtime.voiceflow.com',
voice: { url: 'https://runtime-api.voiceflow.com' },
launch: {
event: {
type: 'launch',
payload: {
user_name: (window.currentUser && window.currentUser.name)
? window.currentUser.name : '',
user_email: (window.currentUser && window.currentUser.email)
? window.currentUser.email : ''
}
}
}
});
// chat.load() settles asynchronously, so poll until open() exists
// rather than assuming it is ready the instant the script runs.
var tries = 0;
(function ready() {
if (window.voiceflow && window.voiceflow.chat &&
typeof window.voiceflow.chat.open === 'function') {
return resolve();
}
if (++tries > 100) {
return reject(new Error('Voiceflow did not initialise'));
}
setTimeout(ready, 100);
})();
};
v.onerror = function () {
loading = null; // allow a retry on the next click
reject(new Error('Voiceflow bundle failed to load'));
};
v.src = 'https://cdn.voiceflow.com/widget-next/bundle.mjs';
document.head.appendChild(v);
});
return loading;
}
// Opens the chat, loading the bundle first if this is the first click.
// `message` is sent into the conversation once it is open.
function openChat(message) {
var launcher = document.getElementById('cg-chat-launcher');
if (launcher) launcher.setAttribute('data-loading', 'true');
loadVoiceflow().then(function () {
if (launcher) launcher.remove();
window.voiceflow.chat.open();
if (message) {
setTimeout(function () {
window.voiceflow.chat.interact({ type: 'text', payload: message });
}, 1500);
}
}).catch(function () {
// Leave the launcher in place so the visitor can try again.
if (launcher) launcher.removeAttribute('data-loading');
});
}
window.cgOpenChat = openChat;
document.addEventListener('click', function (e) {
if (e.target.closest('#cg-chat-launcher') || e.target.closest('#talktoagent')) {
e.preventDefault();
e.stopPropagation();
return openChat();
}
// Same selector as the old third snippet: empty buttons and placeholder
// links open the chat and seed it with the page title.
var el = e.target.closest(
'button:not([type="submit"]):not([id]):not([class*="cky"]), ' +
'a[href="#"], a:not([href]), a[href=""]'
);
if (el && !el.closest('form')) {
e.preventDefault();
openChat(document.title);
}
}, true);
})();