<!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="69b8665d484c7ab95eaf40da" data-wf-site="69147d639d7c92c83d55ca43" lang="en"><head><meta charset="utf-8"><link href="https://cdn.prod.website-files.com" rel="preconnect" crossorigin="anonymous"><title>Terms &amp; Conditions for Startups</title><meta content="Read Paypercut Startup Program terms &amp; conditions, including eligibility, 24-month fee structure, €10,000 fee cap, and promotional pricing rules." name="description"><meta content="Terms &amp; Conditions for Startups" property="og:title"><meta content="Read Paypercut Startup Program terms &amp; conditions, including eligibility, 24-month fee structure, €10,000 fee cap, and promotional pricing rules." property="og:description"><meta content="https://cdn.prod.website-files.com/69147d639d7c92c83d55ca43/69f496db751cc21aaa95dc8a_paypercut%20graph%20image.avif" property="og:image"><meta content="Terms &amp; Conditions for Startups" name="twitter:title"><meta content="Read Paypercut Startup Program terms &amp; conditions, including eligibility, 24-month fee structure, €10,000 fee cap, and promotional pricing rules." 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/terms-conditions-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": "Terms & Conditions for Startups",
    "item": "https://paypercut.com/terms-conditions-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><script type="application/json" id="weglot-data">{"allLanguageUrls":{"en":"https://paypercut.com/terms-conditions-for-startups","gb":"https://paypercut.com/gb/terms-conditions-for-startups","bg":"https://paypercut.com/bg/terms-conditions-for-startups","ro":"https://paypercut.com/ro/terms-conditions-for-startups","pl":"https://paypercut.com/pl/terms-conditions-for-startups","el":"https://paypercut.com/el/terms-conditions-for-startups","hu":"https://paypercut.com/hu/terms-conditions-for-startups"},"originalCanonicalUrl":"https://paypercut.com/terms-conditions-for-startups","originalPath":"/terms-conditions-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/terms-conditions-for-startups" hreflang="en" rel="alternate"><link href="https://paypercut.com/gb/terms-conditions-for-startups" hreflang="gb" rel="alternate"><link href="https://paypercut.com/bg/terms-conditions-for-startups" hreflang="bg" rel="alternate"><link href="https://paypercut.com/ro/terms-conditions-for-startups" hreflang="ro" rel="alternate"><link href="https://paypercut.com/pl/terms-conditions-for-startups" hreflang="pl" rel="alternate"><link href="https://paypercut.com/el/terms-conditions-for-startups" hreflang="el" rel="alternate"><link href="https://paypercut.com/hu/terms-conditions-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" class="link-block-11 w-inline-block"><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="container"><div class="div-block-543"><h1 class="heading-39"><strong>Paypercut for Startups – Supplemental Terms &amp; Conditions</strong></h1><div class="text-block-201"><strong>Effective Date:</strong><em> </em>16 March 2026<br><br>These Paypercut for Startups Supplemental Terms &amp; Conditions (“<strong>Startup Terms</strong>”) apply to merchants participating in the <strong>Paypercut for Startups Program</strong> (“<strong>Program</strong>”) operated by <strong>Paypercut EOOD</strong> (“<strong>Paypercut</strong>”, “<strong>we</strong>”, “<strong>our</strong>”, “<strong>us</strong>”).<br><br>These Startup Terms supplement the Paypercut Merchant Terms and Conditions Version 1.4 (the “<strong>Merchant Agreement</strong>”). Terms used in these Startup Terms have the same meaning as defined in the Merchant Agreement unless otherwise defined in these Startup Terms. In the event of any conflict between these Startup Terms and the Merchant Agreement, these Startup Terms will prevail solely with respect to the Program benefits.<br><br>By registering for the Program, the merchant (“<strong>Startup</strong>”, “<strong>you</strong>”, “<strong>your</strong>”) agrees to these Startup Terms.</div><h2 class="heading-40">1. <strong>Program Overview</strong></h2><div class="text-block-201">The Program provides eligible early-stage startups with certain fee waivers and fee reductions when using payment processing services provided by Paypercut under the terms of the Merchant Agreement. <br><br>You agree to participate in the Program in good faith and in accordance with its intended purpose which is to support genuine early-stage businesses processing legitimate customer payments.<br><br>Participation in the Program is subject to eligibility review and approval by Paypercut.</div><h2 class="heading-40">2. <strong>Eligibility</strong></h2><div class="text-block-201"><strong>2.1. Primary Eligibility Criteria.<br>‍</strong>To participate in the Program, you must:<br>- Be a legally registered business entity with a live website.<br>- Be in an early-stage phase, including Idea, MVP, First Clients or Early Scaling.<br>- Register with Paypercut either: (a) through an approved Paypercut partner, accelerator, venture capital firm, ecosystem organisation, or official Program registration channel; or (b) directly with Paypercut.<br>- Complete the Program application form and provide us requested information including:<br>         - Company website.<br>         - Founding date.<br>         - Company description.<br>         - Funding information.<br>         - Media or public references (if available).<br><br>Paypercut reserves the right to accept or reject an application at its sole discretion. Paypercut may also limit participation to start ups in specific jurisdictions or industries depending on regulatory or risk considerations.<br><br><strong>2.2.</strong> <strong>Multiple Entity/Founder Re-Enrolment Restriction<br><br>‍</strong>To prevent repeated use of Program benefits through multiple business registrations, the Program is limited to one eligible startup per founding team or controlling ownership group. For the purposes of the Program, Paypercut may consider entities to be related if they share:<br>- Founders, directors, or key executives.<br>- Majority shareholders or controlling interests.<br>- Beneficial ownership.<br>- Substantially similar business operations, brands, or websites.<br>- Shared infrastructure, payment flows, or operational control.<br><br>Where we reasonably determine that multiple entities are controlled by the same founders or ownership group, we may:<br>- Limit Program eligibility to one entity only.<br>- Terminate Program benefits for additional entities.<br><br>We may also decline applications where the Program is used to restructure or relaunch substantially similar businesses to obtain additional Program benefits.<br><br>‍<strong>Genuine Startup Qualification.<br><br>‍</strong>The Program is intended exclusively for early-stage startups. Companies that are already operating at scale or that primarily act as subsidiaries, special purpose vehicles, or operating entities of established businesses may not qualify. We will assess startup maturity based on reasonable commercial indicators, including:<br>- Historical transaction volumes.<br>- Employee count.<br>- Capital raised.<br>- Operational history.<br>- Corporate structure.<br><br>If a Startup is determined to fall outside the intended scope of the Program, Paypercut may withdraw Program benefits and reclassify the account to its standard Fees under the terms of the Merchant Agreement.</div><div class="text-block-205"><strong class="bold-text-240">3. Program Duration</strong></div><div class="text-block-201">The Program lasts for 24 months from your successful registration date with Paypercut (“<strong>Program Period</strong>”) and is structured in three phases.<br><br>‍<strong>3.1 Phase 1 Launchpad Months 1 to 6.<br><br>‍</strong>During the first six (6) months of the Program Period commencing on your successful registration:<br>- Paypercut will waive Fees payable by you under Section 5.1.1 of the Merchant Agreement and apply 0% transaction fees on the total transaction volume processed by you up to a maximum of €10,000 per calendar month, in your selected eligible currency.<br>- The monthly fee waiver does not roll over, and any unused fee waiver expires at the end of each calendar month. <br>- For transaction volumes exceeding €10,000 per calendar month, the reduced Program pricing schedule contemplated in Section 3.2 applies to calculating the Fees then payable by you.<br><br>‍<strong>3.2 Phase 2 Growth Phase Months 7 to 24.<br><br>‍</strong>From month seven (7) through to month twenty four (24) of the Program Period, the following reduced Fees are payable by you:</div><div class="toc-table w-embed"><div class="fee-table-card">
  <table class="fee-table" role="table" aria-label="Card processing fees by currency">
    <thead>
      <tr>
        <th scope="col" class="main-head currency-head">Currency</th>
        <th colspan="2" scope="colgroup" class="main-head">EEA Consumer Visa <br>&amp; Mastercard</th>
        <th colspan="2" scope="colgroup" class="main-head">All other cards</th>
      </tr>
      <tr>
        <th class="sub-head empty-head">&nbsp;</th>
        <th scope="col" class="sub-head">Variable Fee</th>
        <th scope="col" class="sub-head">Fixed Fee</th>
        <th scope="col" class="sub-head">Variable Fee</th>
        <th scope="col" class="sub-head">Fixed Fee</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td data-label="Currency">EUR</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">0.10 EUR</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.10 EUR</td>
      </tr>
      <tr>
        <td data-label="Currency">USD</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">0.10 USD</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.10 USD</td>
      </tr>
      <tr>
        <td data-label="Currency">GBP</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">0.10 GBP</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.10 GBP</td>
      </tr>
      <tr>
        <td data-label="Currency">CHF</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">0.10 CHF</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.10 CHF</td>
      </tr>
      <tr>
        <td data-label="Currency">RON</td>
        <td data-label="EEA Variable Fee">0.99%</td>
        <td data-label="EEA Fixed Fee">0.25 RON</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.25 RON</td>
      </tr>
      <tr>
        <td data-label="Currency">CZK</td>
        <td data-label="EEA Variable Fee">0.99%</td>
        <td data-label="EEA Fixed Fee">1.25 CZK</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">1.25 CZK</td>
      </tr>
      <tr>
        <td data-label="Currency">PLN</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">0.25 PLN</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">0.25 PLN</td>
      </tr>
      <tr>
        <td data-label="Currency">HUF</td>
        <td data-label="EEA Variable Fee">1.11%</td>
        <td data-label="EEA Fixed Fee">25.00 HUF</td>
        <td data-label="Other Cards Variable Fee">2.69%</td>
        <td data-label="Other Cards Fixed Fee">25.00 HUF</td>
      </tr>
    </tbody>
  </table>
</div>

<style>
  .fee-table-card {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 8px;
    overflow: hidden;
  }

  .fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font: inherit;
    color: inherit;
  }

  .fee-table th,
  .fee-table td {
    padding: 18px 24px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .fee-table th:last-child,
  .fee-table td:last-child {
    border-right: 0;
  }

  .fee-table tbody tr:last-child td {
    border-bottom: 0;
  }

  /* MAIN HEADERS */
  .main-head {
    font-weight: 700;
    font-size: 1.05em;
    padding-top: 22px;
    padding-bottom: 10px;
  }

  /* SUB HEADERS */
  .sub-head {
    font-weight: 600;
    font-size: 0.92em;
    padding: 12px 24px;
    vertical-align: middle;
    opacity: 0.8;
  }

  /* EMPTY CELL (keeps borders visible) */
  .empty-head {
    color: transparent;
  }

  .fee-table td:first-child,
  .fee-table th:first-child {
    white-space: nowrap;
  }

  /* MOBILE */
  @media screen and (max-width: 767px) {
    .fee-table,
    .fee-table thead,
    .fee-table tbody,
    .fee-table tr,
    .fee-table th,
    .fee-table td {
      display: block;
      width: 100%;
    }

    .fee-table thead {
      display: none;
    }

    .fee-table tbody tr {
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      padding: 8px 0;
    }

    .fee-table tbody td {
      border: 0;
      padding: 12px 16px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      text-align: right;
    }

    .fee-table tbody td::before {
      content: attr(data-label);
      font-weight: 600;
      text-align: left;
      flex: 0 0 52%;
      opacity: 0.8;
    }

    .fee-table tbody td:first-child {
      font-weight: 700;
    }
  }
</style></div><div class="text-block-201"><strong>3.4. Phase 3 Standard Pricing Month 25 onwards.<br><br>‍</strong>After the 24-month Program Period expires, your account will automatically transition to, and you will be liable for, Paypercut’s standard pricing under the Fee Schedule of the Merchant Agreement (unless a separate commercial agreement is agreed between you and Paypercut).<br><br><strong>3.4.</strong> <strong>Eligible Currency.<br>‍<br>‍</strong>At the time of registering for the Program, you must select one primary processing currency eligible for the Phase 1 benefits. Only transactions processed in your selected currency qualify for the Phase 1 fee waiver. Transactions processed in other currencies will be charged according to the reduced Program pricing schedule set out in Section 3.2.<br><br><strong>3.5.</strong> <strong>Aggregate Program Cap.<br>‍<br>‍</strong>The aggregate value of waived or reduced Fees payable by Startup during the Program Period is capped at €10,000 and once this cap is reached, you agree that the standard Paypercut pricing will apply for the remainder of the Program Period to all transaction volumes processed unless we otherwise agree.</div><div class="text-block-205"><strong class="bold-text-240">4. Program Limits</strong></div><div class="text-block-201">Program benefits are subject to the following limitations:<br>- Aggregate Program cap: €10,000 total fee savings as set out in Section 3.5.<br>- Maximum duration: 24 months.<br>- Monthly fee waiver limit: €10,000 total transaction volume processed by you per month during Phase 1.<br><br>Program benefits:<br>- Cannot be transferred.<br>- Cannot be exchanged for cash.<br>- Cannot be combined with other promotional programs unless explicitly approved by Paypercut.</div><div class="text-block-205"><strong class="bold-text-240">5. Compliance &amp; Account Approval</strong></div><div class="text-block-201">Your participation in the Program is not guaranteed until you successfully complete our registration process and our due diligence checks including:<br>- Identity verification.<br>- Business verification.<br>- Regulatory compliance checks.<br>- Risk assessment procedures.<br><br>Paypercut reserves the right to suspend or terminate Program participation if:<br>- You fail or breach compliance requirements.<br>- Your business operates in a restricted or prohibited category.<br>- Your account is involved in fraud, excessive disputes, or regulatory risk.</div><div class="text-block-205"><strong class="bold-text-240">6. Program Changes or Termination</strong></div><div class="text-block-201">We may modify, suspend, or terminate the Program at any time.<br><br>However, approved Startups already participating in the Program will continue receiving benefits for the remainder of their Program Period unless the merchant account is terminated in accordance with the Merchant Agreement.<br><br>We may update these Startup Terms periodically. Updates will be communicated through the Paypercut website or your merchant dashboard.</div><div class="text-block-205"><strong class="bold-text-240">7. Misuse of Program</strong></div><div class="text-block-201"><strong>7.1. Prevention of Abuse and Artificial Transaction Structuring.<br><br>‍</strong>Paypercut provides the Program benefits solely to support legitimate commercial activity by early-stage businesses. Paypercut reserves the right to interpret and apply the Program rules in a manner consistent with the Program’s purpose of supporting legitimate early-stage startups.You must not use the Program to artificially obtain fee waivers or reductions. You must not establish or use multiple entities, brands, websites, or merchant accounts for the purpose of:<br><br>- Resetting the Program’s €10,000 fee waiver limits.<br>- Extending the 24-month Program duration.<br>- Obtaining multiple instances of the Paypercut for Startups benefits.<br>- Avoiding pricing thresholds or transaction-based fee structures.<br>‍<br>We reserve the right to revoke Program benefits if we determine that you have:<br>- Provided false or misleading information during the application process.<br>- Artificially structured transactions to maximize Program benefits.<br>- Used the Program in a manner inconsistent with its intended purpose.<br><br><strong>7.2. </strong><strong>Prohibited Activity. <br><br>‍</strong>You agree not to engage in any activity intended to exploit, manipulate, or improperly benefit from the Program benefits, including (but not limited to):<br>- <strong>Transaction Splitting: </strong>Deliberately dividing a single payment into multiple smaller transactions to remain below the monthly €10,000 fee-free processing threshold.<br>- <strong>Pass-Through Processing: </strong>Using the Paypercut account primarily to process payments on behalf of third parties, platforms, or unrelated businesses not disclosed during the onboarding process.<br>- <strong>Program Stacking or Multiple Registrations: </strong>Attempting to obtain additional Program benefits by registering multiple merchant accounts, legal entities, or brands that are substantially controlled by the same founders, shareholders, or operators.You agree to accurately disclose any affiliated entities or brands that may process payments through Paypercut. Failure to disclose materially related entities may be considered misrepresentation during the onboarding process and may result in the revocation of Program benefits.<br><br><strong>7.3. </strong><strong>Affiliated Merchant Accounts &amp; Aggregated Processing Activity.<br><br>‍</strong>To maintain the integrity of the Program, you must not create or operate multiple Paypercut merchant accounts for the purpose of circumventing Program limits, promotional benefits, transaction thresholds, or pricing tiers. For the purposes of these Terms, affiliated merchant accounts are merchant accounts that are reasonably determined by us to be related through common ownership, management, control, or operational relationship. Where we determine that multiple merchant accounts are affiliated, we may, at our sole discretion:<br>- Aggregate transaction volumes across affiliated accounts when determining eligibility for Program benefits, fee waivers, or pricing tiers.<br>- Limit Program participation to a single eligible merchant account within the affiliated group.<br><br><strong>7.4. </strong><strong>Paypercut Monitoring &amp; Enforcement.<br><br>‍</strong>We monitor transaction patterns, merchant activity, and account behaviour to detect potential misuse of the Program. If we reasonably determine that you have engaged in a prohibited activity or violated these provisions, we may, in our sole discretion:<br>- Revoke Program benefits immediately.<br>- Retroactively apply standard transaction fees to affected transactions.<br>- Deduct unpaid fees from the merchant balance.<br>- Suspend or terminate your merchant account.<br><br>Our determination of Program misuse will be based on reasonable internal risk and compliance assessment, which may include transaction analysis, relationship mapping, and fraud monitoring tools. <br><br>Where activity appears inconsistent with the intended use of the Program, we may take appropriate action, including adjusting benefits, applying standard pricing, or terminating Program participation.<br><br><strong>7.5. </strong><strong>Retroactive Fee Adjustment.<br><br>‍</strong>Where Program abuse is identified, we reserve the right to revoke your Program benefits recalculate fees for all affected transactions using the applicable standard pricing payable by you under the standard Fee Schedule of the Merchant Agreement and recover any unpaid amounts from you. We may apply such recalculation retroactively to the beginning of the Program Period if your misuse materially impacted the Program benefit calculations.</div><div class="text-block-205"><strong class="bold-text-240">8. Limitation of Liability</strong></div><div class="text-block-201">To the maximum extent permitted by law, we will not be liable for any indirect, incidental, or consequential damages arising from your participation in the Program. <br><br>Program benefits are provided on a promotional basis and do not create a guarantee of service availability, financial performance, or business outcomes.</div><div class="text-block-205"><strong class="bold-text-240">9. Governing Agreement</strong></div><div class="text-block-201">All services provided by us to you remain governed by the Paypercut Merchant Services Agreement.<br><br>These Startup Terms apply solely to the promotional pricing and benefits associated with the Paypercut for Startups Program.</div></div><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" class="text-block-8">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></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>