{"form":{"company_id":1,"slug":"oC5pJ0MkbNzFQJk9k6QL","name":"Lime Connect - Book a demo (IT)","success_message":"<header id=\"header\">\n<h4>Fatto!<\/h4>\n\n<h2>Grazie per la tua richiesta<\/h2>\n\n<p>Ti contatteremo a breve per fissare un appuntamento.<\/p>\n\n<p><br \/>\nNel frattempo, ti invitiamo a visitare il nostro sito web, dove troverai esempi e casi d\u2019uso pratici.<\/p>\n\n<p>A presto!<\/p>\n<\/header>","confirm_text":"<p>Inserendo il tuo indirizzo email, accetti di ricevere le nostre offerte di marketing in conformit\u00e0 con la nostra <a href=\"https:\/\/connect.lime-technologies.com\/it\/legal\/privacy-policy\/\" target=\"_blank\">Informativa sulla privacy<\/a>.<\/p>\n\n<p>I campi obbligatori sono contrassegnati con *<\/p>\n\n<p>Non condividere mai informazioni sensibili (numeri di carta di credito, numeri di previdenza sociale, password) tramite questo modulo. Questo sito \u00e8 protetto da reCAPTCHA e si applicano l'<a href=\"https:\/\/policies.google.com\/privacy?hl=it\" target=\"_blank\">Informativa sulla privacy<\/a> e i <a href=\"https:\/\/policies.google.com\/terms?hl=it\" target=\"_blank\">Termini di servizio<\/a> di Google.<\/p>","must_confirm":true,"bankid_ssn_field":null,"require_bankid":false,"require_bankid_unlock":false,"bankid_cert_token":null,"confirmation_content":null,"google_analytics_id":null,"heading":null,"primary_color":null,"show_progress":false,"theme":null,"locale":"en","skip_confirmation":true,"require_captcha":true,"last_viewed_at":"2026-09-10T02:44:37.885036Z","transition":null,"css":"\/* GLOBAL OVERRIDES *\/\n\n\/* the generic alert for validation *\/\n.validation-messages {\n  display: none !important;\n}\n\n\/* remove floating labels *\/\n.simpliform-content-wrapper .step.active .form-field:not([data-type=\"CheckboxField\"]) .label-wrap {\n  display: none !important;\n}\n.simpliform-content-wrapper .form-control::placeholder {\n  opacity: 1 !important;\n}\n\n\/* bring inputs closer and in relative distance *\/\n.simpliform-content-wrapper .step.active {\n\tgap: 0 .5rem;\n}\n\n\/* LAYOUT *\/\n\/* places company size and industry in one row *\/\n.two-cols {\n  grid-column: span 6 \/ span 6;\n}\n\n\/* place checkboxes in columns *\/\n.form-field[data-type=\"CheckboxField\"] .form-group {\n  display: grid;\n  grid-template-columns: repeat(2, 1fr);\n  gap: .1rem .4rem;\n  padding-top: .5rem;\n}\n\n.form-group.pull-right .checkbox label > div > p:nth-of-type(2),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(3),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(4) {\n    display: none !important;\n}\n\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] {\n    margin-top: 2rem;\n    font-size: .9rem;\n}\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] .label-wrap {\n    left: 0 !important;\n    font-size: 1.3rem !important;\n}\n\n.help-block {\n    display: block !important;\n    font-size: .8rem;\n}\n\n.pull-right {\n    margin-top: 1rem;\n    font-size: .8rem;\n}\n\n.submit-btn {\n    width: 100%;\n}","javascript":"var self = this;\n\n\/\/ TRACKING PART\nconst EMAIL_ID = 'email';\nconst SUBMIT_TEXT = 'Prenota la tua demo gratuita'\nconst PRESET_SUBMIT = 'Submit';\nconst PRESET_SELECT = '- Choose an option -';\n\nconst isTest = (formData) => {\n    const emailId = Object.keys(formData).find(id => formData[id].name === EMAIL_ID);\n    const emailField = formData[emailId];\n    return emailField ? emailField.value.includes('@lime.tech') : false;\n}\n\nvar INTERNAL_HOSTS = [\n    'connect.lime-technologies.com',\n    'app.lime-connect.com',\n    'docs.lime-connect.com',\n];\n\nthis.onBeforeSubmit(function () {\n    var firstTP = {};\n    try {\n        if (typeof window.ltGetAllSourceEntries === 'function') {\n            var allTPS = JSON.parse(window.ltGetAllSourceEntries()) || [];\n            firstTP = allTPS.filter(function (tp) {\n                return INTERNAL_HOSTS.indexOf(tp.source) === -1;\n            })[0] || allTPS[0] || {};\n        }\n    } catch (e) {}\n    self.setFieldValue(\"wp_utm_source\", firstTP.source || '');\n    self.setFieldValue(\"wp_utm_medium\", firstTP.medium || '');\n    self.setFieldValue(\"wp_utm_campaign\", firstTP.campaign || '');\n\n    var marketingConsent = '';\n    try {\n        if (typeof Cookiebot !== 'undefined' && Cookiebot.consent) {\n            marketingConsent = Cookiebot.consent.marketing ? 'yes' : 'no';\n        }\n    } catch (e) {}\n    self.setFieldValue(\"wp_marketing_consent\", marketingConsent);\n    return Promise.resolve(true);\n});\n\n\nthis.onSubmitted(function () {\n    if (isTest(self.formData)) return;\n    if (window.dataLayer) {\n        window.dataLayer.push({\n            formName: 'demo_lime_connect',\n            event: 'form_submitted'\n        });\n    }\n});\n\n\n\nthis._formsEl.addEventListener('focusin', function () {\n  window.dataLayer = window.dataLayer || [];\n  window.dataLayer.push({\n    event: 'form_start',\n    formName: 'demo_lime_connect',\n  });\n}, { once: true });\n\n\/\/ some hacky way since there is no validationError listener on the VUE form for now\nnew MutationObserver(function (muts) {\n  for (const m of muts) {\n    const wasInvalid = m.oldValue === 'true';\n    const isInvalid = m.target.getAttribute('aria-invalid') === 'true';\n    if (isInvalid && !wasInvalid) {\n        window.dataLayer = window.dataLayer || [];\n        window.dataLayer.push({\n            event: 'form_validation_error',\n            formName: 'demo_lime_connect',\n            step: self.currentStep.index,\n            field: m.target.name || m.target.id\n        });\n    }\n  }\n}).observe(this._formsEl, {\n  attributes: true,\n  attributeFilter: ['aria-invalid'],\n  attributeOldValue: true,   \/\/ <-- the key addition\n  subtree: true\n});\n\n\/\/ FROM FAST TRACK\nPromise.resolve(self._formReady).then(() => {\n    const hasPrefilledEmail = sessionStorage['lcm-demo-email'];\n    return hasPrefilledEmail ? self.setFieldValue(\"email\", hasPrefilledEmail) : undefined;\n});\n\n\n\/\/ LAYOUT\ndocument.querySelectorAll('.submit-btn span span').forEach(el => {\n  if (el.textContent.trim() === PRESET_SUBMIT) {\n    el.textContent = SUBMIT_TEXT;\n  }\n});\n\ndocument.querySelectorAll('.form-field[data-type=\"SelectField\"]').forEach(field => {\n  const label = field.querySelector('.control-label');\n  const placeholderOption = field.querySelector('select option[disabled][value=\"\"]');\n\n  if (!label || !placeholderOption) return;\n\n  \/\/ Clone the label so we can strip the \"*\" required marker without touching the real DOM\n  const clone = label.cloneNode(true);\n  const requiredMarker = clone.querySelector('.is-required');\n  if (requiredMarker) requiredMarker.remove();\n\n  const labelText = clone.textContent.trim();\n\n  if (placeholderOption.textContent.trim() === PRESET_SELECT) {\n    placeholderOption.textContent = labelText;\n  }\n});","lime_sign_providers":null,"disable_search_indexing":0,"bankid_authentication_ssn_field":null,"endpoint":"https:\/\/internal.lime-forms.com\/forms\/oC5pJ0MkbNzFQJk9k6QL","logo_url":"","logo_link":"","base_url":"https:\/\/internal.lime-forms.com","bankid_api_url":"https:\/\/bankid.lime-technologies.com\/api\/v2\/","lime_signatures_base_url":null,"simpliform_version":"2.149.1","csrf_token":"vT8YjH9nV3i00zSuwv3piJgd9UqDtA65kfbcZZ4x","captcha_available":true,"esignatures_provider":null,"google_maps_identifier":"","google_recaptcha_site_key":"6LdXOY0UAAAAAKrnZHZAFpQ-oy2SoNG76r3eDV5L","default_date_format":"yyyy-mm-dd","modules":[{"name":"Enter your information","heading":"Enter your information","description":null,"next_module":"GO_TO_CONFIRMATION","uuid":"08ae69ee-afef-457a-8f1e-ca72cf466a86","parts":[{"id":7625,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_nonce","value":null,"uuid":"7d5e646d-6b7a-4232-8c54-32647abd31ee","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7626,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_current_page","value":null,"uuid":"5d3f7446-ade5-4683-bad8-bfacaaa43f2d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7627,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_referrer","value":null,"uuid":"3f58cf93-da2c-4659-836c-7cbd0b6452db","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7628,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_source","value":null,"uuid":"ec483097-91ae-4548-aacb-e8370f2f9d89","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7629,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_tp","value":null,"uuid":"3fb5b4bb-997a-4894-9880-d45ff03ada44","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7630,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_qs","value":null,"uuid":"193f0ddf-0d01-47b6-8938-096da60acb8d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7631,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_source","value":null,"uuid":"780fa6eb-be84-44da-bbfa-ad103ac43d36","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7632,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_medium","value":null,"uuid":"f0ff6a0c-5f9e-4670-bea0-a89d7eb2e7c2","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7633,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_campaign","value":null,"uuid":"27be7fdd-7889-44f4-afa7-530f95a5839b","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7634,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_marketing_consent","value":null,"uuid":"0d6696d7-537e-4dc9-9de4-ea8b536370c4","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7635,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Il tuo nome","name":"name","placeholder":"Il tuo nome","uuid":"e1d5fbe0-c35d-4f15-b30c-fd69c47cfce5","required":true,"helptext":null,"disabled":false,"show_in_confirmation":false,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"name","regex":null},"children":[]},{"id":7636,"parent_module_part_id":null,"model_type":"EmailField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"La tua email aziendale","name":"email","placeholder":"La tua email aziendale","uuid":"c1bac1a9-f31d-46c5-847b-9ab5678dc8f3","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"hide_placeholder":0,"autocomplete":"email"},"children":[]},{"id":7637,"parent_module_part_id":null,"model_type":"TextField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Il tuo numero di telefono","name":"phone","placeholder":"Il tuo numero di telefono","uuid":"b4cba7e4-4307-4c3b-8bb8-591cc3df3eb4","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"tel","regex":null},"children":[]},{"id":7638,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Nome dell'azienda","name":"company","placeholder":"Nome dell'azienda","uuid":"216e49aa-2e38-4302-9628-ff782c8e16f7","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"organization","regex":null},"children":[]},{"id":7639,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Dimensioni dell'azienda","name":"company_size","uuid":"d6681d3e-2a23-4b2b-9072-5f356d159690","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"1-9","value":"1-9"},{"text":"10-99","value":"10-99"},{"text":"100-499","value":"100-499"},{"text":"500-4999","value":"500-4999"},{"text":"5000+","value":"5000+"}]},"children":[]},{"id":7640,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"In quale settore lavori?","name":"industry","uuid":"2156e028-08a6-43e6-b74b-360a2c5f507c","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Automotive","value":"Automotive"},{"text":"Istruzione","value":"Education"},{"text":"Energia","value":"Energy"},{"text":"Ingegneria","value":"Engineering"},{"text":"Servizi finanziari","value":"Financial Services"},{"text":"Pubblica amministrazione & non profit","value":"Government & Non-Profit"},{"text":"Sanit\u00e0","value":"Healthcare"},{"text":"Servizi assicurativi","value":"Insurance Services"},{"text":"Servizi IT & consulenza","value":"IT-Services & Consultancy"},{"text":"Produzione","value":"Manufacturing"},{"text":"Marketing & pubblicit\u00e0","value":"Marketing & Advertising"},{"text":"Media & telecomunicazioni","value":"Media & Telecommunications"},{"text":"Altro","value":"Other"},{"text":"Servizi professionali & di supporto alle imprese","value":"Professional & Business Support Services"},{"text":"Immobiliare","value":"Real Estate"},{"text":"Vendita al dettaglio","value":"Retail"},{"text":"Software","value":"Software"},{"text":"Trasporti & logistica","value":"Transport & Logistics"},{"text":"Viaggi, ospitalit\u00e0 & turismo","value":"Travel, Hospitality & Tourism"}]},"children":[]},{"id":7641,"parent_module_part_id":null,"model_type":"CheckboxField","classes":null,"model":{"id":270,"show":true,"has_input":true,"label":"Su quali soluzioni desideri saperne di pi\u00f9?","name":"solutions_learn_more","uuid":"eb88af5f-c601-4762-83c4-91c11a826291","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"options":[{"id":1570,"text":"Connect AI (Agent & Copilot)","value":"Connect AI (Agent & Copilot)","is_initial_value":false},{"id":1571,"text":"Canali di messaggistica","value":"Messaging Channels","is_initial_value":false},{"id":1572,"text":"WhatsApp Business API","value":"WhatsApp Business API","is_initial_value":false},{"id":1573,"text":"Live chat del sito web","value":"Website Live-Chat","is_initial_value":false},{"id":1574,"text":"Campagne WhatsApp","value":"WhatsApp Campaigns","is_initial_value":false},{"id":1575,"text":"Workflows","value":"Workflows","is_initial_value":false}]},"children":[]},{"id":7642,"parent_module_part_id":null,"model_type":"SelectField","classes":null,"model":{"show":true,"has_input":true,"label":"Come ci hai conosciuto?","name":"how_did_you_hear_about_us","uuid":"0a4a7d7d-bcca-41cd-aeb6-f7ef7db4dd8e","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Motore di ricerca (Google, Bing, ecc.)","value":"Google (Search)"},{"text":"Ricerca IA (ChatGPT, Claude, Gemini, ecc.)","value":"AI Search (e.g. ChatGPT, Perplexity, Gemini)"},{"text":"Pubblicit\u00e0 (Google Ads, LinkedIn Ads, Meta Ads)","value":"Advertising (e.g. Google Ads, LinkedIn Ads)"},{"text":"Social media (LinkedIn, Instagram)","value":"Social Media (e.g. LinkedIn, Instagram, Facebook)"},{"text":"Raccomandazione personale (collega, conoscente, agenzia)","value":"Personal Recommendation (colleague, friend)"},{"text":"Piattaforma di recensioni (OMR Reviews, Capterra, ecc.)","value":"Review Platform (e.g. OMR Reviews, Capterra, G2)"},{"text":"Evento (fiera, webinar)","value":"Event (trade fair, webinar)"},{"text":"Gi\u00e0 conosciuto (utilizzo precedente)","value":"Already Familiar (previous usage or former employer)"},{"text":"Dipendente Lime Connect","value":"Lime Connect Employee (Outbound)"},{"text":"Altro","value":"Other"}]},"children":[]},{"id":7643,"parent_module_part_id":null,"model_type":"TextAreaField","classes":null,"model":{"show":true,"has_input":true,"label":"Informazioni aggiuntive (facoltativo)","name":"additional_information","placeholder":"Informazioni aggiuntive (facoltativo)","uuid":"cfac7982-eec9-4a86-a922-e7f6ba8f4b0a","required":false,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0},"children":[]}],"conditional_groups":[]}]}}