{"id":6749,"date":"2025-12-10T12:32:00","date_gmt":"2025-12-10T11:32:00","guid":{"rendered":"https:\/\/willemin-macodel.com\/dienste\/"},"modified":"2026-04-15T11:08:20","modified_gmt":"2026-04-15T09:08:20","slug":"dienste","status":"publish","type":"page","link":"https:\/\/willemin-macodel.com\/de\/dienste\/","title":{"rendered":"Dienste"},"content":{"rendered":"            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\" id=\"slider_container\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-t-tablet:50px;--_hfal-cg-p-r-tablet:41px;--_hfal-cg-p-b-tablet:35px;--_hfal-cg-p-l-tablet:41px;--_hfal-cg-p-t-sm:50px;--_hfal-cg-p-r-sm:21px;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:21px;--_hfal-cg-p-t-lg:50px;--_hfal-cg-p-b-lg:35px;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-p-t-md:50px;--_hfal-cg-p-r-md:41px;--_hfal-cg-p-b-md:35px;--_hfal-cg-p-l-md:41px;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<div class=\"c-video-slider-wrapper\">\n    <div class=\"c-video-slider owl-carousel\" id=\"video-slider-block_f881dc17c0e0601e89b6f0a6bda183c3\">\n                    <div class=\"c-video-slide\">\n\n                                                                    <div class=\"video-container\">\n                                                    <video\n                            class=\"js-video\"\n                            poster=\"\"                            preload=\"metadata\"\n                            playsinline\n                            autoplay\n                            muted\n                            \n                        >\n                            <source src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2026\/02\/video-services-v0.1-1.webm\" type=\"video\/mp4\">\n                        <\/video>\n                        <div class=\"video-overlay\">\n                            <button class=\"video-control-overlay video-prev-overlay\" aria-label=\"Vid\u00e9o pr\u00e9c\u00e9dente\">\n                                <img decoding=\"async\" src=\"\/wp-content\/themes\/willemin\/includes\/images\/willemin-left-arrow-slider.svg\" alt=\"Pr\u00e9c\u00e9dent\">\n                            <\/button>\n                            <button class=\"video-control-overlay video-next-overlay\" aria-label=\"Vid\u00e9o suivante\">\n                                <img decoding=\"async\" src=\"\/wp-content\/themes\/willemin\/includes\/images\/willemin-right-arrow-slider.svg\" alt=\"Suivant\">\n                            <\/button>\n                        <\/div>\n                                                    <\/div>\n                                                        <\/div>\n            <\/div>\n<\/div>\n\n\n<script>\njQuery(function ($) {\n    const $slider = $('#video-slider-block_f881dc17c0e0601e89b6f0a6bda183c3');\n    const themeUrl = '\/wp-content\/themes\/willemin\/includes\/images\/';\n    \n    if (!$slider.length) return;\n\n    $slider.owlCarousel({\n        items: 1,\n        loop: false,\n        margin: 0,\n        nav: false,\n        dots: true,\n        autoWidth: false,\n        autoplay: false,\n        mouseDrag: true,\n        touchDrag: true,\n        pullDrag: true,\n        stagePadding: 0,\n        center: false,  \n        responsive: {\n            0: { items: 1 },\n            768: { items: 1 },\n            1024: { items: 1 }\n        }\n    });\n    $slider.trigger('refresh.owl.carousel');\n\n    function resetAndPauseVideo($video) {\n        if ($video.length) {\n            const video = $video.get(0);\n            video.pause();\n            video.currentTime = 0;\n            video.load();\n        }\n    }\n\n    function getActiveVideo() {\n        const $activeSlide = $slider.find('.owl-item.active');\n        return $activeSlide.find('.js-video');\n    }\n\n    function bindVideoEnded($video) {\n        $video.off('ended').on('ended', function() {\n            const $parent = $(this).closest('.owl-item');\n            if (!$parent.hasClass('active')) return; \/\/ guard\n\n            const owlData = $slider.data('owl.carousel');\n            const currentIndex = owlData.current();\n            \n            \/\/ Utiliser _items (items r\u00e9els, sans clones) pour le compte\n            const itemsCount = owlData._items.length;\n\n            if (currentIndex < itemsCount - 1) {\n                $slider.trigger('next.owl.carousel');\n            } else {\n                $slider.trigger('to.owl.carousel', [0, 300]);\n            }\n        });\n    }\n\n    \/\/ Binder toutes les vid\u00e9os au d\u00e9part\n    $slider.find('.js-video').each(function() {\n        bindVideoEnded($(this));\n    });\n\n    \/\/ Lancer la premi\u00e8re vid\u00e9o\n    setTimeout(function() {\n        const $activeVideo = getActiveVideo();\n        if ($activeVideo.length) {\n            $activeVideo.get(0).play();\n        }\n    }, 100);\n\n    $slider.on('changed.owl.carousel', function(event) {\n        $slider.find('.js-video').each(function() {\n            const $video = $(this);\n            const $parent = $video.closest('.owl-item');\n\n            if (!$parent.hasClass('active')) {\n                resetAndPauseVideo($video);\n            }\n        });\n\n        setTimeout(function() {\n            const $activeVideo = getActiveVideo();\n            if ($activeVideo.length) {\n                bindVideoEnded($activeVideo);\n                const video = $activeVideo.get(0);\n                video.currentTime = 0;\n                video.play();\n            }\n        }, 100);\n    });\n\n    if (document.querySelectorAll(\".c-video-slide\").length > 1) {\n        $('.video-prev-overlay').on('click', function(e) {\n            e.preventDefault();\n            e.stopPropagation();\n            $slider.trigger('prev.owl.carousel');\n        });\n\n        $('.video-next-overlay').on('click', function(e) {\n            e.preventDefault();\n            e.stopPropagation();\n            $slider.trigger('next.owl.carousel');\n        });\n\n        $slider.find('.js-video').on('click', function(e) {\n            const video = this;\n            if (video.ended || video.paused) {\n                video.currentTime = 0;\n                video.play();\n            }\n        });\n    } else {\n        const video_overlay = document.querySelector(\".video-overlay\");\n        const js_video = document.querySelector(\".js-video\");\n\n        if (video_overlay) {\n            video_overlay.style.display = \"none\";\n            js_video.loop = true;\n        }\n    }\n});\n<\/script>\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div class=\"hf_animated fade_in none default wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-m-r-lg:0;--_hfal-cg-m-l-lg:0;--_hfal-cg-p-r-lg:0;--_hfal-cg-p-l-lg:0;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:41px;--_hfal-cg-p-b-tablet:60px;--_hfal-cg-p-l-tablet:41px;--_hfal-cg-p-t-sm:40px;--_hfal-cg-p-r-sm:21px;--_hfal-cg-p-b-sm:40px;--_hfal-cg-p-l-sm:21px;--_hfal-cg-m-b-lg:0;--_hfal-cg-p-b-lg:var(--wp--preset--spacing--80);--_hfal-cg-p-t-lg:var(--wp--preset--spacing--20);--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-p-r-md:41px;--_hfal-cg-p-b-md:60px;--_hfal-cg-p-l-md:41px;--_hfal-cg-p-t-md:0;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-text-align-center has-bleu-clair-color has-text-color has-link-color has-taille-14-font-size wp-elements-c0bae2541015e8ed37fe6159fd47acba\" style=\"font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Dienste<\/p>\n\n\n\n<h1 class=\"c-heading wp-block-heading has-text-align-center has-taille-52-font-size\" style=\"font-style:normal;font-weight:700\">Premium-Dienstleistungen mit Antworten von intern ausgebildeten Experten<\/h1>\n\n\n\n<p class=\"has-text-align-center has-gris-color has-text-color has-link-color has-taille-18-font-size wp-elements-a0c860668b96102566ba0666b8a885d0\" style=\"margin-top:24px;padding-top:0;padding-bottom:0\">Alle unsere Hotliner sind Praktiker, die st\u00e4ndig geschult werden und unsere Produkte und L\u00f6sungen genau kennen. Sie wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist! <\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-660f9ef0 wp-block-buttons-is-layout-flex\" style=\"margin-top:40px\">\n<div class=\"wp-block-button is-style-blue-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/willemin-macodel.com\/de\/kontakt\/\">Kontaktieren Sie unsere Experten<\/a><\/div>\n<\/div>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div class=\"hf_animated fade_in none default alignfull wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained alignfull\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-t-lg:81px;--_hfal-cg-p-b-lg:81px;--_hfal-cg-bc-lg:var(--wp--preset--color--gris-clair);--_hfal-cg-p-t-sm:40px;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:40px;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:81px;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:81px;--_hfal-cg-p-l-tablet:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-p-t-md:81px;--_hfal-cg-p-b-md:81px;--_hfal-cg-bc-tablet:var(--wp--preset--color--gris-clair);--_hfal-cg-bc-md:var(--wp--preset--color--gris-clair);--_hfal-cg-bc-sm:var(--wp--preset--color--gris-clair);'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-t-lg:0;--_hfal-cg-p-b-lg:0;--_hfal-cg-p-r-lg:41px;--_hfal-cg-p-l-lg:41px;--_hfal-cg-p-t-sm:0;--_hfal-cg-p-r-sm:21px;--_hfal-cg-p-b-sm:var(--wp--preset--spacing--20);--_hfal-cg-p-l-sm:21px;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:41px;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:41px;--_hfal-cg-m-t-lg:0;--_hfal-cg-m-b-lg:38px;--_hfal-cg-m-t-tablet:0;--_hfal-cg-m-r-tablet:0;--_hfal-cg-m-b-tablet:38px;--_hfal-cg-m-l-tablet:0;--_hfal-cg-m-t-md:0;--_hfal-cg-m-r-md:0;--_hfal-cg-m-b-md:0;--_hfal-cg-m-l-md:0;--_hfal-cg-p-t-md:0;--_hfal-cg-p-r-md:0;--_hfal-cg-p-b-md:0;--_hfal-cg-p-l-md:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-m-b-sm:0;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-text-align-center has-bleu-clair-color has-text-color has-link-color has-taille-14-font-size wp-elements-d8aff4f80b9a53520e92dce1dc205760\" style=\"font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Unsere wichtigsten Dienstleistungen<\/p>\n\n\n\n<h2 class=\"c-heading wp-block-heading has-text-align-center has-taille-36-font-size\" style=\"margin-top:0;padding-bottom:0px\">Wir sind da, um Sie von Anfang bis Ende zu begleiten und zu unterst\u00fctzen.<\/h2>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div class=\"is-style-spacebetween-col wp-block-habefast-advanced-layout\">\r\n                <div class=\"wp-block-habefast-advanced-layout-container is-layout-constrained\"  style='--_hfal-l-d-lg:block;--_hfal-l-p-t-tablet:var(--wp--preset--spacing--10);--_hfal-l-p-r-tablet:41px;--_hfal-l-p-b-tablet:0;--_hfal-l-p-l-tablet:41px;--_hfal-l-p-t-sm:0;--_hfal-l-p-r-sm:21px;--_hfal-l-p-b-sm:0;--_hfal-l-p-l-sm:21px;--_hfal-l-p-t-lg:var(--wp--preset--spacing--10);--_hfal-l-d-tablet:block;--_hfal-l-d-md:block;--_hfal-l-d-sm:block;--_hfal-l-p-t-md:var(--wp--preset--spacing--10);--_hfal-l-p-r-md:41px;--_hfal-l-p-l-md:41px;'>\r\n                    \n            <div style=\"--_hfal-cs-w-lg:wrap;--_hfal-cs-cw-lg:50%;--_hfal-cs-g-h-lg:20px;--_hfal-cs-g-v-lg:20px;--_hfal-cs-w-tablet:wrap;--_hfal-cs-w-md:wrap;--_hfal-cs-w-sm:wrap;--_hfal-cs-cw-tablet:50%;--_hfal-cs-cw-md:50%;--_hfal-cs-cw-sm:50%;--_hfal-cs-g-h-tablet:20px;--_hfal-cs-g-h-md:20px;--_hfal-cs-g-h-sm:20px;--_hfal-cs-g-v-tablet:20px;--_hfal-cs-g-v-md:20px;--_hfal-cs-g-v-sm:20px;\" class=\"wp-block-habefast-advanced-layout-cols\">\r\n                <div class=\"wp-block-habefast-advanced-layout-cols-flex\"> \n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-bc-lg:var(--wp--preset--color--theme-white);--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;--_hfal-c-bc-tablet:var(--wp--preset--color--theme-white);--_hfal-c-bc-md:var(--wp--preset--color--theme-white);--_hfal-c-bc-sm:var(--wp--preset--color--theme-white);\" class=\"is-style-ombre-layout-col wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    <a href='\/de\/dienste\/wartungen\/' target='_self'>\n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-t-lg:0;--_hfal-cg-p-b-lg:0;--_hfal-cg-bc-lg:none;--_hfal-cg-p-t-sm:0;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:0;--_hfal-cg-p-t-md:0;--_hfal-cg-p-r-md:0;--_hfal-cg-p-b-md:0;--_hfal-cg-p-l-md:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:none;--_hfal-cg-bc-md:none;--_hfal-cg-bc-sm:none;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-bleu-fonce-color has-text-color has-link-color has-taille-20-font-size wp-elements-a60c9382c705158d52ab19d09fca6260\" style=\"font-style:normal;font-weight:600\">Wartungen<\/p>\n\n\n\n<p class=\"has-gris-color has-text-color has-link-color has-taille-16-font-size wp-elements-1fc602fa10c843ec41fcebb496bfbb9d\" style=\"margin-top:10px\">Unser Kundenservice \u00fcbernimmt die vorbeugende und heilende Wartung, um Leistung, Genauigkeit und maximale Verf\u00fcgbarkeit Ihrer Anlagen zu gew\u00e4hrleisten.<\/p>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-40607395 wp-block-group-is-layout-flex\" style=\"padding-top:15px\">\n<p class=\"is-style-blue-arrow-paragraph\">Siehe mehr<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-aligner-image-centre-vertical  \"><img loading=\"lazy\" decoding=\"async\" width=\"14\" height=\"9\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/blue-arrow.svg\" alt=\"Blauer Pfeil\" class=\"wp-image-1089\"\/><\/figure>\n<\/div>\n\n<\/a>                <\/div>\r\n            <\/div>\r\n            \n\n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-bc-lg:var(--wp--preset--color--theme-white);--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;--_hfal-c-bc-tablet:var(--wp--preset--color--theme-white);--_hfal-c-bc-md:var(--wp--preset--color--theme-white);--_hfal-c-bc-sm:var(--wp--preset--color--theme-white);\" class=\"is-style-ombre-layout-col wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    <a href='\/de\/dienste\/schulungen\/' target='_self'>\n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-b-lg:0;--_hfal-cg-p-t-lg:0;--_hfal-cg-bc-lg:none;--_hfal-cg-p-t-sm:0;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:0;--_hfal-cg-p-t-md:0;--_hfal-cg-p-r-md:0;--_hfal-cg-p-b-md:0;--_hfal-cg-p-l-md:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:none;--_hfal-cg-bc-md:none;--_hfal-cg-bc-sm:none;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-bleu-fonce-color has-text-color has-link-color has-taille-20-font-size wp-elements-c3b96fd44a0dbdad540500af8e445c61\" style=\"font-style:normal;font-weight:600\">Schulungen<\/p>\n\n\n\n<p class=\"has-gris-color has-text-color has-link-color has-taille-16-font-size wp-elements-5dfa5f0e2dc8c05a87c6fc3f3090c7b3\" style=\"margin-top:10px\">Unsere Spezialisten schulen Sie in der Bedienung, Programmierung und Optimierung, um die Produktivit\u00e4t zu steigern und eine gleichbleibende Bearbeitungsqualit\u00e4t w\u00e4hrend des gesamten Lebenszyklus Ihrer Maschine zu gew\u00e4hrleisten.<\/p>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-40607395 wp-block-group-is-layout-flex\" style=\"padding-top:15px\">\n<p class=\"is-style-blue-arrow-paragraph\">Siehe mehr<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-aligner-image-centre-vertical  \"><img loading=\"lazy\" decoding=\"async\" width=\"14\" height=\"9\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/blue-arrow.svg\" alt=\"Blauer Pfeil\" class=\"wp-image-1089\"\/><\/figure>\n<\/div>\n\n<\/a>                <\/div>\r\n            <\/div>\r\n            \n\n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-bc-lg:var(--wp--preset--color--theme-white);--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;--_hfal-c-bc-tablet:var(--wp--preset--color--theme-white);--_hfal-c-bc-md:var(--wp--preset--color--theme-white);--_hfal-c-bc-sm:var(--wp--preset--color--theme-white);\" class=\"is-style-ombre-layout-col wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    <a href='\/de\/dienste\/projektmanagement\/' target='_self'>\n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-r-lg:0;--_hfal-cg-p-t-lg:0;--_hfal-cg-p-b-lg:0;--_hfal-cg-bc-lg:none;--_hfal-cg-p-t-sm:0;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:0;--_hfal-cg-p-t-md:0;--_hfal-cg-p-r-md:0;--_hfal-cg-p-b-md:0;--_hfal-cg-p-l-md:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:none;--_hfal-cg-bc-md:none;--_hfal-cg-bc-sm:none;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-bleu-fonce-color has-text-color has-link-color has-taille-20-font-size wp-elements-9ebc9e5519f9213105dc4ad26e1918f1\" style=\"font-style:normal;font-weight:600\">Projektmanagement<\/p>\n\n\n\n<p class=\"has-gris-color has-text-color has-link-color has-taille-16-font-size wp-elements-d5c18c7d3f5e1663a06d4638fc0dfc60\" style=\"margin-top:10px\">Bei Ihrem Kauf koordiniert ein engagierter Projektmanager Ihre Installation von der Bedarfsanalyse bis zur Inbetriebnahme, um eine leistungsf\u00e4hige Integration zu gew\u00e4hrleisten, die Ihren industriellen Zielen entspricht.<\/p>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-40607395 wp-block-group-is-layout-flex\" style=\"min-height:0px;padding-top:15px\">\n<p class=\"is-style-blue-arrow-paragraph\">Siehe mehr<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-aligner-image-centre-vertical  \"><img loading=\"lazy\" decoding=\"async\" width=\"14\" height=\"9\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/blue-arrow.svg\" alt=\"Blauer Pfeil\" class=\"wp-image-1089\"\/><\/figure>\n<\/div>\n\n<\/a>                <\/div>\r\n            <\/div>\r\n            \n\n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-bc-lg:var(--wp--preset--color--theme-white);--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;--_hfal-c-bc-tablet:var(--wp--preset--color--theme-white);--_hfal-c-bc-md:var(--wp--preset--color--theme-white);--_hfal-c-bc-sm:var(--wp--preset--color--theme-white);\" class=\"is-style-ombre-layout-col wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    <a href='\/de\/dienste\/lebenszyklus\/' target='_self'>\n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-l-lg:0;--_hfal-cg-p-b-lg:0;--_hfal-cg-p-t-lg:0;--_hfal-cg-bc-lg:none;--_hfal-cg-p-t-sm:0;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:0;--_hfal-cg-p-t-md:0;--_hfal-cg-p-r-md:0;--_hfal-cg-p-b-md:0;--_hfal-cg-p-l-md:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:none;--_hfal-cg-bc-md:none;--_hfal-cg-bc-sm:none;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-bleu-fonce-color has-text-color has-link-color has-taille-20-font-size wp-elements-e92f1aebbc243070b353a7b34cfc45e3\" style=\"font-style:normal;font-weight:600\">Lebenszyklus-Management<\/p>\n\n\n\n<p class=\"has-gris-color has-text-color has-link-color has-taille-16-font-size wp-elements-7bfc358cf2be7505a77f32e09a13ed0d\" style=\"margin-top:10px\">Unsere Bearbeitungszentren sind f\u00fcr ihre lange Lebensdauer bekannt. Wir unterst\u00fctzen Sie mit Wartungs-, Nachr\u00fcstungs- und Optimierungsl\u00f6sungen, um Zuverl\u00e4ssigkeit, Langlebigkeit und langfristige Rentabilit\u00e4t zu gew\u00e4hrleisten.<\/p>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-40607395 wp-block-group-is-layout-flex\" style=\"padding-top:15px\">\n<p class=\"is-style-blue-arrow-paragraph\">Siehe mehr<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-aligner-image-centre-vertical  \"><img loading=\"lazy\" decoding=\"async\" width=\"14\" height=\"9\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/blue-arrow.svg\" alt=\"Blauer Pfeil\" class=\"wp-image-1089\"\/><\/figure>\n<\/div>\n\n<\/a>                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div class=\" hf_animated fade_left none default hide_overflow wp-block-habefast-advanced-layout\">\r\n                <div class=\"wp-block-habefast-advanced-layout-container is-layout-constrained\"  style='--_hfal-l-d-lg:block;--_hfal-l-m-r-lg:0;--_hfal-l-m-l-lg:0;--_hfal-l-m-t-lg:80px;--_hfal-l-m-t-sm:30px;--_hfal-l-m-r-sm:21px;--_hfal-l-m-b-sm:0;--_hfal-l-m-l-sm:21px;--_hfal-l-m-t-tablet:80px;--_hfal-l-m-r-tablet:41px;--_hfal-l-m-b-tablet:0;--_hfal-l-m-l-tablet:41px;--_hfal-l-d-tablet:block;--_hfal-l-d-md:block;--_hfal-l-d-sm:block;--_hfal-l-m-t-md:80px;--_hfal-l-m-r-md:41px;--_hfal-l-m-l-md:41px;'>\r\n                    \n            <div style=\"--_hfal-cs-va-lg:center;--_hfal-cs-w-lg:wrap;--_hfal-cs-cw-lg:50%;--_hfal-cs-g-h-lg:60px;--_hfal-cs-g-v-lg:32px;--_hfal-cs-va-tablet:center;--_hfal-cs-va-md:center;--_hfal-cs-va-sm:center;--_hfal-cs-w-tablet:wrap;--_hfal-cs-w-md:wrap;--_hfal-cs-w-sm:wrap;--_hfal-cs-cw-tablet:50%;--_hfal-cs-cw-md:50%;--_hfal-cs-cw-sm:50%;--_hfal-cs-g-h-tablet:60px;--_hfal-cs-g-h-md:60px;--_hfal-cs-g-h-sm:60px;--_hfal-cs-g-v-tablet:32px;--_hfal-cs-g-v-md:32px;--_hfal-cs-g-v-sm:32px;\" class=\"wp-block-habefast-advanced-layout-cols\">\r\n                <div class=\"wp-block-habefast-advanced-layout-cols-flex\"> \n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-d-sm:flex;--_hfal-c-o-sm:0;--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;\" class=\"wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    \n\n<h2 class=\"c-heading wp-block-heading has-taille-36-font-size\" style=\"padding-bottom:0px\">N\u00e4he und Reaktionsf\u00e4higkeit<\/h2>\n\n\n\n<p class=\"\">Willemin-Macodel stellt die Qualit\u00e4t des Kundenservice in den Mittelpunkt seiner Strategie. Mehr als 60 erfahrene Techniker und 10 spezialisierte Hotliner sorgen f\u00fcr schnelle technische Unterst\u00fctzung, leistungsf\u00e4hige Wartung und operative \u00dcberwachung \u00fcberall auf der Welt. <\/p>\n\n\n\n<p class=\"\">Unsere Kundendienststruktur mit Sitz in Del\u00e9mont wird von Tochtergesellschaften und Hubs in der Schweiz und in Europa sowie weltweit unterst\u00fctzt, um einen reaktionsschnellen und effizienten Service vor Ort zu gew\u00e4hrleisten.<\/p>\n\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-d-sm:flex;--_hfal-c-o-sm:1;--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;\" class=\"wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    \n\n<figure class=\"wp-block-image size-full exception_image_height_400px_tablet_mobile  \"><img loading=\"lazy\" decoding=\"async\" width=\"1216\" height=\"800\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg\" alt=\"Willemin Reaktivit\u00e4t\" class=\"wp-image-1492\" srcset=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg 1216w, https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite-300x197.jpg 300w, https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite-1024x674.jpg 1024w, https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite-768x505.jpg 768w, https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite-800x526.jpg 800w\" sizes=\"(max-width: 1216px) 100vw, 1216px\" \/><\/figure>\n\n                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n\n            <div class=\" hf_animated fade_left none default hide_overflow wp-block-habefast-advanced-layout\">\r\n                <div class=\"wp-block-habefast-advanced-layout-container is-layout-constrained\"  style='--_hfal-l-d-lg:block;--_hfal-l-m-r-lg:0;--_hfal-l-m-l-lg:0;--_hfal-l-m-t-lg:80px;--_hfal-l-m-t-sm:40px;--_hfal-l-m-r-sm:21px;--_hfal-l-m-b-sm:40px;--_hfal-l-m-l-sm:21px;--_hfal-l-m-t-tablet:80px;--_hfal-l-m-r-tablet:41px;--_hfal-l-m-b-tablet:var(--wp--preset--spacing--80);--_hfal-l-m-l-tablet:41px;--_hfal-l-m-b-lg:var(--wp--preset--spacing--80);--_hfal-l-d-tablet:block;--_hfal-l-d-md:block;--_hfal-l-d-sm:block;--_hfal-l-m-t-md:80px;--_hfal-l-m-r-md:41px;--_hfal-l-m-b-md:var(--wp--preset--spacing--80);--_hfal-l-m-l-md:41px;'>\r\n                    \n            <div style=\"--_hfal-cs-va-lg:flex-start;--_hfal-cs-w-lg:wrap;--_hfal-cs-cw-lg:50%;--_hfal-cs-g-h-lg:60px;--_hfal-cs-g-v-lg:24px;--_hfal-cs-va-tablet:flex-start;--_hfal-cs-va-md:flex-start;--_hfal-cs-va-sm:flex-start;--_hfal-cs-w-tablet:wrap;--_hfal-cs-w-md:wrap;--_hfal-cs-w-sm:wrap;--_hfal-cs-cw-tablet:50%;--_hfal-cs-cw-md:50%;--_hfal-cs-cw-sm:50%;--_hfal-cs-g-h-tablet:60px;--_hfal-cs-g-h-md:60px;--_hfal-cs-g-h-sm:60px;--_hfal-cs-g-v-tablet:24px;--_hfal-cs-g-v-md:24px;--_hfal-cs-g-v-sm:24px;\" class=\"wp-block-habefast-advanced-layout-cols\">\r\n                <div class=\"wp-block-habefast-advanced-layout-cols-flex\"> \n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;\" class=\"wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    \n\n<h2 class=\"c-heading wp-block-heading has-taille-36-font-size\" style=\"padding-bottom:13px\">Eine Zufriedenheitsgarantie in 4 Bereichen<\/h2>\n\n\n\n<ul style=\"margin-top:9px\" class=\"c-list wp-block-list is-style-blue_list  \">\n<li class=\"\"><strong>Technische Unterst\u00fctzung:<\/strong> operative Unterst\u00fctzung, Diagnose, technische L\u00f6sung und Wartung von Bearbeitungszentren.<\/li>\n\n\n\n<li class=\"\"><strong>Ersatzteile:<\/strong> optimierte Verwaltung und schnelle Verf\u00fcgbarkeit von Originalkomponenten.<\/li>\n\n\n\n<li class=\"\"><strong>Methoden &amp; Schulungen:<\/strong> Kontinuierliche Begleitung und Weiterbildung Ihrer Teams, um eine maximale Auslastung Ihrer Maschinen zu erreichen.<\/li>\n\n\n\n<li class=\"\"><strong>Zus\u00e4tzliche Auftr\u00e4ge: <\/strong>Anpassung der Bearbeitungszentren an Ihre Bed\u00fcrfnisse, um die Produktivit\u00e4t weiter zu steigern.<\/li>\n<\/ul>\n\n                <\/div>\r\n            <\/div>\r\n            \n\n            <div style=\"--_hfal-c-d-lg:flex;--_hfal-c-w-lg:50%;--_hfal-c-o-lg:0;--_hfal-c-w-sm:100%;--_hfal-c-d-tablet:flex;--_hfal-c-d-md:flex;--_hfal-c-d-sm:flex;--_hfal-c-w-tablet:50%;--_hfal-c-w-md:50%;\" class=\"wp-block-habefast-advanced-layout-col\">\r\n                <div class=\"wp-block-habefast-advanced-layout-col-container is-layout-flow\">\r\n                    \n\n<h2 class=\"c-heading wp-block-heading has-taille-36-font-size\" style=\"padding-bottom:13px\">Langlebige Maschinen, zuverl\u00e4ssiger Service<\/h2>\n\n\n\n<ul style=\"margin-top:9px\" class=\"c-list wp-block-list is-style-blue_list  \">\n<li class=\"\"><strong>Optimale Verwaltung:<\/strong> Unser Kundendienstteam unterst\u00fctzt Sie mit effizienten Dienstleistungen w\u00e4hrend des gesamten Lebenszyklus Ihres Produkts.<\/li>\n\n\n\n<li class=\"\"><strong>Keine unpers\u00f6nlichen Vermittler:<\/strong> Unsere direkte Hotline mit Produktexperten bietet Ihnen einen schnellen, menschlichen und hochqualifizierten Kontakt.<\/li>\n<\/ul>\n\n                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n                <\/div>\r\n            <\/div>\r\n            \n\n\n\n            <div class=\"hf_animated fade_in none default alignfull wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained alignfull\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-bc-lg:#f9fafb;--_hfal-cg-p-r-lg:0;--_hfal-cg-p-t-lg:81px;--_hfal-cg-p-b-lg:0;--_hfal-cg-m-t-lg:0px;--_hfal-cg-p-t-sm:30px;--_hfal-cg-p-r-sm:0;--_hfal-cg-p-b-sm:0;--_hfal-cg-p-l-sm:0;--_hfal-cg-p-t-tablet:70px;--_hfal-cg-p-r-tablet:0;--_hfal-cg-p-b-tablet:0;--_hfal-cg-p-l-tablet:0;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:#f9fafb;--_hfal-cg-bc-md:#f9fafb;--_hfal-cg-bc-sm:#f9fafb;--_hfal-cg-p-t-md:70px;--_hfal-cg-m-t-tablet:0px;--_hfal-cg-m-t-md:0px;--_hfal-cg-m-t-sm:0px;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n            <div class=\"wp-block-habefast-advanced-layout-group is-layout-constrained wp-block-habefast-advanced-layout-group-is-layout-constrained\">\r\n                <div class=\"wp-block-habefast-advanced-group-container is-style- is-layout-constrained\"  style='--_hfal-cg-d-lg:flex;--_hfal-cg-p-r-lg:0;--_hfal-cg-p-l-lg:0;--_hfal-cg-p-t-lg:0;--_hfal-cg-bc-lg:#f9fafb;--_hfal-cg-p-b-lg:81px;--_hfal-cg-p-t-sm:var(--wp--preset--spacing--10);--_hfal-cg-p-r-sm:21px;--_hfal-cg-p-b-sm:40px;--_hfal-cg-p-l-sm:21px;--_hfal-cg-p-t-tablet:0;--_hfal-cg-p-r-tablet:41px;--_hfal-cg-p-b-tablet:81px;--_hfal-cg-p-l-tablet:41px;--_hfal-cg-d-tablet:flex;--_hfal-cg-d-md:flex;--_hfal-cg-d-sm:flex;--_hfal-cg-bc-tablet:#f9fafb;--_hfal-cg-bc-md:#f9fafb;--_hfal-cg-bc-sm:#f9fafb;--_hfal-cg-p-b-md:81px;--_hfal-cg-p-r-md:41px;--_hfal-cg-p-l-md:41px;'>\r\n                                        <div class=\"wp-block-habefast-advanced-group-inner is-layout-flow\">\r\n                        \n\n<p class=\"has-text-align-center has-bleu-clair-color has-text-color has-link-color has-taille-14-font-size wp-elements-a2a50556dfc38f2ee2d299433d2cdc81\" style=\"font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Unsere Produkte<\/p>\n\n\n\n<h2 class=\"c-heading wp-block-heading has-text-align-center\" style=\"margin-top:12px;margin-bottom:0px;padding-bottom:0px\">Wir sind so ausgestattet, dass wir Sie bis zum Ende begleiten k\u00f6nnen, egal was Sie brauchen.<\/h2>\n\n\n    <div class=\"bloc-prestations\">\n        \n                            <a class=\"prestation\" href=\"https:\/\/willemin-macodel.com\/de\/bearbeitungszentren\/\" target=\"_blank\">\n                                                <div class=\"prestation__image\">\n                        <img decoding=\"async\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/11\/centre-usinage-illustration.png\" alt=\"image prestation\" \/>\n                    <\/div>\n                                <div class=\"prestation_block_info_container\">\n                    <div class=\"prestation_block_sub_info_container\">\n                                                    <h3 class=\"prestation__titre\">Bearbeitungszentren<\/h3>\n                                                                        \n                    \n                                                    <div class=\"prestation__description\">Entdecken Sie unser Angebot an hochwertigen Bearbeitungszentren.<\/div>\n                        \n                        \n                    <\/div>\n\n                    <div class=\"prestation__lien\" href=\"https:\/\/willemin-macodel.com\/de\/bearbeitungszentren\/\">\n                        <div class=\"prestation__voir-plus\">Siehe mehr<\/div>\n                    <\/div>\n                <\/div>\n                            <\/a>\n                    \n                            <a class=\"prestation\" href=\"https:\/\/willemin-macodel.com\/de\/automatisierung\/\" target=\"_blank\">\n                                                <div class=\"prestation__image\">\n                        <img decoding=\"async\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/11\/prestation-automation.png\" alt=\"image prestation\" \/>\n                    <\/div>\n                                <div class=\"prestation_block_info_container\">\n                    <div class=\"prestation_block_sub_info_container\">\n                                                    <h3 class=\"prestation__titre\">Automatisierung<\/h3>\n                                                                        \n                    \n                                                    <div class=\"prestation__description\">Entdecken Sie unser Angebot an hochwertigen Automatisierungsl\u00f6sungen.<\/div>\n                        \n                        \n                    <\/div>\n\n                    <div class=\"prestation__lien\" href=\"https:\/\/willemin-macodel.com\/de\/automatisierung\/\">\n                        <div class=\"prestation__voir-plus\">Siehe mehr<\/div>\n                    <\/div>\n                <\/div>\n                            <\/a>\n                    \n                            <a class=\"prestation\" href=\"https:\/\/willemin-macodel.com\/de\/digitalisierung\/\" target=\"_blank\">\n                                                <div class=\"prestation__image\">\n                        <img decoding=\"async\" src=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/11\/prestation-service.png\" alt=\"image prestation\" \/>\n                    <\/div>\n                                <div class=\"prestation_block_info_container\">\n                    <div class=\"prestation_block_sub_info_container\">\n                                                    <h3 class=\"prestation__titre\">Digitalisierung<\/h3>\n                                                                        \n                    \n                                                    <div class=\"prestation__description\">Entdecken Sie unser Angebot an hochwertigen Digitalisierungsl\u00f6sungen.<\/div>\n                        \n                        \n                    <\/div>\n\n                    <div class=\"prestation__lien\" href=\"https:\/\/willemin-macodel.com\/de\/digitalisierung\/\">\n                        <div class=\"prestation__voir-plus\">Siehe mehr<\/div>\n                    <\/div>\n                <\/div>\n                            <\/a>\n                        <\/div>\n\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            \n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            ","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":5616,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_habefastfse_class":"","footnotes":""},"class_list":["post-6749","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten<\/title>\n<meta name=\"description\" content=\"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/willemin-macodel.com\/de\/dienste\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten\" \/>\n<meta property=\"og:description\" content=\"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/willemin-macodel.com\/de\/dienste\/\" \/>\n<meta property=\"og:site_name\" content=\"Willemin-Macodel\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/WilleminMacodel\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-15T09:08:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1216\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"4\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/\",\"url\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/\",\"name\":\"Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/willemin-macodel.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/willemin-reactivite.jpg\",\"datePublished\":\"2025-12-10T11:32:00+00:00\",\"dateModified\":\"2026-04-15T09:08:20+00:00\",\"description\":\"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/#primaryimage\",\"url\":\"https:\\\/\\\/willemin-macodel.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/willemin-reactivite.jpg\",\"contentUrl\":\"https:\\\/\\\/willemin-macodel.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/willemin-reactivite.jpg\",\"width\":1216,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/dienste\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dienste\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/\",\"name\":\"Willemin-Macodel SA\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#organization\",\"name\":\"Willemin-Macodel SA\",\"url\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/willemin-macodel.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/logo-wm-bleu-signature-rvb-scaled.png\",\"contentUrl\":\"https:\\\/\\\/willemin-macodel.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/logo-wm-bleu-signature-rvb-scaled.png\",\"width\":2560,\"height\":1198,\"caption\":\"Willemin-Macodel SA\"},\"image\":{\"@id\":\"https:\\\/\\\/willemin-macodel.com\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/WilleminMacodel\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/2818590\\\/\",\"https:\\\/\\\/www.instagram.com\\\/willemin_macodel_ch\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten","description":"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/willemin-macodel.com\/de\/dienste\/","og_locale":"de_DE","og_type":"article","og_title":"Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten","og_description":"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!","og_url":"https:\/\/willemin-macodel.com\/de\/dienste\/","og_site_name":"Willemin-Macodel","article_publisher":"https:\/\/www.facebook.com\/WilleminMacodel\/","article_modified_time":"2026-04-15T09:08:20+00:00","og_image":[{"width":1216,"height":800,"url":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"4\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/willemin-macodel.com\/de\/dienste\/","url":"https:\/\/willemin-macodel.com\/de\/dienste\/","name":"Premium-Dienstleistungen - Antworten von intern ausgebildeten Experten","isPartOf":{"@id":"https:\/\/willemin-macodel.com\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/willemin-macodel.com\/de\/dienste\/#primaryimage"},"image":{"@id":"https:\/\/willemin-macodel.com\/de\/dienste\/#primaryimage"},"thumbnailUrl":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg","datePublished":"2025-12-10T11:32:00+00:00","dateModified":"2026-04-15T09:08:20+00:00","description":"Alle unsere Hotliner sind erfahrene Praktiker, die wissen, dass ihre Reaktionsf\u00e4higkeit von gr\u00f6\u00dfter Bedeutung ist!","breadcrumb":{"@id":"https:\/\/willemin-macodel.com\/de\/dienste\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/willemin-macodel.com\/de\/dienste\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/willemin-macodel.com\/de\/dienste\/#primaryimage","url":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg","contentUrl":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2025\/12\/willemin-reactivite.jpg","width":1216,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/willemin-macodel.com\/de\/dienste\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/willemin-macodel.com\/de\/"},{"@type":"ListItem","position":2,"name":"Dienste"}]},{"@type":"WebSite","@id":"https:\/\/willemin-macodel.com\/de\/#website","url":"https:\/\/willemin-macodel.com\/de\/","name":"Willemin-Macodel SA","description":"","publisher":{"@id":"https:\/\/willemin-macodel.com\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/willemin-macodel.com\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/willemin-macodel.com\/de\/#organization","name":"Willemin-Macodel SA","url":"https:\/\/willemin-macodel.com\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/willemin-macodel.com\/de\/#\/schema\/logo\/image\/","url":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2026\/02\/logo-wm-bleu-signature-rvb-scaled.png","contentUrl":"https:\/\/willemin-macodel.com\/wp-content\/uploads\/2026\/02\/logo-wm-bleu-signature-rvb-scaled.png","width":2560,"height":1198,"caption":"Willemin-Macodel SA"},"image":{"@id":"https:\/\/willemin-macodel.com\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/WilleminMacodel\/","https:\/\/www.linkedin.com\/company\/2818590\/","https:\/\/www.instagram.com\/willemin_macodel_ch\/"]}]}},"_links":{"self":[{"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/pages\/6749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/comments?post=6749"}],"version-history":[{"count":17,"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/pages\/6749\/revisions"}],"predecessor-version":[{"id":8904,"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/pages\/6749\/revisions\/8904"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/media\/5616"}],"wp:attachment":[{"href":"https:\/\/willemin-macodel.com\/de\/wp-json\/wp\/v2\/media?parent=6749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}