Numbers
Opdag, hvordan Zenegy Numbers gør bogføring ubesværet med avancerede funktioner
Regnskabsprogram, Lønsystem og Udgiftshåndtering – Zenegy Numbers er din “alt-i-et” finansielle suite.
Bogføringssystemets registreringsnummer: fob001731
* { box-sizing: border-box; } .numbers-prisberegner-root { font-family: ‘roboto’, Arial, sans-serif; background: #f7f9fc; margin: 0; padding: 2rem; display: flex; justify-content: center; align-items: flex-start; } .yes-no-buttons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; } .choice-btn { padding: 10px 20px; border-radius: 30px; border: 2px solid #3ba0dd; background: white; color: #3ba0dd; font-weight: bold; font-size: 1rem; cursor: pointer; transition: background 0.2s, color 0.2s; } .choice-btn.active { background: #3ba0dd; color: white; } .choice-btn:hover { background: #3ba0dd; color: white; } #prevBtn { margin-right: 10px; border: 1px solid #a9b0bf; background: transparent; color: #a9b0bf; } #nextBtn.with-margin { margin-left: 10px; } #invoices, #cardUses { accent-color: #3ba0dd; } #stepContainer { text-align: center; } .contactdetails { display: flex; flex-direction: row; width: 100%; justify-content: center; align-items: center; gap: 1rem; } .contactdetails > div { display: flex; flex-direction: column; gap: 1rem; width: 50%; } .contactdetails > div input { width: 200px; height: 40px; padding: 0.5rem; font-size: 1rem; } #firstName::placeholder, #lastName::placeholder, #email::placeholder, #phone::placeholder { color: #a9b0bf; font-weight: 500; } #countryCode { margin-bottom: 15px; padding: 0px; } #firstName, #lastName, #email { width: 100%; margin: 0; margin-bottom: 15px; height: 40px; color: #aeb7c9; } #phone { width: 70%; margin: 0; margin-left: 15px; margin-bottom: 15px; height: 40px; color: #aeb7c9; } #phoneContainer { display: flex; } .container { max-width: 600px; width: 100%; background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); } .numbers-prisberegner-root h2 { margin: 0 0 0.5rem 0; font-size: 28px; color: #1d2951; font-weight: 700; } .numbers-prisberegner-root p { color: #a9b0bf; margin-bottom: 2rem; margin-top: 6px; font-weight: 500; font-size: 14px; } .progress { color: #3ba0dd; font-weight: 500; font-size: 0.9rem; margin-bottom: 1rem; } select, input[type=”text”], input[type=”email”], input[type=”tel”] { width: 30%; padding: 0.4em 0.8em; margin: 0 auto; border-radius: 32px; border: 1px solid #d1d5db; font-size: 1rem; border: 2px solid #3ba0dd; display: flex; color: #3ba0dd; font-weight: 600; } input[type=”range”] { width: 100%; margin-bottom: 0.5rem; } .range-value { font-weight: bold; text-align: center; color: #111827; margin-bottom: 1.5rem; } .toggle-switch { display: flex; justify-content: center; margin-bottom: 2rem; } .toggle-switch input[type=”checkbox”] { appearance: none; width: 48px; height: 28px; background-color: #d1d5db; border-radius: 999px; position: relative; outline: none; cursor: pointer; transition: background-color 0.2s; } .toggle-switch input[type=”checkbox”]::before { content: ”; position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; top: 4px; left: 4px; transition: transform 0.2s ease; } .toggle-switch input[type=”checkbox”]:checked { background-color: #3ba0dd; } .toggle-switch input[type=”checkbox”]:checked::before { transform: translateX(20px); } .navigation { display: flex; justify-content: center; align-items: center; gap: 10px; } #prevBtn, #nextBtn { margin-top: 20px; min-width: 120px; } button { padding: 0.9rem 1.5rem; border: none; border-radius: 30px; background: black; color: white; font-size: 1rem; cursor: pointer; font-weight: bold; transition: background 0.2s ease; } button:hover { background: #222; } button[disabled] { background: #ccc; cursor: not-allowed; } .result-line { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 1rem; color: #111827; } .result-line span:nth-of-type(1) { width: 350px; text-align: left; color: #867676; } .result-line span:nth-of-type(2) { font-weight: 600; } .result-highlight { text-align: center; margin-top: 2rem; } .result-highlight span { color: #3ba0dd; font-size: 1.6rem; font-weight: bold; } label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: #4b5563; text-align: left; } label input[type=”checkbox”] { transform: scale(1.2); } @media (max-width: 700px) { .contactdetails{ flex-direction: column; } .contactdetails > div { width: 100%; } select, input[type=”text”], input[type=”email”], input[type=”tel”] { width: 80%; } .result-line span:nth-of-type(1){ width:225px; } .result-line span:nth-of-type(2){ width:auto; text-align: right; } }
let currentStep = 0; const answers = { businessType: “”, invoices: 0, cardUses: 0, wantsAutomation: null, firstName: “”, lastName: “”, email: “”, phone: “”, acceptedTerms: false }; const businessTypes = [ “Auto & Leasing”, “Administrative tjenesteydelser og hjælpetjenester”, “Konstruktion og ingeniør”, “Byg og håndværk”, “Detailhandel og butik”, “El- og vandforsyning”, “Engros virksomhed”, “Hotel og restauration”, “Information og kommunikation”, “IT og software”, “Konsulentydelser”, “Kultur og sport”, “Køb, salg og leje af ejendomme”, “Landbrug og fiskeri”, “Frisør, massør og andre liberale fag”, “Medicin, sundhed og læger, inkl. veterinær”, “Offentlig forvaltning og forsvar”, “Pengeinstitut- og finansvirksomheder”, “Produktionsvirksomhed”, “Råstofindvinding”, “Reklame og marketing”, “Revision eller eksternt bogholderi”, “Transport og godshåndtering”, “Undervisning”, “Værksteder og mekanikere”, “Andet, eller findes ikke på listen” ]; const steps = [ { title: “Hvilken slags virksomhed har du?”, subtitle: “(Eksempel: café, frisør, håndværker, konsulent osv.)”, render: () => ` Vælg fra listen ${businessTypes.map(b => `${b}`).join(“”)} ` }, { title: “Hvor mange regninger (fakturaer) modtager og betaler du om måneden?”, subtitle: “(Et gæt på hvor mange leverandørfakturaer du normalt håndterer hver måned)”, render: () => `
` }, { title: “Hvor mange gange bliver firmakortet brugt om måneden?”, subtitle: “(Et gæt på hvor tit du eller dine ansatte bruger kortet til køb)”, render: () => `
` }, { title: “Vil du gerne have et automatiseret godkendelsesflow?”, subtitle: “(Så slipper du for at godkende udgifter og bilag manuelt hver gang)”, render: () => `
` }, { title: “Indtast dit navn og detaljer”, subtitle: “Du får prisen på skærmen i næste trin.”, render: () => `