<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Thu Sep 24 2026 07:46:08 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="paypercut.com" data-wf-page="69af0ee2fad991071092e7c0" data-wf-site="69147d639d7c92c83d55ca43" lang="en"><head><meta charset="utf-8"><link href="https://cdn.prod.website-files.com" rel="preconnect" crossorigin="anonymous"><title>Payment Solutions for Startups | Paypercut</title><meta content="Simplify payments for startups with Paypercut. Use links, QR codes, and online checkout to accept payments anywhere, instantly." name="description"><meta content="Payment Solutions for Startups | Paypercut" property="og:title"><meta content="Simplify payments for startups with Paypercut. Use links, QR codes, and online checkout to accept payments anywhere, instantly." property="og:description"><meta content="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69f496db751cc21aaa95dc8a_paypercut%20graph%20image.avif" property="og:image"><meta content="Payment Solutions for Startups | Paypercut" name="twitter:title"><meta content="Simplify payments for startups with Paypercut. Use links, QR codes, and online checkout to accept payments anywhere, instantly." name="twitter:description"><meta property="og:type" content="website"><meta content="summary_large_image" name="twitter:card"><meta content="width=device-width, initial-scale=1" name="viewport"><meta content="Webflow" name="generator"><link href="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/css/paypercut.webflow.shared.be008c554.min.css" rel="stylesheet" type="text/css" integrity="sha384-vgCMVUb5pq5a/8di1FOrzZCdi9O1uREqMGYjZxZxC/dJOrrkbpYx35Y09P++9rnt" crossorigin="anonymous"><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6958f9869f54dce2f2e366ab_favicon%2032%D1%8532.png" rel="shortcut icon" type="image/x-icon"><link href="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/695908ef965477477382bd26_logo-256x256.png" rel="apple-touch-icon"><link href="https://paypercut.com/paypercut-for-startups" rel="canonical"><script type="application/ld+json">{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [{
    "@type": "ListItem",
    "position": 1,
    "name": "Paypercut | One Checkout for Online Payments Across Europe",
    "item": "https://paypercut.com/"
  },{
    "@type": "ListItem",
    "position": 2,
    "name": "Payment Solutions for Startups | Paypercut",
    "item": "https://paypercut.com/paypercut-for-startups"
  }]
}</script><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
                                                      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
                            })(window,document,'script','dataLayer','GTM-NCRZH88Z');</script>
<!-- End Google Tag Manager -->
<link rel="preload" href="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691481f4293cfde0adcdc397_Geist%5Bwght%5D.woff2" as="font" type="font/woff2" crossorigin="">


<script>
  (function () {

    const langByCountry = {
      BG: 'bg',
      PL: 'pl',
      RO: 'ro',
      HU: 'hu',
      GR: 'el'
    };

    const supportedLangs = ['bg', 'el', 'hu', 'pl', 'ro' , 'gb'];

    const currentPath = window.location.pathname.toLowerCase();
    const firstSegment = currentPath.split('/').filter(Boolean)[0];

    const manualLangSelected =
          sessionStorage.getItem('manualLangSelected') === '1';

    if (
      !supportedLangs.includes(firstSegment) &&
      !manualLangSelected
    ) {
      fetch('https://ipapi.co/json/')
        .then(function (res) {
        return res.json();
      })
        .then(function (data) {
        const lang = langByCountry[data.country_code];

        if (lang) {
          window.location.replace('/' + lang + window.location.pathname);
        }
      })
        .catch(function () {});
    }

    function getCurrentLang() {
      const firstSegment = window.location.pathname
      .toLowerCase()
      .split('/')
      .filter(Boolean)[0];

      if (supportedLangs.includes(firstSegment)) {
        return firstSegment;
      }

      return 'en';
    }

    function updateHeaderDropdown(lang) {
      document.querySelectorAll('.w-dropdown').forEach(dropdown => {
        const label = dropdown.querySelector(
          '.dropdown-localization .localization div:last-of-type'
        );

        if (label) {
          label.textContent = lang === 'en' ? 'EU' : lang.toUpperCase();
        }

        dropdown.querySelectorAll(
          '.localization-dropdown a[data-lang]'
        ).forEach(link => {
          link.classList.toggle(
            'w--current',
            link.getAttribute('data-lang') === lang
          );
        });
      });
    }

    function updateFooterDropdown(lang) {
      document.querySelectorAll('.lang-dropdown-js').forEach(dropdown => {
        const links = dropdown.querySelectorAll(
          '.lang-dropdown-options[data-lang]'
        );

        const selectedLabel = dropdown.querySelector(
          '.country-selected-2 .country-label div'
        );

        const selectedFlag = dropdown.querySelector(
          '.country-selected-2 .country-flag img'
        );

        if (!links.length || !selectedLabel) return;

        links.forEach(link => {
          link.classList.toggle(
            'w--current',
            link.getAttribute('data-lang') === lang
          );
        });

        const active = dropdown.querySelector(
          '.lang-dropdown-options.w--current'
        );

        if (!active) return;

        const text = active.querySelector('.country-label div');
        const img = active.querySelector('.country-flag img');

        if (text) {
          selectedLabel.innerHTML =
            '<strong class="bold-text-222">' +
            text.textContent.trim() +
            '</strong>';
        }

        if (img && selectedFlag) {
          selectedFlag.src = img.src;
          selectedFlag.alt = img.alt || text.textContent.trim();
        }
      });
    }

    function getCleanPath() {
      const pathParts = window.location.pathname
      .split('/')
      .filter(Boolean);

      if (supportedLangs.includes(pathParts[0])) {
        pathParts.shift();
      }

      return pathParts.length ? '/' + pathParts.join('/') : '/';
    }

    function initClicks() {
      document.querySelectorAll('[data-lang]').forEach(link => {
        link.addEventListener('click', function (e) {
          e.preventDefault();

          const lang = link.getAttribute('data-lang');
          if (!lang) return;

          sessionStorage.setItem('manualLangSelected', '1');

          updateAll(lang);

          const cleanPath = getCleanPath();

          if (lang === 'en') {
            window.location.href = cleanPath;
          } else {
            window.location.href = '/' + lang + cleanPath;
          }
        });
      });
    }

    function updateAll(forceLang) {
      const lang = forceLang || getCurrentLang();

      updateHeaderDropdown(lang);
      updateFooterDropdown(lang);
    }

    document.addEventListener('DOMContentLoaded', function () {
      initClicks();

      updateAll();
      setTimeout(updateAll, 300);
      setTimeout(updateAll, 800);
      setTimeout(updateAll, 1500);
    });

  })();
</script>
<script>
  (function () {
    const path = window.location.pathname;
    const isTranslatedPage =
          path !== "/" &&
          path.split("/").filter(Boolean).length > 0;
    if (!isTranslatedPage) return;
    function fixImages() {
      document.querySelectorAll("img").forEach((img) => {
        if (
          img.src.includes("cdn.prod.website-files.com")
        ) {
          img.removeAttribute("srcset");
        }
      });
    }
    fixImages();
    new MutationObserver(fixImages).observe(document.documentElement, {
      childList: true,
      subtree: true
    });
  })();
</script>
<style>
  @media (min-width: 990px) and (max-width: 1066px) {
    .contact {
      display: none;
    }
  }
  .position-title,
  .icon-faq-header{
    user-select: none;
  }
  .wrapper-pricing-text-country {
    transition: opacity 0.25s ease;
  }
  .wrapper-pricing-text-country.is-fading {
    opacity: 0;
  }
  .country-dropdown {
    user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none;    
  }
  .country-selected .country-label {
    font-weight: 600!important;
  }

  .country-dropdown.is-open .country-options {
    display: block;
  }
  .country-arrow svg {
    transition: transform 0.2s ease;
  }
  .country-dropdown.is-open .country-arrow svg {
    transform: rotate(-180deg);
  }
  .country-dropdown.is-open .country-selected {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
  } 
  .w-slider-nav-invert > div.w-active {
    background-color: #021a1b!important;
    border-color:#021a1b!important;
  }
  .w-slider-nav-invert > div {
    background-color: transparent!important;
    border:1px solid #021a1b!important;
  }

  }
  .lang-dropdown-js.is-open .country-selected-2 {
    border-top-left-radius: 0px!important;
    border-top-right-radius: 0px!important;
  }
  .lang-dropdown.is-open .lang-dropdown-wrapper {
    display: block!important;
  }
  @media screen and (min-width: 991px) and (max-width: 1066px) {
    .dropdown-list-lang {
      left: -61px!important;
    }
  }

  .teaser-grid .p-teaser-img-wrap .teaser-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 400ms ease, visibility 0s linear 400ms;
    will-change: opacity;
  }

  .teaser-grid .p-teaser-img-wrap .teaser-img.is-active{
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms ease, visibility 0s;
  }

  .slider-controls,
  .slider-controls * {
    user-select: none;
  }

  .div-block-359 img {
    user-select: none;
    pointer-events: none;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6e6e6;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
  }
  .slider-dot.active {
    background: #000;
    transform: scale(1.2);
  }
  @media screen and (min-width: 991px) and (max-width: 1007px) {
    .nav-left-section {
      grid-column-gap: 24px;
    }
  }
  .weglot-container{
    display: none!important;
  }

  html[lang="gb"] .is--pricing-add-text {
    display: none;
  }

  html[lang="pl"] .blik-logo__wrapper,
  html[lang="pl"] .blik-pricing__wrapper {
    display: flex;
  }

  html[lang="pl"] .pl__retail-descr,
  html[lang="pl"] .pl__delivery-descr,
  html[lang="pl"] .pl__startups-descr {
    display: block;
  }
</style>

<!-- Start cookieyes banner --> <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/9005490299fde1f4ecb3cfda/script.js"></script> <!-- End cookieyes banner -->

<!-- Meta Pixel Code -->
<script>
  !function(f,b,e,v,n,t,s)
  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
    n.callMethod.apply(n,arguments):n.queue.push(arguments)};
   if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
   n.queue=[];t=b.createElement(e);t.async=!0;
   t.src=v;s=b.getElementsByTagName(e)[0];
   s.parentNode.insertBefore(t,s)}(window, document,'script',
                                   'https://connect.facebook.net/en_US/fbevents.js');
  fbq('init', '1464020512004077');
  fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1464020512004077&ev=PageView&noscript=1"></noscript>
<!-- End Meta Pixel Code -->
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-17928184955"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'AW-17928184955');
</script><style> #formContainer {
  background: white; 
  padding: 20px; 
  border-radius: 8px; 
  max-width: 992px; 
  width: 100%; 
  box-sizing: border-box; 
} 
  @media (max-width: 600px) {
    #formContainer { 
      max-width: 300px; 
      width: 100%; 
    } } 
</style><script type="application/json" id="weglot-data">{"allLanguageUrls":{"en":"https://paypercut.com/paypercut-for-startups","gb":"https://paypercut.com/gb/paypercut-for-startups","bg":"https://paypercut.com/bg/paypercut-for-startups","ro":"https://paypercut.com/ro/paypercut-for-startups","pl":"https://paypercut.com/pl/paypercut-for-startups","el":"https://paypercut.com/el/paypercut-for-startups","hu":"https://paypercut.com/hu/paypercut-for-startups"},"originalCanonicalUrl":"https://paypercut.com/paypercut-for-startups","originalPath":"/paypercut-for-startups","settings":{"auto_switch":false,"auto_switch_fallback":null,"category":8,"custom_settings":{"button_style":{"with_name":true,"full_name":true,"is_dropdown":true,"with_flags":false,"flag_type":"rectangle_mat"},"switchers":[],"translate_search":false,"loading_bar":true,"hide_switcher":false,"translate_images":false,"subdomain":false,"wait_transition":true,"dynamic":""},"deleted_at":null,"dynamics":[],"excluded_blocks":[],"excluded_paths":[],"external_enabled":true,"host":"paypercut.com","is_dns_set":true,"is_https":true,"language_from":"en","language_from_custom_flag":null,"language_from_custom_name":null,"languages":[{"connect_host_destination":null,"custom_code":"gb","custom_flag":"gb","custom_local_name":"English (United Kingdom)","custom_name":"English (United Kingdom)","enabled":true,"language_to":"a0"},{"connect_host_destination":null,"custom_code":null,"custom_flag":null,"custom_local_name":null,"custom_name":null,"enabled":true,"language_to":"bg"},{"connect_host_destination":null,"custom_code":null,"custom_flag":null,"custom_local_name":null,"custom_name":null,"enabled":true,"language_to":"ro"},{"connect_host_destination":null,"custom_code":null,"custom_flag":null,"custom_local_name":null,"custom_name":null,"enabled":true,"language_to":"pl"},{"connect_host_destination":null,"custom_code":null,"custom_flag":null,"custom_local_name":null,"custom_name":null,"enabled":true,"language_to":"el"},{"connect_host_destination":null,"custom_code":null,"custom_flag":null,"custom_local_name":null,"custom_name":null,"enabled":true,"language_to":"hu"}],"media_enabled":true,"page_views_enabled":false,"technology_id":13,"technology_name":"Webflow","translation_engine":3,"url_type":"SUBDIRECTORY","versions":{"translation":1790063203,"slugTranslation":1774541564}}}</script>
<script async="" src="https://cdn.weglot.com/weglot.min.js?api_key=wg_d33f012901a376ec8771f859f67768be5" type="text/javascript"></script><link href="https://paypercut.com/paypercut-for-startups" hreflang="en" rel="alternate"><link href="https://paypercut.com/gb/paypercut-for-startups" hreflang="gb" rel="alternate"><link href="https://paypercut.com/bg/paypercut-for-startups" hreflang="bg" rel="alternate"><link href="https://paypercut.com/ro/paypercut-for-startups" hreflang="ro" rel="alternate"><link href="https://paypercut.com/pl/paypercut-for-startups" hreflang="pl" rel="alternate"><link href="https://paypercut.com/el/paypercut-for-startups" hreflang="el" rel="alternate"><link href="https://paypercut.com/hu/paypercut-for-startups" hreflang="hu" rel="alternate"></head><body class="body"><div data-w-id="09cdd038-5268-9603-015b-fa4546dd36f7" data-animation="over-left" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="navbar-2 lang-switch w-nav"><div class="w-layout-blockcontainer container-nav w-container"><div class="nav-section"><section class="nav-wrapper"><div class="nav-left-section"><a href="/" class="brand w-nav-brand"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69148ea17ff066ec9c5e1979_paypercut%20logo%20white%20mode.svg" loading="lazy" alt="paypercut logo" class="logo"></a><div role="navigation" class="dropdown-links w-nav-menu"><div data-delay="0" data-hover="true" data-w-id="09cdd038-5268-9603-015b-fa4546dd36ff" class="dropdown-2 w-dropdown"><address class="dropdown-nav white w-dropdown-toggle"><div class="text-block-32 white">Products</div><div data-w-id="09cdd038-5268-9603-015b-fa4546dd3703" class="dropdown-image w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></address><nav class="dropdown-list white w-dropdown-list"><div class="one-grid-dropdown"><div class="div-block-374"><div class="text-block-37">Products</div><div class="div-block-334"><a data-w-id="09cdd038-5268-9603-015b-fa4546dd370a" href="/online-checkout" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2-copy w-embed"><svg viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M15.2408 16.6553C14.2908 16.6553 13.5508 17.3953 13.5508 18.3453C13.5508 19.2953 14.2908 20.0353 15.2408 20.0353C16.1908 20.0353 16.9308 19.2953 16.9308 18.3453C16.9308 17.3953 16.1908 16.6553 15.2408 16.6553Z" fill="currentColor"></path>
  <path d="M7.33844 16.6553C6.38844 16.6553 5.64844 17.3953 5.64844 18.3453C5.64844 19.2953 6.38844 20.0353 7.33844 20.0353C8.28844 20.0353 9.02844 19.2953 9.02844 18.3453C9.02844 17.3953 8.28844 16.6553 7.33844 16.6553Z" fill="currentColor"></path>
  <path d="M0.849609 1.52441H2.42969C3.33455 1.52441 4.13935 2.16292 4.27148 3.05957L4.27344 3.07812L4.2832 3.09473L4.32324 3.16406L4.35156 3.21484H12.9619C12.971 3.7173 13.048 4.22471 13.1865 4.70508H4.61035L4.63184 4.82227L5.65137 10.4629L5.66602 10.5449H15.9102C16.6278 10.5448 17.2679 10.0116 17.418 9.33691V9.33301L17.6309 8.18164C17.6402 8.18243 17.6497 8.18285 17.6592 8.18359L17.6387 8.20508H17.8799C18.3481 8.20508 18.7764 8.14551 19.1729 8.04785L18.8721 9.62598C18.6014 11.0176 17.3335 12.0447 15.9004 12.0449H5.90625L5.93262 12.166L6.14258 13.1553C6.22211 13.6308 6.61192 13.9442 7.0498 13.9443H16.0801C16.4847 13.9444 16.8298 14.2898 16.8301 14.6943C16.8301 15.0991 16.4848 15.4443 16.0801 15.4443H7.0498C5.87006 15.4442 4.88837 14.6007 4.64746 13.4443L2.81836 3.35742C2.81292 3.26013 2.76327 3.17767 2.69727 3.12109C2.62784 3.06172 2.53536 3.02452 2.44043 3.02441H0.849609C0.445007 3.02419 0.0996094 2.67906 0.0996094 2.27441C0.0998312 1.86994 0.445136 1.52464 0.849609 1.52441Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"></path>
  <path d="M20.8805 4.325C20.8805 6.505 19.1105 8.275 16.9305 8.275C14.7505 8.275 12.9805 6.505 12.9805 4.325C12.9805 2.145 14.7505 0.375 16.9305 0.375C17.5505 0.375 18.1405 0.515 18.6605 0.775M20.1405 1.855L16.6805 5.315L15.6905 4.325" stroke="currentColor" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Online checkout</div></div></a><a data-w-id="09cdd038-5268-9603-015b-fa4546dd3712" href="/payment-links-qr-codes" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="shop-icon-nav w-embed"><svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M5.83333 2.5H3.33333C2.8731 2.5 2.5 2.8731 2.5 3.33333V5.83333C2.5 6.29357 2.8731 6.66667 3.33333 6.66667H5.83333C6.29357 6.66667 6.66667 6.29357 6.66667 5.83333V3.33333C6.66667 2.8731 6.29357 2.5 5.83333 2.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M16.6654 2.5H14.1654C13.7051 2.5 13.332 2.8731 13.332 3.33333V5.83333C13.332 6.29357 13.7051 6.66667 14.1654 6.66667H16.6654C17.1256 6.66667 17.4987 6.29357 17.4987 5.83333V3.33333C17.4987 2.8731 17.1256 2.5 16.6654 2.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M5.83333 13.333H3.33333C2.8731 13.333 2.5 13.7061 2.5 14.1663V16.6663C2.5 17.1266 2.8731 17.4997 3.33333 17.4997H5.83333C6.29357 17.4997 6.66667 17.1266 6.66667 16.6663V14.1663C6.66667 13.7061 6.29357 13.333 5.83333 13.333Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M17.4987 13.333H14.9987C14.5567 13.333 14.1327 13.5086 13.8202 13.8212C13.5076 14.1337 13.332 14.5576 13.332 14.9997V17.4997" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M17.5 17.5V17.5083" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M2.5 10H2.50833" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M10 2.5H10.0083" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M10 13.333V13.3413" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M9.9987 5.83301V8.33301C9.9987 8.77504 9.8231 9.19896 9.51054 9.51152C9.19798 9.82408 8.77406 9.99967 8.33203 9.99967H5.83203" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M13.332 10H14.1654" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M17.5 10V10.0083" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M10 17.5003V16.667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38 payments-text-nav-link">Payment links &amp; QR codes</div></div></a><a data-w-id="09cdd038-5268-9603-015b-fa4546dd371a" href="/billing-payouts" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 28 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M19 9V7C19 6.46957 18.7893 5.96086 18.4142 5.58579C18.0391 5.21071 17.5304 5 17 5H7C6.46957 5 5.96086 5.21071 5.58579 5.58579C5.21071 5.96086 5 6.46957 5 7V13C5 13.5304 5.21071 14.0391 5.58579 14.4142C5.96086 14.7893 6.46957 15 7 15H9M11 9H21C22.1046 9 23 9.89543 23 11V17C23 18.1046 22.1046 19 21 19H11C9.89543 19 9 18.1046 9 17V11C9 9.89543 9.89543 9 11 9ZM18 14C18 15.1046 17.1046 16 16 16C14.8954 16 14 15.1046 14 14C14 12.8954 14.8954 12 16 12C17.1046 12 18 12.8954 18 14Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M24.4431 3.66699L26.6654 6.00033M26.6654 6.00033L24.4431 8.33366M26.6654 6.00033L21.332 6.00033" stroke="currentColor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M3.55686 20.333L1.33464 17.9997M1.33464 17.9997L3.55686 15.6663M1.33464 17.9997L6.66797 17.9997" stroke="currentColor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Billing &amp; payouts</div></div></a><a data-w-id="9b1a6e89-65a3-d948-8abe-0ca4c6ace3b6" href="/bnpl-aggregator" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 25 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M11.7771 15.6691L3.34486 15.669C1.91193 15.6689 0.750319 14.5073 0.750278 13.0744L0.75 3.3447C0.749959 1.9117 1.91163 0.75 3.34463 0.75H18.9113C20.3445 0.75 20.8579 2.11638 20.8579 3.5496V5.29044H1.39816" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M20.5359 14.4229C20.8502 14.5277 21.19 14.3578 21.2948 14.0434C21.3996 13.7291 21.2297 13.3893 20.9153 13.2845L20.7256 13.8537L20.5359 14.4229ZM19.0533 13.2963H18.4533C18.4533 13.5545 18.6185 13.7838 18.8635 13.8655L19.0533 13.2963ZM19.6533 10.9653C19.6533 10.634 19.3846 10.3653 19.0533 10.3653C18.7219 10.3653 18.4533 10.634 18.4533 10.9653H19.0533H19.6533ZM20.7256 13.8537L20.9153 13.2845L19.243 12.727L19.0533 13.2963L18.8635 13.8655L20.5359 14.4229L20.7256 13.8537ZM19.0533 13.2963H19.6533V10.9653H19.0533H18.4533V13.2963H19.0533ZM23.5128 12.7388H22.9128C22.9128 14.8704 21.1848 16.5983 19.0533 16.5983V17.1983V17.7983C21.8476 17.7983 24.1128 15.5331 24.1128 12.7388H23.5128ZM19.0533 17.1983V16.5983C16.9217 16.5983 15.1938 14.8704 15.1938 12.7388H14.5938H13.9937C13.9937 15.5331 16.259 17.7983 19.0533 17.7983V17.1983ZM14.5938 12.7388H15.1938C15.1938 10.6073 16.9217 8.8793 19.0533 8.8793V8.2793V7.6793C16.259 7.6793 13.9937 9.94452 13.9937 12.7388H14.5938ZM19.0533 8.2793V8.8793C21.1848 8.8793 22.9128 10.6073 22.9128 12.7388H23.5128H24.1128C24.1128 9.94452 21.8476 7.6793 19.0533 7.6793V8.2793Z" fill="currentColor"></path>
</svg></div></div><div><div class="text-block-38">BNPL aggregator</div></div></a></div></div></div></nav></div><div data-delay="0" data-hover="true" data-w-id="09cdd038-5268-9603-015b-fa4546dd373e" class="business w-dropdown"><div class="dropdown-nav white w-dropdown-toggle"><div class="text-block-32 white">Business type</div><div class="dropdown-image w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><nav class="dropdown-list white w-dropdown-list"><div class="one-grid-dropdown"><div class="div-block-373"><div class="text-block-37">Business type</div><div class="div-block-334"><a data-w-id="09cdd038-5268-9603-015b-fa4546dd3749" href="/retail-online-stores" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="retail-online-stores w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M15.5984 8.3998V5.39981C15.5984 3.41158 13.9867 1.7998 11.9984 1.7998C10.0102 1.7998 8.39844 3.41158 8.39844 5.3998V8.3998M4.72571 22.1998H19.2712C20.5565 22.1998 21.5984 21.1772 21.5984 19.9158L20.1075 7.79977C20.1075 6.53835 19.0656 5.51576 17.7803 5.51576H5.92571C4.64039 5.51576 3.59844 6.53835 3.59844 7.79977L2.39844 19.9158C2.39844 21.1772 3.44039 22.1998 4.72571 22.1998Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Retail &amp; online stores</div></div></a><a data-w-id="09cdd038-5268-9603-015b-fa4546dd3751" href="/hospitality-food" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M21.625 16.2223H2.375C2.375 16.2223 3.57812 7.05566 12 7.05566C20.4219 7.05566 21.625 16.2223 21.625 16.2223Z" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"></path>
  <line x1="1.75" y1="18.5273" x2="22.25" y2="18.5273" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></line>
  <path d="M15.9644 10.5052C15.9644 10.5052 16.9055 10.8813 17.3662 12.0969C17.8269 13.3125 17.7766 14.1729 17.7766 14.1729" stroke="currentColor" stroke-width="0.8" stroke-linecap="round"></path>
  <ellipse cx="12" cy="5.52778" rx="1.375" ry="1.52778" fill="currentColor"></ellipse>
</svg></div></div><div><div class="text-block-38">Hospitality &amp; food</div></div></a><a data-w-id="09cdd038-5268-9603-015b-fa4546dd3759" href="/health-beauty-wellness" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="health w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M8.57844 8.58039L21.5984 19.2004M21.5984 4.80039L8.57844 15.4204M5.99844 9.60039C4.01021 9.60039 2.39844 7.98861 2.39844 6.00039C2.39844 4.01216 4.01021 2.40039 5.99844 2.40039C7.98666 2.40039 9.59844 4.01217 9.59844 6.00039C9.59844 7.98862 7.98666 9.60039 5.99844 9.60039ZM5.99844 21.6004C4.01021 21.6004 2.39844 19.9886 2.39844 18.0004C2.39844 16.0122 4.01021 14.4004 5.99844 14.4004C7.98666 14.4004 9.59844 16.0122 9.59844 18.0004C9.59844 19.9886 7.98666 21.6004 5.99844 21.6004Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Health, beauty &amp; wellness</div></div></a><a data-w-id="e0158197-bd01-e8ce-5807-cc961e69e542" href="/transport-delivery-mobility" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M5.14129 17.0283H4.22701C3.21712 17.0283 2.39844 16.2096 2.39844 15.1997V6.97115C2.39844 5.96126 3.21712 5.14258 4.22701 5.14258H12.4556C13.4655 5.14258 14.2841 5.96126 14.2841 6.97115V15.1997C14.2841 16.2096 13.4655 17.0283 12.4556 17.0283H11.5413M15.6556 17.0283H15.1984C14.6935 17.0283 14.2841 16.619 14.2841 16.114V8.34258C14.2841 7.83763 14.6935 7.42829 15.1984 7.42829H17.5019C17.7796 7.42829 18.0423 7.55455 18.2158 7.77143L21.3981 11.7493C21.5278 11.9114 21.5984 12.1128 21.5984 12.3204V16.114C21.5984 16.619 21.1891 17.0283 20.6841 17.0283M10.627 16.5711C10.627 17.8335 9.60366 18.8569 8.34129 18.8569C7.07893 18.8569 6.05558 17.8335 6.05558 16.5711C6.05558 15.3088 7.07893 14.2854 8.34129 14.2854C9.60366 14.2854 10.627 15.3088 10.627 16.5711ZM20.227 16.5711C20.227 17.8335 19.2037 18.8569 17.9413 18.8569C16.6789 18.8569 15.6556 17.8335 15.6556 16.5711C15.6556 15.3088 16.6789 14.2854 17.9413 14.2854C19.2037 14.2854 20.227 15.3088 20.227 16.5711Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path>
</svg></div></div><div><div class="text-block-38">Transport, delivery &amp; mobility</div></div></a><a data-w-id="960fc844-eb14-5efd-b2c2-1ac47e89d745" href="/charities-nonprofits" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3.80772 6.20659C4.70785 5.30673 5.92853 4.80122 7.20132 4.80122C8.47411 4.80122 9.69478 5.30673 10.5949 6.20659L12.0013 7.61179L13.4077 6.20659C13.8505 5.74815 14.3802 5.38247 14.9658 5.13091C15.5514 4.87934 16.1812 4.74693 16.8186 4.74139C17.4559 4.73585 18.088 4.8573 18.6779 5.09865C19.2678 5.34 19.8037 5.69641 20.2544 6.1471C20.7051 6.59778 21.0615 7.13371 21.3029 7.72361C21.5442 8.31352 21.6657 8.94558 21.6601 9.58292C21.6546 10.2203 21.5222 10.8501 21.2706 11.4357C21.019 12.0214 20.6534 12.551 20.1949 12.9938L12.0013 21.1886L3.80772 12.9938C2.90786 12.0937 2.40234 10.873 2.40234 9.60019C2.40234 8.32741 2.90786 7.10673 3.80772 6.20659V6.20659Z" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Charities &amp; nonprofits</div></div></a><a data-w-id="e6b863f1-7394-cabc-dc5f-37d89930be0c" href="/paypercut-for-startups" aria-current="page" class="link-block-11 w-inline-block w--current"><div class="div-block-335"><div class="code-embed-2 w-embed"><svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  <g clip-path="url(#clip0_2748_29005)">
    <path d="M32 0H0V32H32V0Z" fill="currentColor" fill-opacity="0.01"></path>
    <path fill-rule="evenodd" clip-rule="evenodd" d="M14.6246 8.21856L16.3312 6.51185C17.7063 5.13688 20.118 4.18266 22.5146 3.84032C23.6956 3.67162 24.8124 3.66112 25.724 3.79763C26.6675 3.93895 27.2459 4.21517 27.5162 4.48527C27.7863 4.75537 28.0625 5.33366 28.2038 6.27727C28.3403 7.18882 28.3298 8.30569 28.1611 9.48674C27.8187 11.8833 26.8644 14.295 25.4893 15.6701L16.0036 25.1559L13.5579 22.7102C13.1413 22.2936 12.4659 22.2936 12.0494 22.7102C11.6328 23.1266 11.6328 23.802 12.0494 24.2187L15.2494 27.4187C15.666 27.8351 16.3413 27.8351 16.7579 27.4187L17.9252 26.2513L20.4223 30.413C20.5913 30.6949 20.8806 30.8828 21.2066 30.9231C21.5326 30.9632 21.859 30.8508 22.0911 30.6187L26.3578 26.352C26.5952 26.1146 26.707 25.7792 26.6596 25.4469L25.6683 18.5082L26.998 17.1786C28.8228 15.3536 29.8953 12.4319 30.2729 9.78844C30.4642 8.4495 30.4871 7.11973 30.3136 5.9613C30.1449 4.83495 29.7677 3.71994 29.0244 2.97675C28.2814 2.23358 27.1663 1.8565 26.0399 1.68782C24.8815 1.51434 23.5518 1.53716 22.2127 1.72843C19.5694 2.10604 16.6477 3.17846 14.8227 5.00335L13.4932 6.33297L6.55449 5.34174C6.22214 5.29425 5.8868 5.40602 5.64941 5.64344L1.38274 9.91008C1.15048 10.1424 1.03818 10.4687 1.07831 10.7947C1.11845 11.1207 1.30654 11.41 1.58819 11.579L5.75008 14.0761L4.58276 15.2434C4.38274 15.4435 4.27036 15.7148 4.27036 15.9977C4.27036 16.2806 4.38274 16.5519 4.58276 16.7519L7.78278 19.9519C8.19934 20.3685 8.87471 20.3685 9.29126 19.9519C9.70784 19.5354 9.70784 18.86 9.29126 18.4435L6.8455 15.9977L8.2246 14.6186L14.6246 8.21856ZM21.5488 28.144L19.4801 24.6963L23.7826 20.3938L24.4723 25.2205L21.5488 28.144ZM7.305 12.5212L11.6076 8.21858L6.78078 7.52905L3.85726 10.4526L7.305 12.5212ZM5.02457 22.0851C5.44113 21.6687 5.44113 20.9933 5.02457 20.5767C4.60802 20.1602 3.93263 20.1602 3.51607 20.5767L1.38274 22.71C0.966182 23.1266 0.966182 23.8021 1.38274 24.2185C1.7993 24.6351 2.47469 24.6351 2.89124 24.2185L5.02457 22.0851ZM8.22462 25.2854C8.64117 24.8687 8.64119 24.1933 8.22464 23.7769C7.80808 23.3602 7.13271 23.3602 6.71614 23.7769L2.44941 28.0433C2.03285 28.46 2.03285 29.1354 2.44941 29.5518C2.86596 29.9685 3.54133 29.9684 3.95789 29.552L8.22462 25.2854ZM11.4246 28.4851C11.8411 28.0687 11.8411 27.3933 11.4246 26.9767C11.008 26.5602 10.3326 26.5602 9.91607 26.9767L7.78274 29.11C7.36618 29.5266 7.36618 30.2021 7.78274 30.6185C8.19929 31.0351 8.87469 31.0351 9.29124 30.6185L11.4246 28.4851ZM20.2703 14.3951C21.7417 14.3951 22.9344 13.2024 22.9344 11.731C22.9344 10.2596 21.7417 9.06684 20.2703 9.06684C18.7989 9.06684 17.6061 10.2596 17.6061 11.731C17.6061 13.2024 18.7989 14.3951 20.2703 14.3951Z" fill="currentColor"></path>
  </g>
  <defs>
    <clipPath id="clip0_2748_29005">
      <rect width="32" height="32" fill="currentColor"></rect>
    </clipPath>
  </defs>
</svg></div></div><div><div class="text-block-38">Startups</div></div></a></div></div></div></nav></div><div class="div-block-372"><a href="/pricing" class="div-block-175 w-inline-block"><div href="#" class="link-copy">Pricing</div></a></div><div class="div-block-372"><a href="/partnerships" class="div-block-175 w-inline-block"><div href="#" class="link-copy">Partnerships</div></a></div><div data-delay="0" data-hover="true" data-w-id="ac51cb5f-6633-9e82-9860-0fb4786ba122" class="company-dropdown w-dropdown"><address class="dropdown-nav white w-dropdown-toggle"><div class="text-block-32 white">Company</div><div class="dropdown-image w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></address><nav class="dropdown-list white w-dropdown-list"><div class="one-grid-dropdown"><div class="div-block-374"><div class="text-block-37">Company</div><div class="div-block-334"><a data-w-id="ac51cb5f-6633-9e82-9860-0fb4786ba12d" href="/about-us" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="about-icon w-embed"><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M2.3999 20.5123C2.3999 16.7368 5.55419 13.6761 11.9999 13.6761C18.4456 13.6761 21.5999 16.7368 21.5999 20.5123C21.5999 21.113 21.1617 21.5999 20.6211 21.5999H3.37873C2.83814 21.5999 2.3999 21.113 2.3999 20.5123Z" stroke="currentColor" stroke-width="2"></path>
  <path d="M15.5999 5.9999C15.5999 7.98813 13.9881 9.5999 11.9999 9.5999C10.0117 9.5999 8.3999 7.98813 8.3999 5.9999C8.3999 4.01168 10.0117 2.3999 11.9999 2.3999C13.9881 2.3999 15.5999 4.01168 15.5999 5.9999Z" stroke="currentColor" stroke-width="2"></path>
</svg></div></div><div><div class="text-block-38">About us</div></div></a><a data-w-id="48f3c1d3-ba98-561b-afba-78eea001a63d" href="/blog" class="link-block-11 w-inline-block"><div class="div-block-335"><div class="about-icon w-embed"><svg viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M10.3257 17.4571V2.64571M10.3257 17.4571L8.86824 15.9997C8.04522 15.1767 6.92947 14.7143 5.76555 14.7143H2.09619C1.49025 14.7143 1 14.2231 1 13.6171V2.09714C1 1.49121 1.49121 1 2.09714 1H6.31362C7.47754 1 8.59379 1.46237 9.41681 2.28538L10.3257 3.19429L11.2346 2.28538C12.0576 1.46237 13.1739 1 14.3378 1H19.1029C19.7088 1 20.2 1.49121 20.2 2.09714V13.6171C20.2 14.2231 19.7088 14.7143 19.1029 14.7143H14.8864C13.7225 14.7143 12.6062 15.1767 11.7832 15.9997L10.3257 17.4571Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div><div><div class="text-block-38">Blog</div></div></a></div></div></div></nav></div><div class="div-block-372 contact-mobile"><a href="/contact-us" class="contact w-inline-block"><div class="text-block">Contact</div></a></div><div class="partnerships"><a href="#" class="div-block-175 w-inline-block"><div href="#" class="link-copy">Partnerships</div></a></div><div class="mobile-box pc-hidden"><div><div data-hover="false" data-delay="0" class="dropdown-5 w-dropdown"><div class="dropdown-localization w-dropdown-toggle"><div><div class="localization"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914999c12ad3655bfef527c_globe.svg" loading="lazy" alt="globe" class="image"><div>EN</div></div></div></div><nav class="dropdown-list-lang white w-dropdown-list"><div class="one-grid-dropdown-localization"><div class="div-block-374"><div class="localization-dropdown"><a data-lang="en" href="https://paypercut.com/" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" loading="eager" alt="eu" class="image-92"></div><div class="text-block-191">EU</div></div></a><a data-lang="bg" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b154254ed283d713132ed_bulgaria%20flag.svg" loading="eager" alt="bulgaria flag" class="image-92"></div><div class="text-block-191">Bulgaria</div></div></a><a data-lang="el" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542cc66f739947f64be_greece%20flag.svg" loading="eager" alt="greece flag" class="image-92"></div><div class="text-block-191">Greece</div></div></a><a data-lang="ro" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542a40ba87baccc4e12_romania%20flag.svg" loading="eager" alt="romania flag" class="image-92"></div><div class="text-block-191">Romania</div></div></a><a data-lang="hu" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542d59fa106419e11a4_hungary%20flag.svg" loading="eager" alt="hungary flag" class="image-92"></div><div class="text-block-191">Hungary</div></div></a><a data-lang="pl" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b15423f1b830d9b4e3955_poland%20flag.svg" loading="eager" alt="poland flag" class="image-92"></div><div class="text-block-191">Poland</div></div></a><a data-lang="gb" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6a8ef54da77a7d3895b23c87_2865544f48c39d8d562adc3a1d61fc16_Flag_of_the_United_Kingdom_%283-5%29.png" loading="eager" alt="" class="image-92"></div><div class="text-block-191">Great Britain</div></div></a></div></div></div></nav></div></div><div class="div-block-375"><a href="https://dashboard.paypercut.io/register" class="get-started register-button w-inline-block"><div class="get-started-for-mobile">Get started</div></a><a href="https://me.paypercut.io/login" class="login-cta w-inline-block"><div class="text-block">Log in</div></a></div></div></div></div><div class="nav-right"><div class="right-section-nav"><div data-hover="false" data-delay="0" class="w-dropdown"><div class="dropdown-localization w-dropdown-toggle"><div><div class="localization"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914999c12ad3655bfef527c_globe.svg" loading="lazy" alt="globe" class="image"><div>EU</div></div></div></div><nav class="dropdown-list-lang white w-dropdown-list"><div class="one-grid-dropdown-localization"><div class="div-block-374"><div class="localization-dropdown"><a data-lang="en" href="https://paypercut.com/" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" loading="eager" alt="eu" class="image-92"></div><div class="text-block-191">EU</div></div></a><a data-lang="bg" data-w-id="30c22c11-0445-8f40-813d-c164e8db8b5f" href="#" class="link-block-11 w-inline-block"><div data-lang="bg" class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b154254ed283d713132ed_bulgaria%20flag.svg" loading="eager" alt="bulgaria flag" class="image-92"></div><div class="text-block-191">Bulgaria</div></div></a><a data-lang="el" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542cc66f739947f64be_greece%20flag.svg" loading="eager" alt="greece flag" class="image-92"></div><div class="text-block-191">Greece</div></div></a><a data-lang="ro" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542a40ba87baccc4e12_romania%20flag.svg" loading="eager" alt="romania flag" class="image-92"></div><div class="text-block-191">Romania</div></div></a><a data-lang="hu" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542d59fa106419e11a4_hungary%20flag.svg" loading="eager" alt="hungary flag" class="image-92"></div><div class="text-block-191">Hungary</div></div></a><a data-lang="pl" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b15423f1b830d9b4e3955_poland%20flag.svg" loading="eager" alt="poland flag" class="image-92"></div><div class="text-block-191">Poland</div></div></a><a data-lang="gb" href="#" class="link-block-11 w-inline-block"><div class="div-block-513"><div class="div-block-512-copy"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6a8ef54da77a7d3895b23c87_2865544f48c39d8d562adc3a1d61fc16_Flag_of_the_United_Kingdom_%283-5%29.png" loading="eager" alt="" class="image-92"></div><div class="text-block-191">Great Britain</div></div></a></div></div></div></nav></div><a href="/contact-us" class="contact w-inline-block"><div class="text-block">Contact</div></a><a href="https://dashboard.paypercut.io/register" class="get-started register-button w-inline-block"><div class="text-block">Get started</div></a><a href="https://me.paypercut.io/login" class="login-cta w-inline-block"><div class="text-block">Log in</div></a></div></div></section></div></div><div class="menu-button-2 w-nav-button"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699629_menu%20icon.svg" alt="menu" class="image-42"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="image-43"></div></div><main id="" class="main"><div class="hero-section-products"><div class="w-layout-blockcontainer container w-container"><div class="grid-products-page"><div><div class="text-block-113">Paypercut for Startups</div><h1 class="heading-24">Built for European startups launching something new.</h1><div class="short-intro">Starting a company is hard enough. Your payments shouldn’t become a future migration problem. Paypercut for Startups is a strategic program designed to support early-stage European startups with up to <span class="bold-text-156">€10,000* in fee benefits over 24 months.</span> Built for early-stage European startups - VC-backed or bootstrapped.</div><div class="div-block-441"><a id="openFirstPopup" data-w-id="c64eac3c-386e-b9d8-b7b1-2f7947e72e64" href="#" class="link-block-17 w-inline-block"><div class="cta-text"><strong class="bold-text-52">Apply now</strong></div><div style="-webkit-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform-style:preserve-3d" class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div><div class="text-block-151">*or equivalent in local currency, depending on the country of registration.</div></div><div class="wrapper-image-products-page"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af0feeb410cf285d0b2fa1_Frame%202147234601.svg" loading="eager" alt="benefit" class="right-image-business"></div></div></div></div><div class="w-layout-blockcontainer container w-container"><section class="section-14"><h2 class="built-for-early-stage-growth-title">Built for early-stage growth</h2><div class="made-in-europe-description-first">Switching payment providers later creates <span class="bold-text-156">technical debt, operational friction, and executive time loss.</span> Paypercut for Startups is designed to help you <span class="bold-text-156">start right from day one</span> - before your infrastructure becomes too complex to move. This program is available across Paypercut markets in Europe, with pricing adapted per country.</div><div class="div-block-508"><div class="w-layout-grid grid-31"><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d09c4f6e74bfe360fc_poland.svg" alt="poland" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d08bd17248f7ff71ad_Greece.svg" alt="Greece" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0f0642cd36fee4f87_romania.svg" alt="romania" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0f53ff62e1328c61c_bulgaria.svg" alt="bulgaria" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0d31491c2a82cfd6e_hungary.svg" alt="hungary" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d07026cb98b0f9ab53_czech.svg" alt="czech" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0d22bb848d185878f_Slovenia.svg" alt="Slovenia" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0c67aafcdbc03d1de_Estonia.svg" alt="Estonia" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d03d6d257edbcafca3_Latvia.svg" alt="Latvia" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0f53ff62e1328c5fe_Croatia.svg" alt="Croatia" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0527c0eac1bc30419_Slovakia.svg" alt="Slovakia" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d01cf4bef741a59541_lithuania.svg" alt="lithuania" class="country-image-newstyle"></div><div class="hidden"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d03e0f32814ebe1a22_Turkey.svg" alt="Turkey" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d075017086d1bdb72d_United%20Kingdom.svg" alt="United Kingdom" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0cb5a50a4f3a9b576_fr-France.svg" alt="Austria" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d0e55a9db9cb854dc5_belgium.svg" alt="belgium" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d05471272725540766_Cyprus.svg" alt="Cyprus" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d00703be8cb5006d8f_Denmark.svg" alt="Denmark" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d06cc7e79074f13cdd_Finland.svg" alt="Finland" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cf5c5cab440e4085a7_france.svg" alt="france" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cf645288fd64b833a6_Germany.svg" alt="Germany" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cff53ff62e1328c5dc_ireland.svg" alt="ireland" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d03cd43db4322f4c30_Italy.svg" alt="Italy" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cfb672a0a5b1f50775_luxemburg.svg" alt="luxemburg" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cf51a63e452e1f085e_Malta.svg" alt="Malta" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cf53c9e93d4b9230ab_netherlands.svg" alt="netherlands" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64cf9d016aafbe9f1e08_Portugal.svg" alt="Portugal" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d08c217b5d9fb76b0d_Spain.svg" alt="Spain" class="country-image-newstyle"></div><div><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699c64d05254afa6514d854d_sweeden.svg" alt="sweeden" class="country-image-newstyle"></div></div></div><div class="social-proof-wrapper"><div class="social-proof-title">You focus on product and growth. We support your payment infrastructure from the beginning.</div></div></section><section class="section-14"><h2 class="why-hospitality-businesses"><strong class="bold-text-197">What you get</strong></h2><div class="w-layout-grid why-choose-paypercut-grid what-you-get"><div class="why-choose-paypercut-card"><div class="div-block-476"><div class="div-block-505"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af129e4c7abdcdbc3291ad_phase1.svg" loading="lazy" width="24" alt="phase1" class="image-90"></div></div><div class="hospitality-title what-you-get"><strong class="bold-text-84">Phase 1: Months 1-6</strong></div><div class="hospitality-description">0% transaction fees on TPV up to €10,000 per month.</div></div><div class="why-choose-paypercut-card"><div class="div-block-476"><div class="div-block-505"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af12b61df1e60d2631f331_Icon.svg" loading="lazy" width="24" alt="Icon" class="image-90"></div></div><div class="hospitality-title what-you-get"><strong class="bold-text-83">Phase 2: Months 7-24</strong></div><div class="text-block-181">Preferential startup pricing continues.</div></div><div class="why-choose-paypercut-card"><div class="div-block-476"><div class="div-block-505"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af12ca9a9edf097137a88a_phase3.svg" loading="lazy" width="24" alt="phase3" class="image-90"></div></div><div class="hospitality-title what-you-get"><strong class="bold-text-83">Phase 3: Months 25+</strong></div><div class="text-block-187">Automatic transition to standard Paypercut pricing. Option to negotiate custom enterprise terms if applicable.</div></div></div><div class="social-proof-wrapper"><div class="social-proof-title">The 24-month benefit period begins on the registration date of your merchant account.</div></div></section><section class="section-15"><h2 class="heading-36">Payment solutions designed for startups</h2><div class="w-layout-grid grid-26"><div class="div-block-480 first-card-how-paypercut"><div class="text-block-148">SaaS &amp; Subscription startups</div><div class="text-block-150">If you generate recurring revenue, you need predictable billing and automated collections to keep subscriptions running smoothly and revenue consistent.</div><div class="above-pill">Use: <span class="bold-text-156">Billing &amp; Payouts</span></div><div class="div-block-21 for-startups-page"><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-21">Recurring and Subscription billing</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-22">Invoicing</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-23">Managed payouts</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-23">Payments dashboard</div></div></div><a data-w-id="b2e3c77d-87bb-89be-2bdd-ceb66000125f" href="/billing-payouts" class="pricing-first-link w-inline-block"><div class="text-block-52">Discover Billing &amp; Payouts</div><div style="-webkit-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform-style:preserve-3d" class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a><div class="our-vision-card for-startups outline"><div class="text-block-150 for-startups-bnpl no-bottom-padding">Simple to set up - one Paypercut integration supports subscriptions, recurring charges, and payouts across your payment flows.</div></div></div><div class="div-block-479"><div><div class="text-block-148">E-commerce &amp; DTC startups</div><div class="text-block-150-copy">If you sell directly to consumers online.</div><div class="above-pill">Use: <span class="bold-text-156">Online Checkout</span></div><div class="above-pill pl__startups-descr"><div class="text-block-150-copy">Klienci mogą płacić kartą, BLIKIEM lub za pomocą portfela cyfrowego w ramach jednego procesu płatności.</div></div></div><div class="div-block-21 for-startups-page"><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-21">Hosted or integrated checkout</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-22">Customisable checkout experience</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-23">Integration via API or partners such as WooCommerce and Shopify</div></div></div><a href="/online-checkout" class="pricing-first-link w-inline-block"><div class="text-block-52">Discover Online Checkout</div><div class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a><div class="our-vision-card for-startups"><div class="text-block-150 for-startups-bnpl">You can enhance conversion with a <span class="bold-text-156">BNPL Aggregator </span>that provides access to multiple BNPL providers and enables flexible payment options.</div><a href="/bnpl-aggregator" class="book-a-call-white w-inline-block"><div class="text-block-52">See how BNPL Aggregator works</div><div class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div></div></div><div class="w-layout-grid grid-26-copy"><div class="div-block-479"><div><div class="text-block-148">Early-stage &amp; MVP startups</div><div class="text-block-150">If you&#x27;re testing your idea and want to start accepting payments fast.</div><div class="above-pill">Use: <span class="bold-text-156">Payment Links &amp; QR Codes</span></div><div class="div-block-21 for-startups-page"><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-21">Create and share payment links</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-22">Use QR codes for quick payment collection</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-23">No full checkout flow required</div></div></div></div><div><a data-w-id="b2cce673-ddbf-6234-32ed-a923a0d4b19d" href="/payment-links-qr-codes" class="pricing-first-link early-stage-mvp w-inline-block"><div class="text-block-52">Discover Payment Links &amp; QR Codes</div><div style="-webkit-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform-style:preserve-3d" class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div></div><div class="div-block-480"><div class="text-block-148">Marketplaces &amp; Platforms</div><div class="text-block-150">If you onboard sellers or manage payouts.</div><div class="above-pill">Use: <span class="bold-text-156">Billing &amp; Payouts</span></div><div class="div-block-21 for-startups-page"><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-21">Split and managed payouts</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-22">Structured fund distribution</div></div><div class="div-block-20"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914f4c9af42192384128eec_check.svg" loading="lazy" alt="check" class="image-9-copy"><div class="text-block-23">Unified dashboard for transactions and payouts</div></div></div><div class="div-block-478"><div><a data-w-id="f0c83333-47b8-c948-c3bb-13dad62983f8" href="/billing-payouts" class="pricing-first-link early-stage-mvp w-inline-block"><div class="text-block-52">Discover Billing &amp; Payouts</div><div style="-webkit-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform-style:preserve-3d" class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div></div></div></div></section><section class="section-14"><h2 class="why-hospitality-businesses"><strong class="bold-text-197">How it works</strong></h2><div class="highlight-section startup-page"><div class="w-layout-grid grid-highlight-section startup-page"><div id="w-node-c173d7e7-8551-6208-3552-0b5fa18eb8d5-1092e7c0" class="column-grid-highlight"><div class="div-block-364"><div class="text-block-53"><strong class="bold-text-42">1. Apply online</strong></div><div class="text-block-55">Submit your startup profile and company information.</div></div></div><div class="column-grid-highlight"><div id="w-node-c173d7e7-8551-6208-3552-0b5fa18eb8dd-1092e7c0" class="div-block-364"><div class="text-block-53"><strong class="bold-text-41">2. Application review</strong></div><div class="text-block-55">We verify the information provided and assess eligibility.</div></div></div><div class="column-grid-highlight"><div id="w-node-c173d7e7-8551-6208-3552-0b5fa18eb8e4-1092e7c0" class="div-block-364"><div class="text-block-53"><strong class="bold-text-39">3. Approval &amp; registration</strong></div><div class="text-block-55">Approved startups receive a registration link and complete onboarding.</div></div></div><div class="column-grid-highlight"><div id="w-node-c173d7e7-8551-6208-3552-0b5fa18eb8eb-1092e7c0" class="div-block-364"><div class="text-block-53"><strong class="bold-text-40">4. Activation</strong></div><div class="text-block-55">After account approval, startup pricing is applied and confirmed.</div></div></div></div></div><div class="social-proof-wrapper"><div class="social-proof-title">The benefit period begins on your registration date.</div></div></section><section class="section-14"><h2 class="why-hospitality-businesses"><strong class="bold-text-197">Make sure you qualify</strong></h2><div class="w-layout-grid grid-30 make-sure-you-qualify"><div class="div-block-550"><div class="who-partnerships-are-built-card"><div class="div-block-506"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af1f4d6eb86d7bbcb39758_globe.svg" loading="lazy" alt="globe" class="icon-partnerships"></div><div class="who-partnerships-are-built-card-text"><strong class="bold-text-193">A live company website</strong></div></div></div><div class="div-block-550"><div class="who-partnerships-are-built-card"><div class="div-block-506"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af1f79c0bc295f50077af7_file-05.svg" loading="lazy" alt="file-05" class="icon-partnerships"></div><div class="who-partnerships-are-built-card-text"><strong class="bold-text-192">A short description of what you&#x27;re building</strong></div></div></div><div class="div-block-550"><div class="who-partnerships-are-built-card"><div class="div-block-506"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69af1f9db4b1651eff58a8c2_trend-up-01.svg" loading="lazy" alt="trend-up-01" class="icon-partnerships"></div><div class="who-partnerships-are-built-card-text"><strong class="bold-text-194">Your current stage (Idea, MVP, First Clients, Scaling)</strong></div></div></div></div><div class="social-proof-wrapper"><div class="social-proof-title">We review each application individually.</div></div></section><section id="startup-form" class="calendly-section-2 scroll-effect"><div class="div-block-434"><h2 class="launch-with-the-right-foundation"><strong class="bold-text-197">Launch with the right foundation</strong></h2><div class="made-in-europe-description-first width-500">Choosing a payment partner early is a long-term decision. Start with Paypercut and grow without having to switch later.</div></div><div><a id="openPopup" data-w-id="d9883a24-c73a-0da6-8969-645f5f86be96" href="#" class="pricing-first-link w-inline-block"><div class="text-block-52">Open Form</div><div style="-webkit-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform-style:preserve-3d" class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div><div class="w-embed w-iframe w-script"><!-- Modal -->
<div id="formModal" style="
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.5); 
  z-index: 9999; 
  justify-content: center; 
  align-items: center;
">
  <div id="formContainer" style="
    margin-top:60px;
    background: white; 
    padding: 20px; 
    border-radius: 8px; 
    max-width: 992px; 
    max-height: 90%; 
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
  ">
    <!-- Close button -->
    <button id="closePopup" style="
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 10;
    "><svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2747_28982)">
<path d="M20.7876 10.5084C20.9389 10.3571 20.9389 10.1117 20.7876 9.96037C20.6363 9.80907 20.3909 9.80907 20.2396 9.96037L20.5136 10.2344L20.7876 10.5084ZM9.96428 20.2357C9.81298 20.387 9.81298 20.6324 9.96428 20.7837C10.1156 20.935 10.361 20.935 10.5123 20.7837L10.2383 20.5097L9.96428 20.2357ZM20.2396 20.7837C20.3909 20.935 20.6363 20.935 20.7876 20.7837C20.9389 20.6324 20.9389 20.387 20.7876 20.2357L20.5136 20.5097L20.2396 20.7837ZM10.5123 9.96037C10.361 9.80907 10.1156 9.80907 9.96428 9.96037C9.81298 10.1117 9.81298 10.3571 9.96428 10.5084L10.2383 10.2344L10.5123 9.96037ZM29.9073 15.372H29.5198C29.5198 23.1835 23.1874 29.5159 15.3759 29.5159V29.9034V30.291C23.6154 30.291 30.2949 23.6115 30.2949 15.372H29.9073ZM15.3759 29.9034V29.5159C7.56448 29.5159 1.23203 23.1835 1.23203 15.372H0.844531H0.457031C0.457031 23.6115 7.13648 30.291 15.3759 30.291V29.9034ZM0.844531 15.372H1.23203C1.23203 7.56057 7.56448 1.22812 15.3759 1.22812V0.840625V0.453125C7.13648 0.453125 0.457031 7.13257 0.457031 15.372H0.844531ZM15.3759 0.840625V1.22812C23.1874 1.22812 29.5198 7.56057 29.5198 15.372H29.9073H30.2949C30.2949 7.13257 23.6154 0.453125 15.3759 0.453125V0.840625ZM20.5136 10.2344L20.2396 9.96037L15.1019 15.098L15.3759 15.372L15.65 15.6461L20.7876 10.5084L20.5136 10.2344ZM15.3759 15.372L15.1019 15.098L9.96428 20.2357L10.2383 20.5097L10.5123 20.7837L15.65 15.6461L15.3759 15.372ZM20.5136 20.5097L20.7876 20.2357L15.65 15.098L15.3759 15.372L15.1019 15.6461L20.2396 20.7837L20.5136 20.5097ZM15.3759 15.372L15.65 15.098L10.5123 9.96037L10.2383 10.2344L9.96428 10.5084L15.1019 15.6461L15.3759 15.372Z" fill="black"></path>
</g>
<defs>
<clipPath id="clip0_2747_28982">
<rect width="31" height="31" fill="white"></rect>
</clipPath>
</defs>
</svg>
</button>

    <!-- HubSpot forma -->
    <script src="https://js-eu1.hsforms.net/forms/embed/146235943.js" defer=""></script>
    <div class="hs-form-frame" data-region="eu1" data-form-id="d86f3c24-eea7-4141-9625-12d155279003" data-portal-id="146235943" style="height: auto; position: relative;">
      <iframe src="https://js-eu1.hsforms.net/ui-forms-embed-components-app/frame.html?_hsPortalId=146235943&_hsFormId=d86f3c24-eea7-4141-9625-12d155279003&_hsIsQa=false&_hsHublet=eu1&_hsDisableScriptloader=true&_hsDisableRedirect=true&_hsInstanceId=001eeb3f-6416-4b9c-bcb0-34cbdcea2324" data-test-id="embedded-form-d86f3c24-eea7-4141-9625-12d155279003" title="Form" scrolling="no" style="border: none; height: 100%; width: 100%;"></iframe>
    </div>
  </div>
</div>

<!-- Skripta za otvaranje/zatvaranje -->
<script>
const openBtns = [
  document.getElementById('openPopup'),
  document.getElementById('openFirstPopup')
];
const closeBtn = document.getElementById('closePopup');
const modal = document.getElementById('formModal');

// Otvaranje popup-a na klik bilo kog dugmeta
openBtns.forEach(btn => {
  btn?.addEventListener('click', () => {
    modal.style.display = 'flex';
  });
});

// Zatvaranje klikom na X
closeBtn.addEventListener('click', () => modal.style.display = 'none');

// Zatvaranje klikom van forme
modal.addEventListener('click', (e) => {
  if (e.target === modal) modal.style.display = 'none';
});
</script></div><div class="div-block-433 startup-form-div hubspot-form-wrap"><div class="w-embed w-iframe"><div class="form-desktop">
  <iframe src="https://2f2cdj.share-eu1.hsforms.com/22G88JO6nQUGWJRLRVSeQAw" title="Paypercut form desktop" loading="lazy" scrolling="auto" style="width:100%; height:1150px; border:0; display:block;"></iframe>
</div>
<style>
h1.hsfc-Heading {
  margin: 0!important;
}
  .hsfc-Step__Content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
</style></div><div class="text-block-151 fill-campaign">Read the full campaign terms and conditions <a href="/terms-conditions-for-startups" target="_blank">here</a>.</div></div></section><section class="subtitle-section"><div><h2 class="faq-title"><strong class="bold-text-151">Frequently Asked Questions</strong></h2><div class="faq-product-wrapper-section"><section class="faq-product-section"><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47ba-1092e7c0" class="dropdown-faq-title"></div><div class="wrapper-dropdown-faq-item"><div data-w-id="fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47bc" class="faq-item"><div class="faq-item-header"><div class="wrapper-faq-left-header"><h3 class="position-title"><strong class="position-title-bold">How long does the application take?</strong></h3></div><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47c4-1092e7c0" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform-style:preserve-3d" class="wrapper-faq-icon-header"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="icon-faq-header dropdown-icon"></div></div><div style="display:none" class="faq-answer position-answer"><p class="faq-answer-text">The application form is designed to be quick and straightforward. Once you’ve submitted your details, <span class="bold-text-156">our team will review your application and get back to you as soon as possible</span> with the next steps. </p></div></div><div data-w-id="fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47c9" class="faq-item"><div class="faq-item-header"><div class="wrapper-faq-left-header"><h3 class="position-title"><strong class="position-title-bold">Is it difficult to switch to Paypercut?</strong></h3></div><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47d1-1092e7c0" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform-style:preserve-3d" class="wrapper-faq-icon-header"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="icon-faq-header dropdown-icon"></div></div><div style="display:none" class="faq-answer position-answer"><p class="faq-answer-text">Not at all. Our platform is built for <span class="bold-text-156">fast and simple integration.</span> With developer-first documentation and a &quot;plug and play&quot; API, we’ve made the transition as seamless as possible.</p></div></div><div data-w-id="fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47d6" class="faq-item"><div class="faq-item-header"><div class="wrapper-faq-left-header"><h3 class="position-title"><strong class="position-title-bold">Are there any upfront costs?</strong></h3></div><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47dd-1092e7c0" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform-style:preserve-3d" class="wrapper-faq-icon-header"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="icon-faq-header dropdown-icon"></div></div><div style="display:none" class="faq-answer position-answer"><p class="faq-answer-text"><span class="bold-text-156">Zero.</span> There are no setup fees, no monthly subscriptions, and no hidden costs to join the program. We aim to be the <span class="bold-text-156">best online payment gateway for startups in CEE</span> by offering a true partnership model: you only pay a small fee for <span class="bold-text-156">successful transactions,</span> meaning we only grow when you do.</p></div></div><div data-w-id="fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47e2" class="faq-item"><div class="faq-item-header"><div class="wrapper-faq-left-header"><h3 class="position-title"><strong class="position-title-bold">Is there really no lock-in contract?</strong></h3></div><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47e9-1092e7c0" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform-style:preserve-3d" class="wrapper-faq-icon-header"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="icon-faq-header dropdown-icon"></div></div><div style="display:none" class="faq-answer position-answer"><p class="faq-answer-text"><span class="bold-text-156">None.</span> You benefit from our transparent pricing and the €10,000 in benefits without any long-term commitment. You can leave at any time, though we’re confident our tech will make you want to stay.</p></div></div><div data-w-id="fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47ee" class="faq-item"><div class="faq-item-header"><div class="wrapper-faq-left-header"><h3 class="position-title"><strong class="position-title-bold">Do I need to be VC-backed to join the program?</strong></h3></div><div id="w-node-fe432a75-f6ff-d1b6-2c9c-0b4ce2ae47f5-1092e7c0" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0, 0);transform-style:preserve-3d" class="wrapper-faq-icon-header"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6915fd02a6296a5dc7699627_dropdown%20plus.svg" alt="dropdown plus" class="icon-faq-header dropdown-icon"></div></div><div style="display:none" class="faq-answer position-answer"><p class="faq-answer-text">No. While many <span class="bold-text-156">equity-free startup programs in Central and Eastern Europe</span> focus strictly on venture capital, we celebrate growth in all its forms. We support both <span class="bold-text-156">VC-funded startups</span> looking to scale fast and <strong class="bold-text-156">bootstrapped heroes</strong> building sustainable businesses on their own terms.</p></div></div></div></section></div></div></section><section class="cta scroll-effect"><div class="w-layout-grid grid-cta"><div class="left-section-cta"><div class="cta-title">Try Paypercut’s online payments demo.</div><div class="cta-description">See how your customers will pay - cards, wallets, links, and QR - before you sign up.</div></div><div id="w-node-_08cb8bfd-1afd-144b-204d-ea5f6500ccc2-6500ccb5" class="right-section-cta"><div class="cta-button"><a data-w-id="08cb8bfd-1afd-144b-204d-ea5f6500ccbe" href="https://demo.paypercut.io/" class="cta-link-wrapper large-link w-inline-block"><div class="cta-text"><strong class="bold-text-52">Explore demo</strong></div><div class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a><a data-w-id="3ceb86f1-7d67-8b7c-ea0d-47f8d2bd9b1a" href="/contact-us" class="cta-link-wrapper small w-inline-block"><div class="cta-text"><strong class="bold-text-53">Contact us</strong></div><div class="arrow-link-right w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></a></div></div></div></section><section class="footer"><div id="w-node-_070a7370-76e2-99b1-05b7-32f6c3ab7f56-c3ab7f55" class="div-block-3"><div class="div-block-371"><a href="/" class="link-block-3 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69148ea17ff066ec9c5e1979_paypercut%20logo%20white%20mode.svg" loading="lazy" alt="paypercut logo"></a><div class="text-block-117"><strong>Paypercut EOOD</strong>, company number 208256434, is a SaaS company providing a technical platform and ancillary non-regulated services. Regulated payment and e-money services are provided by authorised partners including <strong>Paynetics AD</strong>, company number 131574695, an electronic money institution licensed and regulated by the Bulgarian National Bank and passported to provide services across the European Economic Area and <strong>Adyen NV</strong>, company number 34259528 a credit institution licensed and regulated by the Dutch Central Bank (De Nederlandsche Bank) and passported to provide services across the European Economic Area.</div></div><div class="div-block-370"><div class="div-block-446"><a href="https://www.trustpilot.com/review/paypercut.co" target="_blank" class="div-block-445 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69554c883ce7d6068e69841b_icons8-trustpilot.svg" loading="lazy" alt="icons8-trustpilot" class="image-70"></a><a href="https://www.g2.com/products/paypercut/reviews" target="_blank" class="div-block-442 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/693f02ab4beedfc840283a57_g2.svg" loading="lazy" alt="g2" class="image-69"></a></div><div class="text-block-9">© 2026 Paypercut. All rights reserved.</div></div></div><div><div class="text-block-7">Company</div><div class="div-block-4"><a href="/blog" class="blog-link-footer">Blog</a><a href="/pricing" class="text-block-8">Pricing</a><a href="/about-us" class="text-block-8">About us</a><a href="/blog" class="text-block-8">Blog</a><a href="/frequently-asked-questions" class="faq-link-footer">FAQ</a><a href="/contact-us" class="text-block-8">Contact</a><a href="/partnerships" class="text-block-8">Partnerships</a></div></div><div><div class="text-block-7">Business type</div><div class="div-block-4"><a href="/blog" class="blog-link-footer">Blog</a><a href="/retail-online-stores" class="text-block-8">Retail &amp; online stores</a><a href="/hospitality-food" class="text-block-8">Hospitality &amp; food</a><a href="/health-beauty-wellness" class="text-block-8">Health, beauty &amp; wellness</a><a href="/transport-delivery-mobility" class="faq-link-footer">Transport, delivery &amp; mobility</a><a href="/charities-nonprofits" class="text-block-8">Charities &amp; nonprofits</a><a href="/paypercut-for-startups" aria-current="page" class="text-block-8 w--current">Startups</a></div></div><div><div class="text-block-7">Products</div><div class="div-block-4"><a href="/online-checkout" class="text-block-8">Online checkout</a><a href="/payment-links-qr-codes" class="text-block-8">Payment Links &amp; QR Codes</a><a href="/billing-payouts" class="text-block-8">Billing &amp; Payouts</a><a href="/bnpl-aggregator" class="text-block-8">BNPL aggregator</a></div></div><div><div class="text-block-7">Resources</div><div class="div-block-4"><a href="/privacy-policy" class="text-block-8">Privacy Policy</a><a href="/terms-conditions" class="text-block-8">Terms &amp; Conditions</a><a href="https://docs.paypercut.io/docs/introduction" target="_blank" class="text-block-8">Documentation</a><a href="/security/vulnerability-disclosure-policy" class="text-block-8">Vulnerability Disclosure Policy</a></div></div><div id="w-node-_070a7370-76e2-99b1-05b7-32f6c3ab7f77-c3ab7f55" class="div-block-514"><div><div class="text-block-7">Social</div><div class="div-block-4"><a href="https://www.linkedin.com/company/paypercut/" target="_blank" class="div-block-5 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914b780f2ae6e7f5dd7431a_linkedin.svg" loading="lazy" alt="" class="image-4"><div class="text-block-8">LinkedIn</div></a><div class="twitter-wrapper"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914b7cc17114dde04699b5e_twitter.svg" loading="lazy" alt="twitter" class="image-4"><div class="text-block-8">Twitter</div></div><a href="https://www.instagram.com/paypercut.co/" target="_blank" class="instagram-wrapper w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914b7cc536e62c87743a115_instagram.svg" loading="lazy" alt="" class="image-4"><div class="text-block-8">Instagram</div></a><a href="https://www.facebook.com/people/Paypercut/61587366274392/" target="_blank" class="facebook-wrapper w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/699847d8b83d521998678898_facebook%20icon.svg" loading="lazy" alt="" class="image-4"><div class="text-block-8">Facebook</div></a><div class="tiktok-wrapper"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6914b7cc83fdb7bbf77ba2ee_tiktok.svg" loading="lazy" alt="tiktok" class="image-4"><div class="text-block-8">TikTok</div></div></div></div><div class="desktop"><div id="langDropdown" class="lang-dropdown lang-dropdown-js w-node-_576b31a6-7866-558c-a6cc-7fa250af78a6-c3ab7f55"><div class="lang-dropdown-wrapper"><a data-lang="en" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" alt="eu" class="image-93"></div><div class="country-label"><div>Rest of EU</div></div></a><a data-lang="bg" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b154254ed283d713132ed_bulgaria%20flag.svg" alt="bulgaria flag" class="image-93"></div><div class="country-label"><div>Bulgaria</div></div></a><a data-lang="el" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542cc66f739947f64be_greece%20flag.svg" alt="greece flag" class="image-93"></div><div class="country-label"><div>Greece</div></div></a><a data-lang="ro" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542a40ba87baccc4e12_romania%20flag.svg" alt="romania flag" class="image-93"></div><div class="country-label"><div>Romania</div></div></a><a data-lang="hu" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542d59fa106419e11a4_hungary%20flag.svg" alt="hungary flag" class="image-93"></div><div class="country-label"><div>Hungary</div></div></a><a data-lang="pl" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b15423f1b830d9b4e3955_poland%20flag.svg" alt="poland flag" class="image-93"></div><div class="country-label"><div>Poland</div></div></a><a data-lang="gb" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6a8ef54da77a7d3895b23c87_2865544f48c39d8d562adc3a1d61fc16_Flag_of_the_United_Kingdom_%283-5%29.png" alt="" class="image-93"></div><div class="country-label"><div>Great Britain</div></div></a></div><div class="country-selected-2"><div class="div-block-515"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" alt="eu" class="image-93"></div><div class="country-label"><div><strong class="bold-text-222">Rest of EU</strong></div></div></div><div class="country-arrow"><div class="code-embed-9 w-embed"><svg class="ml-2" width="8" height="8" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1.02637 6.46411L3.55268 8.99041L6.079 6.46411" stroke="currentColor" stroke-width="0.842105" stroke-linecap="round" stroke-linejoin="round"></path>
  <path d="M6.079 3.09565L3.55268 0.569336L1.02637 3.09565" stroke="currentColor" stroke-width="0.842105" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div></div></div></div></div><div id="w-node-dd918625-80b7-8667-6fd2-92cc5bae737e-c3ab7f55" class="mobile-footer-text"><div class="div-block-446"><div id="w-node-aec6b8d0-dfad-1e58-4400-317f371ac1f6-c3ab7f55" class="div-block-516"><a href="https://www.trustpilot.com/review/paypercut.co" target="_blank" class="div-block-445 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69554c883ce7d6068e69841b_icons8-trustpilot.svg" loading="lazy" alt="icons8-trustpilot" class="image-70"></a><a href="https://www.g2.com/products/paypercut/reviews#features](https://www.g2.com/products/paypercut/reviews#features" target="_blank" class="div-block-442 w-inline-block"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/693f02ab4beedfc840283a57_g2.svg" loading="lazy" alt="g2" class="image-69"></a></div><div id="w-node-e9c977d3-010b-92d9-5ff4-4d170444ba1e-c3ab7f55"><div id="langDropdownMobile" class="lang-dropdown lang-dropdown-js w-node-_4ce193a0-dde2-86e1-a55b-0d1972808654-c3ab7f55"><div class="lang-dropdown-wrapper"><a data-lang="en" href="https://paypercut.com/" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" alt="eu" class="image-93"></div><div class="country-label"><div>Rest of EU</div></div></a><a data-lang="bg" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b154254ed283d713132ed_bulgaria%20flag.svg" alt="bulgaria flag" class="image-93"></div><div class="country-label"><div>Bulgaria</div></div></a><a data-lang="el" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542cc66f739947f64be_greece%20flag.svg" alt="greece flag" class="image-93"></div><div class="country-label"><div>Greece</div></div></a><a data-lang="ro" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542a40ba87baccc4e12_romania%20flag.svg" alt="romania flag" class="image-93"></div><div class="country-label"><div>Romania</div></div></a><a data-lang="pl" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b15423f1b830d9b4e3955_poland%20flag.svg" alt="poland flag" class="image-93"></div><div class="country-label"><div>Poland</div></div></a><a data-lang="hu" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b1542d59fa106419e11a4_hungary%20flag.svg" alt="hungary flag" class="image-93"></div><div class="country-label"><div>Hungary</div></div></a><a data-lang="gb" href="#" class="lang-dropdown-options w-inline-block"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/6a8ef54da77a7d3895b23c87_2865544f48c39d8d562adc3a1d61fc16_Flag_of_the_United_Kingdom_%283-5%29.png" alt="" class="image-93"></div><div class="country-label"><div>Great Britain</div></div></a></div><div class="country-selected-2"><div class="div-block-515"><div class="country-flag"><img loading="lazy" src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/691b2e06fdf51ca312216b69_european-union-flag-circular-17759.svg" alt="eu" class="image-93"></div><div class="country-label"><div><strong class="bold-text-222">Rest of EU</strong></div></div></div><div class="country-arrow"><div class="dropdown-image w-embed"><svg width="8" height="8" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 1L6 6L1 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></div></div></div></div></div></div><div class="text-block-9">© 2026 Paypercut. All rights reserved.</div></div></section><div class="main-popup"><div class="div-block-538"><div class="div-block-542"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69861689539e9232bab9889f_popup%20exit.svg" loading="lazy" alt="popup exit" class="popup-exit"></div><div class="div-block-540"><div class="div-block-539"><div class="text-block-196"><span class="text-span-20">No fees on your first 1,000 EUR</span> processed.</div><div class="text-block-197">Start accepting online card payments.</div><div class="text-block-198">For new merchants only. Valid until 31 July 2026.</div><a href="https://dashboard.paypercut.io/register" class="div-block-533 register-button w-inline-block"><div class="text-block-194">Register now</div><div><div class="code-embed-10 w-embed"><svg viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.30292 4.59936C8.06359 4.31216 7.63675 4.27336 7.34955 4.51269C7.06235 4.75202 7.02355 5.17886 7.26288 5.46606L7.7829 5.03271L8.30292 4.59936ZM10.7745 8.62263L11.2945 9.05598C11.5037 8.80495 11.5037 8.44031 11.2945 8.18928L10.7745 8.62263ZM7.26288 11.7792C7.02354 12.0664 7.06235 12.4932 7.34955 12.7326C7.63675 12.9719 8.06359 12.9331 8.30292 12.6459L7.7829 12.2125L7.26288 11.7792ZM7.7829 5.03271L7.26288 5.46606L10.2545 9.05598L10.7745 8.62263L11.2945 8.18928L8.30292 4.59936L7.7829 5.03271ZM10.7745 8.62263L10.2545 8.18928L7.26288 11.7792L7.7829 12.2125L8.30292 12.6459L11.2945 9.05598L10.7745 8.62263ZM8.79878 0.679688L8.79878 1.3566C12.9111 1.3566 16.2449 4.69033 16.2449 8.80269L16.9218 8.80269H17.5987C17.5987 3.94263 13.6588 0.0027706 8.79878 0.00277084V0.679688ZM16.9218 8.80269L16.2449 8.80269C16.2449 12.915 12.9111 16.2488 8.79878 16.2488V16.9257V17.6026C13.6588 17.6026 17.5987 13.6627 17.5987 8.80269H16.9218ZM8.79878 16.9257V16.2488C4.68642 16.2488 1.3527 12.915 1.3527 8.80269H0.675781H-0.00113541C-0.00113517 13.6627 3.93872 17.6026 8.79878 17.6026V16.9257ZM0.675781 8.80269H1.3527C1.3527 4.69033 4.68642 1.3566 8.79878 1.3566L8.79878 0.679688V0.00277084C3.93872 0.00277108 -0.00113565 3.94263 -0.00113541 8.80269H0.675781Z" fill="#021A1B"></path>
</svg></div></div></a><div class="text-block-199">Applies to processed online card payment transactions.<a href="/terms-conditions" class="link-31"> Terms and conditions apply.</a></div></div><div class="div-block-541"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69861486823928f1e0314322_coin%20for%20popup.svg" loading="eager" alt="coin for popup" class="image-97"><img src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/698617cb95bd8f155c8c9c5f_mobile%20popupcoin.svg" loading="eager" alt="mobile popupcoin" class="image-97 mobile"></div></div></div></div></div></main><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=69147d639d7c92c83d55ca43" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/js/webflow.schunk.36b8fb49256177c8.js" type="text/javascript" integrity="sha384-4abIlA5/v7XaW1HMXKBgnUuhnjBYJ/Z9C1OSg4OhmVw9O3QeHJ/qJqFBERCDPv7G" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/js/webflow.schunk.4ebac29b461dc30b.js" type="text/javascript" integrity="sha384-rRMokiCghPUarkUQq6IPlYPmR7ai1BbfjNPt90FdE65Kjn7Bfa7nDpIbmb6jBI4Y" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/js/webflow.02ec9acc.d9fb85b0322fc338.js" type="text/javascript" integrity="sha384-U9yaUAGG0qEi7EV42Am5xqWqM9bFtSixPYs0YjWl3wQekB+FIK8HliBC66a15RrT" crossorigin="anonymous"></script><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NCRZH88Z" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->

<!-- Popup banner -->
<script>
document.addEventListener("DOMContentLoaded", () => {
  const popup = document.querySelector(".main-popup");
  if (!popup) return;
  const closeBtn = popup.querySelector(".popup-exit");
  const popupContent = popup.querySelector(".div-block-538");
  const SHOW_AT = 10;
  let shown = false;
  popup.style.display = "none";
  function checkScroll() {
    if (shown) return;
    const scrollTop = window.scrollY || document.documentElement.scrollTop || 0;
    const maxScroll = Math.max(1, document.documentElement.scrollHeight - window.innerHeight);
    const scrollPercent = (scrollTop / maxScroll) * 100;
    if (scrollPercent >= SHOW_AT) {
      popup.style.display = "flex";
      shown = true;
    }
  }
  checkScroll();
  window.addEventListener("scroll", checkScroll, { passive: true });
  if (closeBtn) {
    closeBtn.addEventListener("click", (e) => {
      e.preventDefault();
      popup.style.display = "none";
      shown = true;
    });
  }
  popup.addEventListener("click", (e) => {
    if (!popupContent.contains(e.target)) {
      popup.style.display = "none";
      shown = true;
    }
  });

});
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
  const sliders = Array.from(document.querySelectorAll('.slider.w-slider'));
  if (!sliders.length) return;
  sliders.forEach(function (slider) {
    const prevBtn = slider.querySelector('.custom-prev') || document.querySelector('.custom-prev');
    const nextBtn = slider.querySelector('.custom-next') || document.querySelector('.custom-next');
    const wfPrev = slider.querySelector('.w-slider-arrow-left');
    const wfNext = slider.querySelector('.w-slider-arrow-right');
    if (prevBtn && wfPrev) {
      prevBtn.addEventListener('click', function (e) {
        e.preventDefault();
        wfPrev.click();
      });
    }
    if (nextBtn && wfNext) {
      nextBtn.addEventListener('click', function (e) {
        e.preventDefault();
        wfNext.click();
      });
    }
    if (!wfNext) return;
    const DELAY = 10000;
    let autoplayInterval = null;
    function startAutoplay() {
      if (autoplayInterval) return;
      autoplayInterval = setInterval(function () {
        wfNext.click();
      }, DELAY);
    }
    function stopAutoplay() {
      clearInterval(autoplayInterval);
      autoplayInterval = null;
    }
    const observer = new IntersectionObserver(
      function (entries) {
        entries.forEach(function (entry) {
          if (entry.isIntersecting) startAutoplay();
          else stopAutoplay();
        });
      },
      { threshold: 0.4 }
    );
    observer.observe(slider);
  });
});
</script>
<script>
document.addEventListener("DOMContentLoaded", () => {
  const grids = Array.from(document.querySelectorAll(".teaser-grid"));
  if (!grids.length) return;
  const getNumFromClass = (el) => {
    const cls = Array.from(el.classList).find(c => /^_\d+$/.test(c));
    return cls ? parseInt(cls.replace("_", ""), 10) : NaN;
  };
  grids.forEach((grid) => {
    const leftCol = grid.querySelector(".teaser-column");
    const rightWrap = grid.querySelector(".teaser-column.column-2 .p-teaser-img-wrap");
    if (!leftCol || !rightWrap) return;
    const steps = Array.from(leftCol.querySelectorAll(".teaser-copy-wrap"));
    if (!steps.length) return;
    const images = Array.from(rightWrap.querySelectorAll(".teaser-img"))
      .map(img => ({ img, n: getNumFromClass(img) }))
      .filter(x => Number.isFinite(x.n))
      .sort((a,b) => a.n - b.n)
      .map(x => x.img);
    if (!images.length) return;
    const count = Math.min(steps.length, images.length);
    images.forEach(img => img.classList.remove("is-active"));
    images[0].classList.add("is-active");
    const setActive = (i) => {
      const idx = Math.max(0, Math.min(count - 1, i));
      for (let k = 0; k < count; k++) {
        images[k].classList.toggle("is-active", k === idx);
      }
      grid.dataset.activeStep = String(idx);
    };
    const io = new IntersectionObserver((entries) => {
      const visible = entries
        .filter(e => e.isIntersecting)
        .sort((a,b) => (b.intersectionRatio - a.intersectionRatio))[0];

      if (!visible) return;
      const idx = steps.indexOf(visible.target);
      if (idx !== -1) setActive(idx);
    }, {
      root: null,
      threshold: [0.15, 0.25, 0.35, 0.5, 0.65, 0.8],
      rootMargin: "-35% 0px -45% 0px"
    });
    steps.slice(0, count).forEach(step => io.observe(step));
    requestAnimationFrame(() => {
      const found = steps.slice(0, count).findIndex((el) => {
        const r = el.getBoundingClientRect();
        const mid = window.innerHeight * 0.5;
        return r.top < mid && r.bottom > mid;
      });
      if (found >= 0) setActive(found);
      else setActive(0);
    });
  });
});
</script>
<script>
(function () {
  window.Webflow ||= [];
  window.Webflow.push(function () {
    const dropdowns = document.querySelectorAll('.lang-dropdown-js');
    if (!dropdowns.length) return;
    function closeAll() {
      dropdowns.forEach(d => d.classList.remove('is-open'));
    }
    document.addEventListener('click', closeAll);
    dropdowns.forEach(dropdown => {
      const toggle = dropdown.querySelector('.country-selected-2');
      const options = dropdown.querySelectorAll('a.lang-dropdown-options');
      if (!toggle || !options.length) return;
      dropdown.addEventListener('click', e => e.stopPropagation());
      options.forEach(opt => {
        opt.addEventListener('click', () => {
          options.forEach(o => o.classList.remove('is-active'));
          opt.classList.add('is-active');
          dropdown.classList.remove('is-open');
        });
      });
      toggle.addEventListener('click', e => {
        e.preventDefault();
        e.stopPropagation();
        const isOpen = dropdown.classList.contains('is-open');
        closeAll();
        if (!isOpen) dropdown.classList.add('is-open');
      });
    });
  });
})();
</script>

<script>
document.addEventListener('DOMContentLoaded', function () {
  const langMap = {
    bg: 'bg-BG',
    cs: 'cs-CZ',
    el: 'el-GR',
    en: 'en-GB',
    hu: 'hu-HU',
    pl: 'pl-PL',
    ro: 'ro-RO'
  };
  const path = window.location.pathname.toLowerCase();
  const firstSegment = path.split('/').filter(Boolean)[0] || 'en';
  const selectedLang = langMap[firstSegment] || 'en-GB';
  const registerUrl = `https://dashboard.paypercut.io/register?lang=${selectedLang}`;
  const buttons = document.querySelectorAll('.register-button');
  buttons.forEach((btn) => {
    if (btn.tagName === 'A') {
      btn.setAttribute('href', registerUrl);
    }
    btn.addEventListener('click', function () {
      window.location.href = registerUrl;
    });
  });
});
</script></body></html>