{"id":225,"date":"2022-07-29T12:39:07","date_gmt":"2022-07-29T12:39:07","guid":{"rendered":"https:\/\/www.clearvision-laser.ch\/?page_id=225"},"modified":"2026-06-04T16:36:30","modified_gmt":"2026-06-04T14:36:30","slug":"homepage","status":"publish","type":"page","link":"https:\/\/www.clearvision-laser.ch\/de\/","title":{"rendered":"Homepage"},"content":{"rendered":"<div class=\"header-big-block mb40 mt0\"><div class=\"container\"><div class=\"content\"><div class=\"header-big-block-wrap\"><div class=\"header-big-block__image\"><video class=\"img__big__header\" loop=\"true\" playsinline autoplay=\"autoplay\" muted><source src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2026\/01\/cv-home-header.mp4\" type=\"video\/mp4\"><\/video><div class=\"header-big-block__content\"><h1 class=\"header-big-block__title\"><br><strong><\/strong><\/h1><div class=\"header-big-block__button-row mt16 mb16\"><\/div><\/div><svg class=\"header-big-block__plus align-bottom\" width=\"192\" height=\"192\" viewBox=\"0 0 184 184\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.3333 0.330078H122.667V61.6634H184V122.997H122.667V184.33H61.3333V122.997H0V61.6634H61.3333V0.330078Z\" fill=\"#FFCE00\"\/><\/svg><\/div><div style=\"height: 64px\"><\/div><\/div><\/div><\/div><\/div>\n\n\n<style>\n\/* ===== Grid-Layout (Mobile default: untereinander) ===== *\/\n.cv-feature-grid {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  gap: 0;\n  margin: 0 auto;\n}\n\n.cv-feature-item {\n  width: min(680px, 92%);\n  padding: 0 0 16px 0;\n\n  \/* Mobile: Abstand nach oben \u2013 1. Element 60px, danach 20px *\/\n  margin-top: 20px;\n}\n.cv-feature-item:first-child {\n  margin-top: 60px;\n}\n\n\/* Titel (h3) *\/\n.cv-feature-item .cv-feature-title {\n  color: #0c338c !important;\n  text-align: left !important;\n  line-height: 1.25;\n  margin: 0 0 10px 0; \/* 10px Abstand zum Absatz *\/\n}\n\n\/* Absatz (p) *\/\n.cv-feature-item .cv-feature-text {\n  color: inherit !important;\n  text-align: left !important;\n  margin: 0;\n}\n\n\/* ===== Animation: langsam, gestaffelt von links nach rechts ===== *\/\n.cv-from-below {\n  opacity: 0;\n  transform: translateY(28px);\n  transition: opacity 3400ms ease, transform 3400ms ease;\n}\n.cv-features-visible .cv-from-below {\n  opacity: 1;\n  transform: translateY(0);\n}\n\n\/* Stagger-Effekt *\/\n.cv-feature-item:nth-child(1).cv-from-below { transition-delay: 0ms; }\n.cv-feature-item:nth-child(2).cv-from-below { transition-delay: 800ms; }\n.cv-feature-item:nth-child(3).cv-from-below { transition-delay: 1600ms; }\n\n@media (prefers-reduced-motion: reduce) {\n  .cv-from-below {\n    transition: none !important;\n    transform: none !important;\n    opacity: 1 !important;\n  }\n}\n\n\/* ===== Trennlinien ===== *\/\n\/* Mobile: horizontale Linie zwischen Items *\/\n.cv-feature-item + .cv-feature-item {\n  position: relative;\n  padding-top: 30px; \/* etwas Luft \u00fcber der Linie *\/\n}\n.cv-feature-item + .cv-feature-item::before {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  left: 20%;\n  width: 60%;\n  height: 2px;             \/* dickere Linie *\/\n  background-color: #ffce00;\n}\n\n\/* Desktop: nebeneinander mit vertikaler Linie *\/\n@media (min-width: 1200px) {\n  .cv-feature-grid {\n    flex-direction: row;\n    align-items: stretch;\n    gap: 0;\n  }\n  .cv-feature-item {\n    width: auto;\n    flex: 1 1 0;\n    margin-top: 60px; \n    padding: 0 16px;\n    position: relative;\n  }\n  .cv-feature-item + .cv-feature-item {\n    padding-top: 0; \/* horizontale Linie deaktivieren *\/\n  }\n  .cv-feature-item + .cv-feature-item::before {\n    content: \"\";\n    position: absolute;\n    top: 20%;\n    bottom: 20%;\n    left: 0;\n    width: 2px;           \/* dickere Linie *\/\n    background-color: #ffce00;\n  }\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', () => {\n  const TARGET_TITLES = [\n    'Schnelle Heilung',\n    'Schmerzarm',\n    'Geringes Risiko'\n  ];\n\n  \/\/ Alle relevanten H3 innerhalb der preloaded-Container\n  const allH3 = Array.from(document.querySelectorAll('.preloaded__content.fade h3'));\n  const matched = allH3.filter(h => {\n    const t = h.textContent.replace(\/\\s+\/g, ' ').trim();\n    return TARGET_TITLES.some(tt => t.startsWith(tt));\n  });\n\n  if (matched.length === 0) return;\n\n  \/\/ F\u00fcr jedes H3 den unmittelbar folgenden <p> ermitteln\n  const items = matched.map(h => {\n    const container = h.closest('.preloaded__content.fade');\n    const next = h.nextElementSibling;\n    const para = (next && next.tagName.toLowerCase() === 'p') ? next : null;\n    return { container, h, p: para };\n  });\n\n  \/\/ Neues Grid erstellen\n  const grid = document.createElement('div');\n  grid.className = 'cv-feature-grid';\n\n  \/\/ Items in Dokument-Reihenfolge aufbauen\n  items.forEach(({ h, p }) => {\n    const item = document.createElement('div');\n    item.className = 'cv-feature-item cv-from-below';\n\n    const hClone = h.cloneNode(true);\n    hClone.classList.add('cv-feature-title');\n    item.appendChild(hClone);\n\n    if (p) {\n      const pClone = p.cloneNode(true);\n      pClone.classList.add('cv-feature-text');\n      item.appendChild(pClone);\n    }\n\n    grid.appendChild(item);\n  });\n\n  \/\/ Grid hinter dem letzten der drei Quell-Container einf\u00fcgen\n  const lastContainer = items[items.length - 1].container;\n  lastContainer.insertAdjacentElement('afterend', grid);\n\n  \/\/ Originale H3\/P entfernen (verhindert Doppelanzeige)\n  items.forEach(({ container, h, p }) => {\n    if (h && h.parentNode === container) container.removeChild(h);\n    if (p && p.parentNode === container) container.removeChild(p);\n  });\n\n  \/\/ IntersectionObserver f\u00fcr Fade-In\n  const observer = new IntersectionObserver((entries, obs) => {\n    entries.forEach(entry => {\n      if (entry.isIntersecting) {\n        grid.classList.add('cv-features-visible');\n        obs.disconnect();\n      }\n    });\n  }, { threshold: 0.2, rootMargin: '0px 0px -10% 0px' });\n\n  observer.observe(grid);\n});\n<\/script>\n\n\n\n<script>(() => {\n  \/\/ 1) Exact texts to hide (as provided)\n  const TARGETS = [\n    \"Augenarzt-Praxis Tittwiesen Chur\",\n    \"Augen\u00e4rzte Zentrum Luzern\",\n    \"Augen\u00e4rzte St\u00e4fa \u2013 Zentrum Bahnhof\",\n    \"Augen\u00e4rzte Wetzikon \u2013 Zentrum Leue\",\n    \"Augen\u00e4rzte Zentrum Winterthur\",\n    \"Augen\u00e4rzte Z\u00fcrich \u2013 Zentrum Schaffhauserplatz\",\n    \"Augen\u00e4rzte Zollikofen \u2013 Zentrum Ziegelei\",\n    \"Optiker-Store Aarau\",\n    \"Optiker-Store Wallisellen\"\n  ];\n\n  \/\/ 2) Normalize (remove accents, unify dashes, trim, collapse spaces, lowercase)\n  const normalize = (s) => (s || \"\")\n    .normalize(\"NFKD\")\n    .replace(\/[\\u0300-\\u036f]\/g, \"\") \/\/ strip combining marks (diacritics)\n    .replace(\/[\\u2010-\\u2015\\u2212\\uFE58\\uFE63\\uFF0D]\/g, \"-\") \/\/ various dashes -> \"-\"\n    .replace(\/\\s+\/g, \" \")\n    .trim()\n    .toLowerCase();\n\n  const targetSet = new Set(TARGETS.map(normalize));\n\n  \/\/ 3) Ensure a CSS rule that wins against theme styles\n  const ensureStyle = () => {\n    if (!document.getElementById(\"hide-cards-style\")) {\n      const style = document.createElement(\"style\");\n      style.id = \"hide-cards-style\";\n      style.textContent = `.query-location-card.__hidden{display:none!important}`;\n      document.head.appendChild(style);\n    }\n  };\n\n  \/\/ 4) Hide matching cards (checks ALL h5s inside a card)\n  const hideMatches = (root = document) => {\n    root.querySelectorAll(\".query-location-card\").forEach(card => {\n      const texts = Array.from(card.querySelectorAll(\"h5\"))\n        .map(h => normalize(h.textContent));\n      if (texts.some(t => targetSet.has(t))) {\n        card.classList.add(\"__hidden\");\n      }\n    });\n  };\n\n  \/\/ 5) Run now and keep watching for dynamically added cards\n  const run = () => {\n    ensureStyle();\n    hideMatches();\n\n    new MutationObserver(mutations => {\n      for (const m of mutations) {\n        for (const node of m.addedNodes) {\n          if (node.nodeType !== 1) continue;\n          if (node.matches?.(\".query-location-card\")) {\n            hideMatches(node.parentNode || document);\n          } else if (node.querySelector?.(\".query-location-card\")) {\n            hideMatches(node);\n          }\n        }\n      }\n    }).observe(document.body, { childList: true, subtree: true });\n  };\n\n  if (document.readyState === \"loading\") {\n    document.addEventListener(\"DOMContentLoaded\", run);\n  } else {\n    run();\n  }\n})();\n<\/script>\n\n\n<div class=\"title-content-block container1364 mb120 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"mt24 mb24 max830 preloaded__content fade\"><h1>Augenlasern ClearVision<\/h1>\n<h2>Investieren Sie in eine klare Sicht ohne Brille<\/h2>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><p><strong>Nach dem Aufwachen direkt scharf sehen, ungehindert beim Sport durchstarten und nie wieder eine beschlagene Brille. Tr\u00e4umen Sie auch von einem Leben ohne Sehhilfe? Augenlasern macht es m\u00f6glich:<\/strong><\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><p><strong><span style=\"color: #ffce00;\">+<\/span><\/strong> Breite Kompetenz mit hochqualifizierten Augen\u00e4rzt:innen und Optometrist:innen<br \/>\n<strong><span style=\"color: #ffce00;\">+<\/span><\/strong> Modernste Lasertechnologien wie ReLEx-SMILE (SMILE Pro\u00ae), Trans-PRK und Femto-LASIK<br \/>\n<strong><span style=\"color: #ffce00;\">+<\/span><\/strong> \u00dcber acht Jahre und 10&#8217;000 Eingriffe Erfahrung<\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><p>Gemeinsam mit Ihnen finden wir in der umfangreichen Erstuntersuchung die Lasermethode, die medizinisch und pers\u00f6nlich am besten zu Ihnen passt.<\/p>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"disturber-with-text-block container500 mb120 mt120 block-disturber-style-num-2069549357 \"><div class=\"container\"><div class=\"content\"><div class=\"disturber-with-text-block-wrap\"><p class=\"disturber-with-text-block__title h5\"><span class=\"btn-icon\" style=\"display:inline-block; vertical-align:middle; margin-right:8px;\">     <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.augentagesklinik-winterthur.ch\/app\/uploads\/2025\/08\/Gutblick_Icon-6_Gesundheit_gelb.svg\"           alt=\"Gesundheit Icon\"           width=\"40\"           height=\"40\" \/> <\/span> <span style=\"color:white;\">Kostenlose Erstuntersuchung vereinbaren<\/span><\/p><p class=\"disturber-with-text-block__title semiBold h5\"><\/p><div class=\"button-wrap mt16\"><a class=\"button transparent icon arrow-dark\" target=\"\" href=\"https:\/\/www.clearvision-laser.ch\/de\/kontakt\/\">Kontakt<\/a><\/div><\/div><\/div><\/div><\/div>\n\n<div class=\"title-content-block container1364 mb32 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"mt24 mb24 max830 preloaded__content fade\"><h2>Operateur:innen f\u00fcr refraktive Chirurgie<\/h2>\n<\/div><\/div><\/div><\/div>\n\n\n<!DOCTYPE html>\n<html lang=\"de\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Unser Expertenteam &#8211; Augenlaser Spezialisten<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: \"Helvetica Neue\", Helvetica, Arial, Roboto, sans-serif;\n            background: linear-gradient(135deg, #ffffff 0%, #eae9e8 100%);\n            min-height: 100vh;\n            overflow-x: hidden;\n        }\n\n        \/* Carousel Container - mit eigener max-width *\/\n        .carousel-container {\n            position: relative;\n            height: 650px;\n            margin: 80px auto;\n            perspective: 1200px;\n            max-width: 1200px;  \/* Nur f\u00fcr Karussell *\/\n            padding: 20px 60px;\n        }\n\n        .carousel {\n            position: relative;\n            width: 100%;\n            height: 100%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            overflow: visible;\n        }\n\n        \/* Navigation Buttons *\/\n        .carousel-nav {\n            position: absolute;\n            top: 50%;\n            transform: translateY(-50%);\n            background: #ffce00;\n            border: none;\n            width: 50px;\n            height: 50px;\n            border-radius: 50%;\n            cursor: pointer;\n            z-index: 10;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 15px rgba(0,0,0,0.2);\n        }\n\n        .carousel-nav:hover {\n            background: #f0c000;\n            transform: translateY(-50%) scale(1.1);\n        }\n\n        .carousel-nav.prev {\n            left: 0;\n        }\n\n        .carousel-nav.next {\n            right: 0;\n        }\n\n        .carousel-nav svg {\n            width: 24px;\n            height: 24px;\n            fill: #0c338c;\n        }\n\n        \/* Card Styles *\/\n        .doctor-card {\n            position: absolute;\n            width: 380px;\n            background: white;\n            border-radius: 4px;\n            overflow: hidden;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.2);\n            transition: all 0.6s ease;\n            cursor: pointer;\n            text-decoration: none;\n            display: block;\n            color: inherit;\n        }\n\n        \/* Positioning for 3D effect *\/\n        .doctor-card.active {\n            transform: translateX(0) scale(1) rotateY(0);\n            z-index: 5;\n            opacity: 1;\n        }\n\n        .doctor-card.next {\n            transform: translateX(250px) scale(0.85) rotateY(-25deg);\n            z-index: 3;\n            opacity: 0.7;\n            filter: blur(1px);\n        }\n\n        .doctor-card.prev {\n            transform: translateX(-250px) scale(0.85) rotateY(25deg);\n            z-index: 3;\n            opacity: 0.7;\n            filter: blur(1px);\n        }\n\n        .doctor-card.hidden {\n            transform: translateX(0) scale(0.7) rotateY(0);\n            z-index: 1;\n            opacity: 0;\n        }\n\n        .doctor-image-container {\n            position: relative;\n            height: 280px;\n            overflow: hidden;\n            background: linear-gradient(135deg, #0c338c 0%, #1E5034 100%);\n        }\n\n        .doctor-image {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            transition: transform 0.3s ease;\n        }\n\n        .doctor-card.active:hover .doctor-image {\n            transform: scale(1.05);\n        }\n\n        .specialty-badge {\n            position: absolute;\n            top: 0;\n            right: 0;\n            width: 120px;\n            height: 120px;\n            overflow: hidden;\n        }\n\n        .specialty-badge::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            right: 0;\n            width: 0;\n            height: 0;\n            border-style: solid;\n            border-width: 0 120px 120px 0;\n            border-color: transparent #ffce00 transparent transparent;\n        }\n\n        .specialty-badge::after {\n            content: attr(data-text);\n            position: absolute;\n            top: 25px;\n            left: 10px;\n            transform: rotate(45deg);\n            transform-origin: center;\n            font-size: 0.7rem;\n            font-weight: 700;\n            color: #0c338c;\n            text-align: center;\n            width: 140px;\n            line-height: 1.2;\n            white-space: pre-line;\n        }\n\n        .doctor-info {\n            padding: 30px;\n        }\n\n        .doctor-name {\n            font-size: 1.5rem;\n            color: #2c3e50;\n            margin-bottom: 8px;\n            font-weight: 700;\n        }\n\n        .doctor-title {\n            color: #0c338c;\n            font-size: 1rem;\n            margin-bottom: 20px;\n            font-weight: 500;\n        }\n\n        .doctor-details {\n            display: flex;\n            flex-direction: column;\n            gap: 15px;\n        }\n\n        .detail-item {\n            display: flex;\n            align-items: center;\n            gap: 12px;\n            color: #495057;\n            font-size: 0.95rem;\n        }\n\n        .detail-icon {\n            width: 40px;\n            height: 40px;\n            background: #f8f9fa;\n            border-radius: 4px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            flex-shrink: 0;\n            padding: 8px;\n            border: 1px solid #e0e0e0;\n        }\n\n        .detail-icon img {\n            width: 100%;\n            height: 100%;\n            object-fit: contain;\n        }\n\n        .detail-text {\n            flex: 1;\n        }\n\n        .detail-label {\n            font-size: 0.85rem;\n            color: #6c757d;\n            display: block;\n        }\n\n        .detail-value {\n            font-weight: 600;\n            color: #2c3e50;\n        }\n\n        \/* Dots Indicator - auch mit max-width *\/\n        .carousel-dots {\n            display: flex;\n            justify-content: center;\n            gap: 10px;\n            margin: 40px auto 0;\n            max-width: 1200px;  \/* Gleiche Breite wie Karussell *\/\n        }\n\n        .dot {\n            width: 12px;\n            height: 12px;\n            border-radius: 50%;\n            background: #d0d0d0;\n            cursor: pointer;\n            transition: all 0.3s ease;\n        }\n\n        .dot.active {\n            background: #0c338c;\n            width: 30px;\n            border-radius: 6px;\n        }\n\n        \/* Mobile Touch Support - IMPROVED PROPORTIONS *\/\n        @media (max-width: 992px) {\n            .carousel-container {\n                height: 720px;\n                margin: 30px auto;\n                padding: 10px 20px;\n            }\n\n            .doctor-card {\n                width: 360px;\n                max-height: 700px;\n            }\n            \n            .doctor-card.active {\n                transform: translateX(0) scale(0.85) rotateY(0);\n            }\n\n            .doctor-card.next {\n                transform: translateX(170px) scale(0.65) rotateY(-20deg);\n            }\n\n            .doctor-card.prev {\n                transform: translateX(-170px) scale(0.65) rotateY(20deg);\n            }\n\n            .doctor-image-container {\n                height: 230px;\n            }\n\n            .doctor-info {\n                padding: 20px;\n            }\n        }\n\n        @media (max-width: 768px) {\n            .carousel-container {\n                height: 650px;\n                margin: 20px auto;\n                padding: 5px 15px;\n            }\n\n            .doctor-card {\n                width: 320px;\n                max-height: 630px;\n            }\n            \n            .doctor-card.active {\n                transform: translateX(0) scale(0.8) rotateY(0);\n            }\n\n            .doctor-card.next {\n                transform: translateX(140px) scale(0.6) rotateY(-15deg);\n                opacity: 0.5;\n            }\n\n            .doctor-card.prev {\n                transform: translateX(-140px) scale(0.6) rotateY(15deg);\n                opacity: 0.5;\n            }\n\n            .carousel-nav {\n                display: none;\n            }\n\n            .doctor-info {\n                padding: 18px;\n            }\n\n            .doctor-image-container {\n                height: 200px;\n            }\n\n            .doctor-name {\n                font-size: 1.3rem;\n            }\n\n            .doctor-title {\n                font-size: 0.9rem;\n                margin-bottom: 15px;\n            }\n\n            .detail-item {\n                font-size: 0.85rem;\n                gap: 10px;\n            }\n        }\n\n        @media (max-width: 576px) {\n            .carousel-container {\n                height: 600px;\n                margin: 15px auto;\n                padding: 5px 10px;\n            }\n\n            .doctor-card {\n                width: 290px;\n                max-height: 580px;\n            }\n            \n            .doctor-card.active {\n                transform: translateX(0) scale(0.75) rotateY(0);\n            }\n\n            .doctor-card.next {\n                transform: translateX(110px) scale(0.55) rotateY(-10deg);\n                opacity: 0.3;\n                filter: blur(2px);\n            }\n\n            .doctor-card.prev {\n                transform: translateX(-110px) scale(0.55) rotateY(10deg);\n                opacity: 0.3;\n                filter: blur(2px);\n            }\n\n            .doctor-info {\n                padding: 15px;\n            }\n\n            .doctor-name {\n                font-size: 1.2rem;\n                margin-bottom: 5px;\n            }\n\n            .doctor-title {\n                font-size: 0.85rem;\n                margin-bottom: 12px;\n                line-height: 1.3;\n            }\n\n            .detail-item {\n                font-size: 0.8rem;\n                gap: 8px;\n            }\n\n            .detail-icon {\n                width: 35px;\n                height: 35px;\n                padding: 6px;\n            }\n\n            .carousel-dots {\n                margin-top: 15px;\n            }\n            \n            .doctor-image-container {\n                height: 180px;\n            }\n            \n            .specialty-badge {\n                width: 100px;\n                height: 100px;\n            }\n\n            .specialty-badge::before {\n                border-width: 0 100px 100px 0;\n            }\n\n            .specialty-badge::after {\n                font-size: 0.6rem;\n                top: 20px;\n                left: 8px;\n            }\n        }\n\n        @media (max-width: 480px) {\n            body {\n                padding: 20px 10px;\n            }\n\n            .carousel-container {\n                height: 580px;\n                padding: 5px 5px;\n                margin: 10px auto;\n            }\n\n            .doctor-card {\n                width: 270px;\n                max-height: 560px;\n            }\n            \n            .doctor-card.active {\n                transform: translateX(0) scale(0.7) rotateY(0);\n            }\n\n            .doctor-card.next {\n                transform: translateX(90px) scale(0.5) rotateY(-5deg);\n                opacity: 0.2;\n                filter: blur(3px);\n            }\n\n            .doctor-card.prev {\n                transform: translateX(-90px) scale(0.5) rotateY(5deg);\n                opacity: 0.2;\n                filter: blur(3px);\n            }\n\n            .doctor-image-container {\n                height: 160px;\n            }\n\n            .doctor-info {\n                padding: 12px;\n            }\n\n            .doctor-details {\n                gap: 10px;\n            }\n\n            .specialty-badge {\n                width: 85px;\n                height: 85px;\n            }\n\n            .doctor-name {\n                font-size: 1.1rem;\n                margin-bottom: 5px;\n            }\n\n            .doctor-title {\n                font-size: 0.8rem;\n                margin-bottom: 12px;\n                line-height: 1.3;\n            }\n\n            .detail-item {\n                font-size: 0.75rem;\n                gap: 8px;\n            }\n\n            .detail-icon {\n                width: 30px;\n                height: 30px;\n                padding: 6px;\n            }\n\n            .specialty-badge::before {\n                border-width: 0 85px 85px 0;\n            }\n\n            .specialty-badge::after {\n                font-size: 0.5rem;\n                top: 16px;\n                left: 7px;\n                width: 95px;\n            }\n        }\n        \n\n    <\/style>\n<\/head>\n<body>\n    <!-- Kein Container div mehr - alles kann volle Breite nutzen -->\n    <div class=\"carousel-container\">\n        <button class=\"carousel-nav prev\" onclick=\"prevSlide()\">\n            <svg viewBox=\"0 0 24 24\">\n                <path d=\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z\"\/>\n            <\/svg>\n        <\/button>\n        \n        <div class=\"carousel\" id=\"carousel\">\n            <!-- Card 1 - Dirk Duwendag -->\n            <a href=\"https:\/\/www.clearvision-laser.ch\/de\/team-praxis\/dr-med-dirk-duwendag\/\" target=\"_blank\" class=\"doctor-card active\" data-index=\"0\">\n                <div class=\"doctor-image-container\">\n                    <img decoding=\"async\" src=\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg\" alt=\"Dr. med. Dirk Duwendag\" class=\"doctor-image\">\n                    <span class=\"specialty-badge\" data-text=\"Leitender Arzt&#10;refraktive Chirurgie\"><\/span>\n                <\/div>\n                <div class=\"doctor-info\">\n                    <h3 class=\"doctor-name\">Dr. med. Dirk Duwendag<\/h3>\n                    <div class=\"doctor-title\">Facharzt f\u00fcr Augenheilkunde und Augenchirurgie FMH \u2013 FEBO<\/div>\n                <\/div>\n            <\/a>\n\n            <!-- Card 2 - Simone Kolb -->\n            <a href=\"https:\/\/www.clearvision-laser.ch\/de\/team-praxis\/dr-med-simone-kolb\/\" target=\"_blank\" class=\"doctor-card next\" data-index=\"1\">\n                <div class=\"doctor-image-container\">\n                    <img decoding=\"async\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2024\/08\/Simone_Kolb-1.jpg\" alt=\"Dr. med. Simone Kolb\" class=\"doctor-image\">\n                <\/div>\n                <div class=\"doctor-info\">\n                    <h3 class=\"doctor-name\">Dr. med. Simone Kolb<\/h3>\n                    <div class=\"doctor-title\">Fach\u00e4rztin f\u00fcr Augenheilkunde FMH \u2013 FEBO<\/div>\n                <\/div>\n            <\/a>\n\n            <!-- Card 3 - Darius Madjdpour -->\n            <a href=\"https:\/\/www.clearvision-laser.ch\/de\/team-praxis\/dr-med-darius-madjdpour\/\" target=\"_blank\" class=\"doctor-card prev\" data-index=\"2\">\n                <div class=\"doctor-image-container\">\n                    <img decoding=\"async\" src=\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Darius_730px.jpg\" alt=\"Dr. med. Darius Madjdpour\" class=\"doctor-image\">\n                <\/div>\n                <div class=\"doctor-info\">\n                    <h3 class=\"doctor-name\">Dr. med. Darius Madjdpour<\/h3>\n                    <div class=\"doctor-title\">Facharzt f\u00fcr Augenheilkunde FMH \u2013 FEBO \u2013 FICO<\/div>\n                <\/div>\n            <\/a>\n        <\/div>\n\n        <button class=\"carousel-nav next\" onclick=\"nextSlide()\">\n            <svg viewBox=\"0 0 24 24\">\n                <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\"\/>\n            <\/svg>\n        <\/button>\n    <\/div>\n\n    <div class=\"carousel-dots\">\n        <span class=\"dot active\" onclick=\"goToSlide(0)\"><\/span>\n        <span class=\"dot\" onclick=\"goToSlide(1)\"><\/span>\n        <span class=\"dot\" onclick=\"goToSlide(2)\"><\/span>\n    <\/div>\n\n    <script>\n        let currentIndex = 0;\n        const cards = document.querySelectorAll('.doctor-card');\n        const dots = document.querySelectorAll('.dot');\n        const carousel = document.getElementById('carousel');\n        \n        \/\/ Touch support\n        let touchStartX = 0;\n        let touchEndX = 0;\n\n        function updateCarousel() {\n            cards.forEach((card, index) => {\n                card.classList.remove('active', 'next', 'prev', 'hidden');\n                dots[index].classList.remove('active');\n                \n                if (index === currentIndex) {\n                    card.classList.add('active');\n                    dots[index].classList.add('active');\n                } else if (index === (currentIndex + 1) % cards.length) {\n                    card.classList.add('next');\n                } else if (index === (currentIndex - 1 + cards.length) % cards.length) {\n                    card.classList.add('prev');\n                } else {\n                    card.classList.add('hidden');\n                }\n            });\n        }\n\n        function nextSlide() {\n            currentIndex = (currentIndex + 1) % cards.length;\n            updateCarousel();\n        }\n\n        function prevSlide() {\n            currentIndex = (currentIndex - 1 + cards.length) % cards.length;\n            updateCarousel();\n        }\n\n        function goToSlide(index) {\n            currentIndex = index;\n            updateCarousel();\n        }\n\n        \/\/ Touch events\n        carousel.addEventListener('touchstart', (e) => {\n            touchStartX = e.changedTouches[0].screenX;\n        });\n\n        carousel.addEventListener('touchend', (e) => {\n            touchEndX = e.changedTouches[0].screenX;\n            handleSwipe();\n        });\n\n        function handleSwipe() {\n            if (touchEndX < touchStartX - 50) {\n                nextSlide();\n            }\n            if (touchEndX > touchStartX + 50) {\n                prevSlide();\n            }\n        }\n\n        \/\/ Auto-rotate (optional - uncomment to enable)\n        \/\/ setInterval(nextSlide, 5000);\n\n        \/\/ Keyboard navigation\n        document.addEventListener('keydown', (e) => {\n            if (e.key === 'ArrowLeft') prevSlide();\n            if (e.key === 'ArrowRight') nextSlide();\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n\n<div class=\"title-content-block container1364 mb0 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"mt24 mb24 max830 preloaded__content fade\"><h2>SMILE Pro\u00ae<\/h2>\n<p>ClearVision ist der Schweizer Vorreiter f\u00fcr die besonders schonende Lasermethode ReLEx-SMILE (SMILE Pro\u00ae). Nur ein winziger Schnitt ist f\u00fcr SMILE erforderlich. Dadurch wird eine hohe Hornhautstabilit\u00e4t sichergestellt und das Risiko f\u00fcr Nebenwirkungen ist sehr klein.<\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><h3 style=\"text-align:center !important;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-12277\" style=\"display:block; margin-left:auto; margin-right:auto;\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/07\/Gutblick_Icon-42_Patientenzufriedenheit.svg\" alt=\"\" width=\"50\" height=\"50\" \/>Schnelle Heilung <br \/><\/h3>\n<p>Da nur ein winziger Schnitt an der Hornhaut ausgef\u00fchrt wird und die Hornhautoberfl\u00e4che nicht belastet wird, verheilt der Eingriff schnell.<\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><h3 style=\"text-align: center !important;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-12277\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/07\/Gutblick_Icon-20_Liebe.svg\" alt=\"\" width=\"50\" height=\"50\" \/>Schmerzarm &nbsp;<\/h3>\n<p>Der Eingriff ist schmerzfrei und auch nach der OP bestehen meist nur f\u00fcr ein paar Stunden ein Fremdk\u00f6rper- oder Kratzgef\u00fchl.<\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><h3 style=\"text-align:center !important;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-12277\" style=\"display:block; margin-left:auto; margin-right:auto;\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/07\/Gutblick_Icon-24_Vision-Sehen.svg\" alt=\"\" width=\"50\" height=\"50\" \/>Geringes Risiko<\/h3>\n<p>Durch die geringe Belastung der Hornhaut reduziert sich das Risiko f\u00fcr Infektionen und trockene Augen.<\/p>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"testimonial-block mb32 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"testimonial-slider max710\"><div class=\"testimonial-block-wrap\"><div class=\"testimonial-block-inner\"><p class=\"testimonial-block__content\">\u00abEinfach die Augen \u00f6ffnen und perfekt sehen \u2013 auf dieses neue Lebensgef\u00fchl m\u00f6chte ich nicht mehr verzichten. H\u00e4tte ich gewusst, wie unkompliziert\r\nAugenlasern ist, h\u00e4tte ich es schon viel fr\u00fcher gemacht. Die Spezialist:innen von ClearVision haben mich kompetent begleitet und kann ich nur empfehlen.\u00bb<\/p><h5 class=\"testimonial-block__title mt40\">Severin W. hat sich bei ClearVision die Augen lasern lassen<\/h5><\/div><img loading=\"lazy\" decoding=\"async\" width=\"1698\" height=\"1408\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454.webp\" class=\"img__staff_author\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454.webp 1698w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454-300x249.webp 300w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454-1024x849.webp 1024w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454-1536x1274.webp 1536w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/08\/Severin-scaled-e1756150471454-768x637.webp 768w\" sizes=\"auto, (max-width: 1698px) 100vw, 1698px\" \/><\/div><\/div><\/div><\/div><\/div>\n\n\n<!DOCTYPE html>\n<html lang=\"de\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play<\/title>\n    <style>\n        \/* ========================================\n           BEHANDLUNGSABLAUF TIMELINE - SCOPED STYLES\n           Alle Styles sind auf .timeline-section beschr\u00e4nkt\n           ======================================== *\/\n\n        \/* Scoped Reset - NUR f\u00fcr Timeline-Elemente *\/\n        .timeline-section,\n        .timeline-section * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        .timeline-section {\n            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;\n            padding: 60px 20px;\n        }\n\n        .timeline-section .timeline-wrapper {\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        \/* Section Header *\/\n        .timeline-section .timeline-header {\n            text-align: center;\n            margin-bottom: 50px;\n        }\n\n        .timeline-section .timeline-header h2 {\n            font-size: 40px;\n            color: #0c338c;\n            margin-bottom: 15px;\n            font-weight: 500;\n        }\n\n        .timeline-section .timeline-header p {\n            font-size: 1rem;\n            color: #1d1d1b;\n            max-width: 600px;\n            margin: 0 auto 30px;\n        }\n\n        \/* Timeline Container *\/\n        .timeline-section .timeline-container {\n            position: relative;\n            padding: 40px 0;\n            margin-bottom: 30px;\n        }\n\n        \/* Connecting Line *\/\n        .timeline-section .timeline-line {\n            position: absolute;\n            top: 70px;\n            left: 10%;\n            width: 80%;\n            height: 4px;\n            background: #0c338c;\n            z-index: 1;\n        }\n\n        \/* Steps Container *\/\n        .timeline-section .steps-container {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 20px;\n            position: relative;\n            z-index: 2;\n            width: 100%;\n        }\n\n        \/* Individual Step *\/\n        .timeline-section .step {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            text-decoration: none;\n            transition: transform 0.3s ease;\n        }\n\n        .timeline-section .step:hover,\n        .timeline-section .step.active-auto {\n            transform: translateY(-8px);\n        }\n\n        .timeline-section .step:hover .step-number,\n        .timeline-section .step.active-auto .step-number {\n            background: #ffce00;\n            color: #0c338c;\n            box-shadow: 0 8px 20px rgba(255, 206, 0, 0.4);\n        }\n\n        \/* Step title bleibt immer blau *\/\n        .timeline-section .step-title {\n            font-size: 1rem;\n            font-weight: 600;\n            color: #0c338c;\n            text-align: center;\n            line-height: 1.3;\n            max-width: 180px;\n            transition: none; \/* Keine Transition f\u00fcr Farbe *\/\n        }\n\n        .timeline-section .step-number {\n            width: 60px;\n            height: 60px;\n            border-radius: 50%;\n            background: white;\n            border: 4px solid #0c338c;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.5rem;\n            font-weight: bold;\n            color: #0c338c;\n            margin-bottom: 15px;\n            transition: all 0.3s ease;\n        }\n\n        .timeline-section .step-info {\n            display: flex;\n            flex-direction: column;\n            gap: 5px;\n            margin-top: 10px;\n            align-items: center;\n        }\n\n        .timeline-section .step-duration,\n        .timeline-section .step-price {\n            font-size: 0.85rem;\n            color: #6c757d;\n            display: flex;\n            align-items: center;\n            gap: 5px;\n        }\n\n        .timeline-section .step-price {\n            color: #0c338c;\n            font-weight: 600;\n        }\n\n        .timeline-section .info-icon {\n            width: 14px;\n            height: 14px;\n        }\n\n        \/* CTA Button *\/\n        .timeline-section .timeline-cta {\n            text-align: center;\n            margin-top: 40px;\n        }\n\n        .timeline-section .cta-button {\n            display: inline-block;\n            padding: 15px 35px;\n            background: #0c338c;\n            color: white;\n            text-decoration: none;\n            border-radius: 4px;\n            font-size: 20px;\n            font-weight: 400;\n            transition: all 0.3s ease;\n        }\n\n        .timeline-section .cta-button:hover {\n            background: #062061;\n            color: white;\n        }\n\n        \/* Tablet Breakpoint *\/\n        @media (max-width: 768px) {\n            .timeline-section .timeline-header h2 {\n                font-size: 1.8rem;\n            }\n\n            .timeline-section .timeline-line {\n                display: none;\n            }\n\n            .timeline-section .steps-container {\n                grid-template-columns: repeat(2, 1fr);\n                gap: 30px;\n            }\n\n            .timeline-section .step-number {\n                width: 50px;\n                height: 50px;\n                font-size: 1.2rem;\n            }\n        }\n\n        \/* Mobile Breakpoint *\/\n        @media (max-width: 480px) {\n            .timeline-section {\n                padding: 40px 15px;\n            }\n\n            .timeline-section .steps-container {\n                grid-template-columns: 1fr;\n                gap: 20px;\n            }\n\n            .timeline-section .step {\n                flex-direction: row;\n                justify-content: flex-start;\n            }\n\n            .timeline-section .step:hover,\n            .timeline-section .step.active-auto {\n                transform: translateX(5px);\n            }\n\n            .timeline-section .step-number {\n                margin-bottom: 0;\n                margin-right: 20px;\n                flex-shrink: 0;\n            }\n\n            .timeline-section .step-content {\n                display: flex;\n                flex-direction: column;\n                align-items: flex-start;\n            }\n\n            .timeline-section .step-title {\n                text-align: left;\n                max-width: none;\n            }\n\n            .timeline-section .step-info {\n                align-items: flex-start;\n                margin-top: 8px;\n            }\n\n            .timeline-section .cta-button {\n                width: 100%;\n                max-width: 300px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Timeline Section for Homepage -->\n    <section class=\"timeline-section\">\n        <div class=\"timeline-wrapper\">\n            <!-- Section Header -->\n            <div class=\"timeline-header\">\n                <h2>In vier Schritten zu neuer Sehkraft<\/h2>\n            <\/div>\n\n            <!-- Timeline -->\n            <div class=\"timeline-container\">\n                <div class=\"timeline-line\"><\/div>\n                \n                <div class=\"steps-container\">\n                    <!-- Step 1 -->\n                    <a href=\"\/de\/behandlungsablauf#step-1\" class=\"step\" data-step=\"1\">\n                        <div class=\"step-number\">1<\/div>\n                        <div class=\"step-content\">\n                            <div class=\"step-title\">Kostenlose Erstuntersuchung<\/div>\n                            <div class=\"step-info\">\n                                <div class=\"step-duration\">\n                                    <svg class=\"info-icon\" viewBox=\"0 0 24 24\">\n                                        <path fill=\"#6c757d\" d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z\"\/>\n                                    <\/svg>\n                                    60 Min.\n                                <\/div>\n                                <div class=\"step-price\">Kostenlos<\/div>\n                            <\/div>\n                        <\/div>\n                    <\/a>\n\n                    <!-- Step 2 -->\n                    <a href=\"\/de\/behandlungsablauf#step-2\" class=\"step\" data-step=\"2\">\n                        <div class=\"step-number\">2<\/div>\n                        <div class=\"step-content\">\n                            <div class=\"step-title\">Individuelle <br>OP-Besprechung<\/div>\n                            <div class=\"step-info\">\n                                <div class=\"step-duration\">\n                                    <svg class=\"info-icon\" viewBox=\"0 0 24 24\">\n                                        <path fill=\"#6c757d\" d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z\"\/>\n                                    <\/svg>\n                                    60 Min.\n                                <\/div>\n                                <div class=\"step-price\">Inkludiert<\/div>\n                            <\/div>\n                        <\/div>\n                    <\/a>\n\n                    <!-- Step 3 -->\n                    <a href=\"\/de\/behandlungsablauf#step-3\" class=\"step\" data-step=\"3\">\n                        <div class=\"step-number\">3<\/div>\n                        <div class=\"step-content\">\n                            <div class=\"step-title\">Augenlasern und Nachkontrollen<\/div>\n                            <div class=\"step-info\">\n                                <div class=\"step-duration\">\n                                    <svg class=\"info-icon\" viewBox=\"0 0 24 24\">\n                                        <path fill=\"#6c757d\" d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z\"\/>\n                                    <\/svg>\n                                    60 Min.\n                                <\/div>\n                                <div class=\"step-price\">ab CHF 1&#8217;480<\/div>\n                            <\/div>\n                        <\/div>\n                    <\/a>\n\n                    <!-- Step 4 -->\n                    <a href=\"\/de\/behandlungsablauf#step-4\" class=\"step\" data-step=\"4\">\n                        <div class=\"step-number\">4<\/div>\n                        <div class=\"step-content\">\n                            <div class=\"step-title\">Freiwillige Jahreskontrolle<\/div>\n                            <div class=\"step-info\">\n                                <div class=\"step-duration\">\n                                    <svg class=\"info-icon\" viewBox=\"0 0 24 24\">\n                                        <path fill=\"#6c757d\" d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z\"\/>\n                                    <\/svg>\n                                    30 Min.\n                                <\/div>\n                                <div class=\"step-price\">CHF 150<\/div>\n                            <\/div>\n                        <\/div>\n                    <\/a>\n                <\/div>\n            <\/div>\n\n            <!-- CTA Button -->\n            <div class=\"timeline-cta\">\n                <a href=\"\/de\/behandlungsablauf\/\" class=\"cta-button\">Behandlungsablauf ansehen<\/a>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <script>\n        \/\/ Auto-Play Animation f\u00fcr Timeline Steps\n        (function() {\n            const steps = document.querySelectorAll('.timeline-section .step');\n            let currentStep = 0;\n            let autoPlayInterval;\n\n            function highlightStep() {\n                \/\/ Entferne active-auto Klasse von allen Steps\n                steps.forEach(step => {\n                    step.classList.remove('active-auto');\n                });\n\n                \/\/ F\u00fcge active-auto Klasse zum aktuellen Step hinzu\n                if (steps[currentStep]) {\n                    steps[currentStep].classList.add('active-auto');\n                }\n\n                \/\/ Gehe zum n\u00e4chsten Step (oder zur\u00fcck zum ersten)\n                currentStep = (currentStep + 1) % steps.length;\n            }\n\n            \/\/ Starte Auto-Play Animation\n            function startAutoPlay() {\n                \/\/ Initiales Highlighting\n                highlightStep();\n                \n                \/\/ Setze Interval f\u00fcr kontinuierliche Animation\n                autoPlayInterval = setInterval(highlightStep, 1500); \/\/ Alle 1.5 Sekunden\n            }\n\n            \/\/ Stoppe Auto-Play wenn User mit Element interagiert\n            function stopAutoPlay() {\n                clearInterval(autoPlayInterval);\n                \/\/ Entferne alle active-auto Klassen\n                steps.forEach(step => {\n                    step.classList.remove('active-auto');\n                });\n            }\n\n            \/\/ Event Listener f\u00fcr Hover (optional - pausiert Animation bei Hover)\n            const timelineContainer = document.querySelector('.timeline-section .timeline-container');\n            \n            timelineContainer.addEventListener('mouseenter', stopAutoPlay);\n            timelineContainer.addEventListener('mouseleave', () => {\n                \/\/ Reset currentStep und starte neu\n                currentStep = 0;\n                startAutoPlay();\n            });\n\n            \/\/ Starte Animation beim Laden der Seite\n            startAutoPlay();\n        })();\n    <\/script>\n<\/body>\n<\/html>\n\n\n<div class=\"quote-block container1050 hidden-block mb120 mt120 block-quote-special-style-num-2029420174 \"><div class=\"container\"><div class=\"content\"><div class=\"quote-special-block-wrap\"><div class=\"quote-special-block-inner\"><div class=\"quote-special-block-inner-animated\"><p class=\"quote-special-block__content\">97,9% unserer Patient:innen w\u00fcrden ihre Augenlaser-Operation nochmals bei uns durchf\u00fchren lassen. <br><br><i style=\"color: #ffffff;\">Quelle: repr\u00e4sentative Umfrage vom unabh\u00e4ngigen Marktforschungsinstitut<\/i>\r\n<\/p><h5 class=\"quote-special-block__title mt40\">97,9% Patientenzufriedenheit<\/h5><\/div><\/div><svg class=\"svg-plus\" width=\"330\" height=\"330\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0H16V8H24V16H16V24H8V16H0V8H8V0Z\" fill=\"#FFCE00\"\/>\n<\/svg><\/div><\/div><\/div><\/div>\n\n<div class=\"title-content-block container1364 mb120 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"mt24 mb24 max830 preloaded__content fade\"><h2>Wir begleiten Sie an unseren Standorten Wallisellen, St. Gallen und Aarau<\/h2>\n<\/div><\/div><\/div><\/div>\n\n<div class=\"query-all-location-block container1364\"><div class=\"container mt120 mb120\"><div class=\"content\"><div class=\"query-all-location-block-wrap mt120\" data-slider=\"false\"><div class=\"card-element query-location-card\"><div class=\"card-element-wrap query-location-card-wrap\"><div href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-zentrum-wallisellen\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink\"><div class=\"card-element-wrap__image query-location-card-wrap__image thumbnail-slider\"><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-empfang-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-empfang-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-empfang-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-02.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-02.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-wartezimmer-02-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-sprechzimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-sprechzimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-wallisellen-sprechzimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><\/div><\/div><div class=\"card-element-wrap__content query-location-card-wrap__content\"><div class=\"card-element-wrap__inner query-location-card-wrap__inner\"><a href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-zentrum-wallisellen\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink toggle\"><h5 class=\"card-element-wrap__content-title query-location-card-wrap__content-title semiBold\">Augen\u00e4rzte Z\u00fcrich \u2013 Zentrum Wallisellen<\/h5><\/a><div class=\"card-element-wrap__content-toggle\"><div class=\"query-location-card-wrap__content-info mt24 mb24\"><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 2.25C8.26821 2.25 5.25 5.41913 5.25 9.3375C5.25 13.0681 8.5747 18.0455 10.5574 20.6821C11.2929 21.6601 12.7071 21.6601 13.4426 20.6821C15.4253 18.0455 18.75 13.0681 18.75 9.3375C18.75 5.41913 15.7318 2.25 12 2.25ZM-nan -nanL12 11.8688C11.3606 11.8688 10.7475 11.6021 10.2954 11.1274C9.84327 10.6527 9.58929 10.0088 9.58929 9.3375C9.58929 8.66617 9.84327 8.02234 10.2954 7.54764C10.7475 7.07293 11.3606 6.80625 12 6.80625C12.6394 6.80625 13.2525 7.07293 13.7046 7.54764C14.1567 8.02234 14.4107 8.66617 14.4107 9.3375C14.4107 10.0088 14.1567 10.6527 13.7046 11.1274C13.2525 11.6021 12.6394 11.8688 12 11.8688L-nan -nanL-nan -nanZ\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-address\" target=\"_blank\" href=\"https:\/\/maps.app.goo.gl\/KfKDyo7zEVnXDH627\">Bahnhofplatz 2, 8304 Wallisellen<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.12067 3.57394C5.31751 3.37739 5.55388 3.22492 5.81411 3.12663C6.07434 3.02834 6.35249 2.98648 6.63012 3.00382C6.90776 3.02116 7.17853 3.0973 7.42451 3.2272C7.67049 3.35711 7.88605 3.5378 8.05692 3.75732L10.0763 6.35157C10.4464 6.82744 10.5769 7.44732 10.4307 8.03232L9.81529 10.4961C9.78348 10.6237 9.78519 10.7573 9.82028 10.8841C9.85537 11.0108 9.92263 11.1264 10.0155 11.2194L12.7797 13.9836C12.8729 14.0767 12.9886 14.144 13.1155 14.1791C13.2425 14.2142 13.3764 14.2158 13.5042 14.1838L15.9668 13.5684C16.2555 13.4963 16.5568 13.4907 16.848 13.552C17.1392 13.6134 17.4126 13.7402 17.6475 13.9228L20.2418 15.9411C21.1744 16.6667 21.2599 18.0448 20.4252 18.8784L19.2619 20.0417C18.4294 20.8742 17.1852 21.2398 16.0253 20.8314C13.0566 19.7869 10.3612 18.0874 8.13904 15.8589C5.91074 13.6371 4.21123 10.9421 3.16654 7.97382C2.75929 6.81507 3.12492 5.56969 3.95742 4.73719L5.12067 3.57394Z\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-telephone\" href=\"tel:0448366666\">044 836 66 66<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><rect x=\"2.5\" y=\"4.75\" width=\"19.75\" height=\"14.5\" rx=\"1\" stroke=\"#0C338C\" stroke-width=\"2\"\/><path d=\"M2.25 4.5L10.8591 12.3056C11.6104 12.9867 12.7525 12.9979 13.5168 12.3315L22.5 4.5\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-mail\" href=\"mailto:augenaerzte-wallisellen@hin.ch\">augenaerzte-wallisellen@hin.ch<\/a><\/p><p class=\"mb0\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M16.4516 4.5C16.4516 5.02739 16.2375 5.13074 15.8564 5.50366C15.4753 5.87658 14.9583 6.08608 14.4194 6.08608H13.9113C13.507 6.08608 13.1194 6.24321 12.8335 6.5229C12.5477 6.80259 12.3871 7.18193 12.3871 7.57747V8.07461C12.3871 8.3383 12.28 8.59119 12.0895 8.77765C11.8989 8.96411 11.6405 9.06887 11.371 9.06887C11.1015 9.06887 10.843 9.17362 10.6525 9.36008C10.4619 9.54654 10.3548 9.79943 10.3548 10.0631V11.0574C10.3548 11.5848 10.569 12.0906 10.9501 12.4635C11.3312 12.8364 11.8481 13.0459 12.3871 13.0459H14.4194C14.9583 13.0459 15.4753 13.2554 15.8564 13.6283C16.2375 14.0013 16.4516 14.507 16.4516 15.0344C16.4516 15.5618 16.6657 16.0676 17.0468 16.4405C17.428 16.8135 17.9449 17.023 18.4839 17.023H19.5M11.371 21V18.5143C11.371 17.6911 10.6749 17.023 9.83357 17.023C9.00644 17.023 8.32258 16.3667 8.32258 15.5574C8.32258 15.2194 8.20268 14.8913 7.98421 14.6298L3.75 9.566\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><a class=\"query-location-card-wrap__content-website\" target=\"_blank\" href=\"https:\/\/www.augenaerzte-wallisellen.ch\/\">augenaerzte-wallisellen.ch<\/a><\/p><\/div><div class=\"worktime_wrap\"><div class=\"worktime_inner\"><div class=\"worktime_status\"><strong>Geschlossen<\/strong><p>\u00d6ffnet wieder um 07:00 (Mittwoch)<\/p><p>Schliesst um 12:00 (Mittwoch)<\/p><\/div><div class=\"worktime_week\"><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Mittwoch<\/p><ul class=\"worktime_week-day-time\"><li>07:00 &#8211; 12:00<\/li><li>13:00 &#8211; 18:30<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Donnerstag<\/p><ul class=\"worktime_week-day-time\"><li>07:00 &#8211; 12:00<\/li><li>13:00 &#8211; 18:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Freitag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Samstag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Sonntag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Montag<\/p><ul class=\"worktime_week-day-time\"><li>07:00 &#8211; 12:00<\/li><li>13:00 &#8211; 18:30<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Dienstag<\/p><ul class=\"worktime_week-day-time\"><li>07:00 &#8211; 12:00<\/li><li>13:00 &#8211; 18:30<\/li><\/ul><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"card-element query-location-card\"><div class=\"card-element-wrap query-location-card-wrap\"><div href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-st-gallen-zentrum-multergasse-2\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink\"><div class=\"card-element-wrap__image query-location-card-wrap__image thumbnail-slider\"><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-02.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-02.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-empfang-02-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-wartezimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-wartezimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-wartezimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-sprechzimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-sprechzimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-stgallen-sprechzimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><\/div><\/div><div class=\"card-element-wrap__content query-location-card-wrap__content\"><div class=\"card-element-wrap__inner query-location-card-wrap__inner\"><a href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-st-gallen-zentrum-multergasse-2\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink toggle\"><h5 class=\"card-element-wrap__content-title query-location-card-wrap__content-title semiBold\">Augen\u00e4rzte St. Gallen \u2013 Zentrum Multergasse<\/h5><\/a><div class=\"card-element-wrap__content-toggle\"><div class=\"query-location-card-wrap__content-info mt24 mb24\"><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 2.25C8.26821 2.25 5.25 5.41913 5.25 9.3375C5.25 13.0681 8.5747 18.0455 10.5574 20.6821C11.2929 21.6601 12.7071 21.6601 13.4426 20.6821C15.4253 18.0455 18.75 13.0681 18.75 9.3375C18.75 5.41913 15.7318 2.25 12 2.25ZM-nan -nanL12 11.8688C11.3606 11.8688 10.7475 11.6021 10.2954 11.1274C9.84327 10.6527 9.58929 10.0088 9.58929 9.3375C9.58929 8.66617 9.84327 8.02234 10.2954 7.54764C10.7475 7.07293 11.3606 6.80625 12 6.80625C12.6394 6.80625 13.2525 7.07293 13.7046 7.54764C14.1567 8.02234 14.4107 8.66617 14.4107 9.3375C14.4107 10.0088 14.1567 10.6527 13.7046 11.1274C13.2525 11.6021 12.6394 11.8688 12 11.8688L-nan -nanL-nan -nanZ\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-address\" target=\"_blank\" href=\"https:\/\/maps.app.goo.gl\/DdZZPWxrWPYoXFu49\">Multergasse 11, 9000 St. Gallen<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.12067 3.57394C5.31751 3.37739 5.55388 3.22492 5.81411 3.12663C6.07434 3.02834 6.35249 2.98648 6.63012 3.00382C6.90776 3.02116 7.17853 3.0973 7.42451 3.2272C7.67049 3.35711 7.88605 3.5378 8.05692 3.75732L10.0763 6.35157C10.4464 6.82744 10.5769 7.44732 10.4307 8.03232L9.81529 10.4961C9.78348 10.6237 9.78519 10.7573 9.82028 10.8841C9.85537 11.0108 9.92263 11.1264 10.0155 11.2194L12.7797 13.9836C12.8729 14.0767 12.9886 14.144 13.1155 14.1791C13.2425 14.2142 13.3764 14.2158 13.5042 14.1838L15.9668 13.5684C16.2555 13.4963 16.5568 13.4907 16.848 13.552C17.1392 13.6134 17.4126 13.7402 17.6475 13.9228L20.2418 15.9411C21.1744 16.6667 21.2599 18.0448 20.4252 18.8784L19.2619 20.0417C18.4294 20.8742 17.1852 21.2398 16.0253 20.8314C13.0566 19.7869 10.3612 18.0874 8.13904 15.8589C5.91074 13.6371 4.21123 10.9421 3.16654 7.97382C2.75929 6.81507 3.12492 5.56969 3.95742 4.73719L5.12067 3.57394Z\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-telephone\" href=\"tel:0712224444\">071 222 44 44<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><rect x=\"2.5\" y=\"4.75\" width=\"19.75\" height=\"14.5\" rx=\"1\" stroke=\"#0C338C\" stroke-width=\"2\"\/><path d=\"M2.25 4.5L10.8591 12.3056C11.6104 12.9867 12.7525 12.9979 13.5168 12.3315L22.5 4.5\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-mail\" href=\"mailto:augenaerzte-stgallen@hin.ch\">augenaerzte-stgallen@hin.ch<\/a><\/p><p class=\"mb0\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M16.4516 4.5C16.4516 5.02739 16.2375 5.13074 15.8564 5.50366C15.4753 5.87658 14.9583 6.08608 14.4194 6.08608H13.9113C13.507 6.08608 13.1194 6.24321 12.8335 6.5229C12.5477 6.80259 12.3871 7.18193 12.3871 7.57747V8.07461C12.3871 8.3383 12.28 8.59119 12.0895 8.77765C11.8989 8.96411 11.6405 9.06887 11.371 9.06887C11.1015 9.06887 10.843 9.17362 10.6525 9.36008C10.4619 9.54654 10.3548 9.79943 10.3548 10.0631V11.0574C10.3548 11.5848 10.569 12.0906 10.9501 12.4635C11.3312 12.8364 11.8481 13.0459 12.3871 13.0459H14.4194C14.9583 13.0459 15.4753 13.2554 15.8564 13.6283C16.2375 14.0013 16.4516 14.507 16.4516 15.0344C16.4516 15.5618 16.6657 16.0676 17.0468 16.4405C17.428 16.8135 17.9449 17.023 18.4839 17.023H19.5M11.371 21V18.5143C11.371 17.6911 10.6749 17.023 9.83357 17.023C9.00644 17.023 8.32258 16.3667 8.32258 15.5574C8.32258 15.2194 8.20268 14.8913 7.98421 14.6298L3.75 9.566\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><a class=\"query-location-card-wrap__content-website\" target=\"_blank\" href=\"https:\/\/www.augenaerzte-stgallen.ch\/\">augenaerzte-stgallen.ch<\/a><\/p><\/div><div class=\"worktime_wrap\"><div class=\"worktime_inner\"><div class=\"worktime_status\"><strong>Geschlossen<\/strong><p>\u00d6ffnet wieder um 08:00 (Mittwoch)<\/p><p>Schliesst um 12:00 (Mittwoch)<\/p><\/div><div class=\"worktime_week\"><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Mittwoch<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Donnerstag<\/p><ul class=\"worktime_week-day-time\"><li>07:30 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Freitag<\/p><ul class=\"worktime_week-day-time\"><li>07:30 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Samstag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Sonntag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Montag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Dienstag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"card-element query-location-card\"><div class=\"card-element-wrap query-location-card-wrap\"><div href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-zentrum-aarau\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink\"><div class=\"card-element-wrap__image query-location-card-wrap__image thumbnail-slider\"><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-02.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-02.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-eingang-02-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-wartezimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-wartezimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-wartezimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"410\" src=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-sprechzimmer-01.webp\" class=\"img__card-element\" alt=\"\" srcset=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-sprechzimmer-01.webp 730w, https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/cv-aarau-sprechzimmer-01-300x168.webp 300w\" sizes=\"auto, (max-width: 730px) 100vw, 730px\" \/><\/div><\/div><div class=\"card-element-wrap__content query-location-card-wrap__content\"><div class=\"card-element-wrap__inner query-location-card-wrap__inner\"><a href=\"https:\/\/www.clearvision-laser.ch\/de\/location\/augenaerzte-zentrum-aarau\/\" class=\"card-element-wrap__permalink query-location-card-wrap__permalink toggle\"><h5 class=\"card-element-wrap__content-title query-location-card-wrap__content-title semiBold\">Augen\u00e4rzte Zentrum Aarau<\/h5><\/a><div class=\"card-element-wrap__content-toggle\"><div class=\"query-location-card-wrap__content-info mt24 mb24\"><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 2.25C8.26821 2.25 5.25 5.41913 5.25 9.3375C5.25 13.0681 8.5747 18.0455 10.5574 20.6821C11.2929 21.6601 12.7071 21.6601 13.4426 20.6821C15.4253 18.0455 18.75 13.0681 18.75 9.3375C18.75 5.41913 15.7318 2.25 12 2.25ZM-nan -nanL12 11.8688C11.3606 11.8688 10.7475 11.6021 10.2954 11.1274C9.84327 10.6527 9.58929 10.0088 9.58929 9.3375C9.58929 8.66617 9.84327 8.02234 10.2954 7.54764C10.7475 7.07293 11.3606 6.80625 12 6.80625C12.6394 6.80625 13.2525 7.07293 13.7046 7.54764C14.1567 8.02234 14.4107 8.66617 14.4107 9.3375C14.4107 10.0088 14.1567 10.6527 13.7046 11.1274C13.2525 11.6021 12.6394 11.8688 12 11.8688L-nan -nanL-nan -nanZ\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-address\" target=\"_blank\" href=\"https:\/\/maps.app.goo.gl\/Rvx4mZpiwDXzWwFx8\">Gleis 0, Bahnhofplatz 3h, 5000 Aarau<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.12067 3.57394C5.31751 3.37739 5.55388 3.22492 5.81411 3.12663C6.07434 3.02834 6.35249 2.98648 6.63012 3.00382C6.90776 3.02116 7.17853 3.0973 7.42451 3.2272C7.67049 3.35711 7.88605 3.5378 8.05692 3.75732L10.0763 6.35157C10.4464 6.82744 10.5769 7.44732 10.4307 8.03232L9.81529 10.4961C9.78348 10.6237 9.78519 10.7573 9.82028 10.8841C9.85537 11.0108 9.92263 11.1264 10.0155 11.2194L12.7797 13.9836C12.8729 14.0767 12.9886 14.144 13.1155 14.1791C13.2425 14.2142 13.3764 14.2158 13.5042 14.1838L15.9668 13.5684C16.2555 13.4963 16.5568 13.4907 16.848 13.552C17.1392 13.6134 17.4126 13.7402 17.6475 13.9228L20.2418 15.9411C21.1744 16.6667 21.2599 18.0448 20.4252 18.8784L19.2619 20.0417C18.4294 20.8742 17.1852 21.2398 16.0253 20.8314C13.0566 19.7869 10.3612 18.0874 8.13904 15.8589C5.91074 13.6371 4.21123 10.9421 3.16654 7.97382C2.75929 6.81507 3.12492 5.56969 3.95742 4.73719L5.12067 3.57394Z\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-telephone\" href=\"tel:0628228822\">062 822 88 22<\/a><\/p><p class=\"mb16\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><rect x=\"2.5\" y=\"4.75\" width=\"19.75\" height=\"14.5\" rx=\"1\" stroke=\"#0C338C\" stroke-width=\"2\"\/><path d=\"M2.25 4.5L10.8591 12.3056C11.6104 12.9867 12.7525 12.9979 13.5168 12.3315L22.5 4.5\" stroke=\"#0C338C\" stroke-width=\"2\"\/><\/svg><a class=\"query-location-card-wrap__content-mail\" href=\"mailto:augenaerzte-aarau@hin.ch\">augenaerzte-aarau@hin.ch<\/a><\/p><p class=\"mb0\"><svg class=\"location-svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M16.4516 4.5C16.4516 5.02739 16.2375 5.13074 15.8564 5.50366C15.4753 5.87658 14.9583 6.08608 14.4194 6.08608H13.9113C13.507 6.08608 13.1194 6.24321 12.8335 6.5229C12.5477 6.80259 12.3871 7.18193 12.3871 7.57747V8.07461C12.3871 8.3383 12.28 8.59119 12.0895 8.77765C11.8989 8.96411 11.6405 9.06887 11.371 9.06887C11.1015 9.06887 10.843 9.17362 10.6525 9.36008C10.4619 9.54654 10.3548 9.79943 10.3548 10.0631V11.0574C10.3548 11.5848 10.569 12.0906 10.9501 12.4635C11.3312 12.8364 11.8481 13.0459 12.3871 13.0459H14.4194C14.9583 13.0459 15.4753 13.2554 15.8564 13.6283C16.2375 14.0013 16.4516 14.507 16.4516 15.0344C16.4516 15.5618 16.6657 16.0676 17.0468 16.4405C17.428 16.8135 17.9449 17.023 18.4839 17.023H19.5M11.371 21V18.5143C11.371 17.6911 10.6749 17.023 9.83357 17.023C9.00644 17.023 8.32258 16.3667 8.32258 15.5574C8.32258 15.2194 8.20268 14.8913 7.98421 14.6298L3.75 9.566\" stroke=\"#0C338C\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><a class=\"query-location-card-wrap__content-website\" target=\"_blank\" href=\"https:\/\/www.augenaerzte-aarau.ch\/\">augenaerzte-aarau.ch<\/a><\/p><\/div><div class=\"worktime_wrap\"><div class=\"worktime_inner\"><div class=\"worktime_status\"><strong>Geschlossen<\/strong><p>\u00d6ffnet wieder um 08:00 (Mittwoch)<\/p><p>Schliesst um 12:00 (Mittwoch)<\/p><\/div><div class=\"worktime_week\"><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Mittwoch<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Donnerstag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Freitag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Samstag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Sonntag<\/p><ul class=\"worktime_week-day-time\"><li>Geschlossen<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Montag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><div class=\"worktime_week-day mb8\"><p class=\"worktime_week-day-name\">Dienstag<\/p><ul class=\"worktime_week-day-time\"><li>08:00 &#8211; 12:00<\/li><li>13:00 &#8211; 17:00<\/li><\/ul><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>\n\n<div class=\"title-content-block container1364 mb120 mt120\"><div class=\"container\"><div class=\"content\"><div class=\"mt24 mb24 max830 preloaded__content fade\"><h2>Das sagen unsere Patient:innen \u00fcber uns<\/h2>\n<p>Die Augengesundheit unserer Patient:innen steht im Zentrum unseres t\u00e4glichen Handelns. Mit evidenzbasierter Augenmedizin, modernsten Behandlungsmethoden und pers\u00f6nlicher Betreuung helfen wir Menschen, ihre Sehkraft zu erhalten oder zur\u00fcckzugewinnen \u2013 und damit ihr Potenzial zu entfalten.<\/p>\n<\/div><div class=\"mt24 mb24 max830 preloaded__content fade\"><pre class=\"ti-widget\"><template id=\"trustindex-google-widget-html\"><div class=\" ti-widget  ti-goog ti-no-profile-img ti-show-rating-text ti-review-text-mode-readmore ti-text-align-left\" data-no-translation=\"true\" data-time-locale=\"vor %d %s|Heute|Tag|Tagen|Woche|Wochen|Monat|Monaten|Jahr|Jahren\" data-plugin-version=\"13.2.9\" data-layout-id=\"13\" data-layout-category=\"slider\" data-set-id=\"drop-shadow\" data-pid=\"\" data-language=\"de\" data-close-locale=\"Schlie\u00dfen\" data-review-target-width=\"275\" data-css-version=\"2\" data-reply-by-locale=\"Antwort des Eigent\u00fcmers\" data-only-rating-locale=\"Dieser Nutzer hat lediglich eine Bewertung abgegeben.\" data-pager-autoplay-timeout=\"6\"> <div class=\"ti-widget-container ti-col-4\"> <div class=\"ti-footer source-Google\"> <div class=\"ti-row\"> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh6.googleusercontent.com\/-6yMqUu0juus\/AAAAAAAAAAI\/AAAAAAAAAAA\/5j7hSxAMKZI\/s160-p-k-no-ns-nd\/photo.jpg\" alt=\"Augenlasern ClearVision - Wallisellen\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Augenlasern ClearVision - Wallisellen<\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/h.svg\" alt=\"Google star 5.0.6\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><\/span> <div class=\"ti-rating-text\"> <span class=\"nowrap\"><strong>105 Google Bewertungen<\/strong><\/span> <\/div>  <\/div> <\/div> <\/div> <div class=\"ti-reviews-container\"> <div class=\"ti-controls\"> <div class=\"ti-next\" aria-label=\"N\u00e4chste Bewertung\" role=\"button\" tabindex=\"0\"><\/div> <div class=\"ti-prev\" aria-label=\"Vorherige Bewertung\" role=\"button\" tabindex=\"0\"><\/div> <\/div> <div class=\"ti-reviews-container-wrapper\">  <div data-empty=\"0\" data-time=\"1768521600\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Gepostet auf Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div>  <div class=\"ti-profile-details\"> <div class=\"ti-name\"> B  <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex \u00fcberpr\u00fcft, ob die Originalquelle der Bewertung Google ist.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ich habe vor 5 Monaten die Augen gelasert mit relativ kleiner Dioptrie (-2.75 und -2). Zusammen mit der Optometristin Frau K\u00f6chli und dem Chirurgen Herr Duwendag habe ich mich f\u00fcr die SMILE Methode entschieden. Diese war f\u00fcr mich wirklich sozusagen schmerzfrei, einzig die ersten paar Stunden nach der Operation brennt es wie wenn man Sand im Auge h\u00e4tte, da helfen die Tropfen die man erh\u00e4lt. Die Heilung erfolgte sehr rasch, nach wenigen Tagen schon verschwand das Fremdk\u00f6rpergef\u00fchl und nach knapp 4 Wochen war alles wieder \"beim Alten\". Lichtempfindlichkeit hatte ich nur in den ersten paar Tagen.\nIch f\u00fchlte mich \u00fcber die gesamte Behandlung vom Erstkontakt bis zur Abschlussuntersuchung sehr gut beraten. Ich war immer bei derselben Optometristin, die meine Fragen besntworten konnte. W\u00e4hrend der Operation f\u00fchlte ich mich sehr gut aufgehoben und der Chirurg hat mich in meiner Nervosit\u00e4t auch beruhigen k\u00f6nnen. Die Op verlief sehr schnell und top.\nF\u00fcr mich war es die beste Entscheidung, nun bin ich Linsenfrei und sehe auf beiden Augen \u00fcber 100%.\nVielen herzlichen Dank!<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ausblenden\" data-open-text=\"Weiterlesen\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1739145600\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Gepostet auf Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div>  <div class=\"ti-profile-details\"> <div class=\"ti-name\"> P R <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex \u00fcberpr\u00fcft, ob die Originalquelle der Bewertung Google ist.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ich hatte mich Ende 2024 entschieden, meine Augen zu lasern (ca. -4.25 \/ -4.5 Dioptrien). Der Voruntersuch kann an vielen Standorten in der Schweiz gemacht werden. Zum Hauptuntersuch ist man in Wallisellen und wird gut betreut \/ behandelt. Das Personal ist freundlich und geht auf die Fragen ein. Am besten die Fragen aufschreiben und sie dann am Untersuch \/ OP Tag \/ Nachkontrolle stellen, von alleine kommen die Antworten nicht. Auch merkt man, dass die Augen\u00e4rzte \/ Chirurgen nicht viel Zeit haben, da es enorm viele Patienten hat. Dies kann ich gut verstehen. Man bekommt aber immer eine Antwort auf seine Fragen.\nIm Januar 2025 hatte ich dann meine OP (Femto-LASIK), welche gut verlaufen ist. Auf Anfrage eines pflanzlichen Beruhigungsmittels habe ich etwas bekommen. Ich war sehr nerv\u00f6s bei der Anreise. Das Personal sowie Herr Dr. Duwendag haben das aber sehr gut gemacht. Ich f\u00fchlte mich in guten H\u00e4nden. Jeder OP-Schritt wurde erkl\u00e4rt und informiert. Die OP war schmerzfrei und hat nicht lange gedauert. Ich bin fasziniert von der heutigen Technik.\nDer Heilungsverlauf ist bei der Femto-LASIK sicher schneller und schmerzfreier als bei der Trans-PRK.  Ich hatte 100% Sehkraft am n\u00e4chsten Tag. Das Fremdk\u00f6rpergef\u00fchl blieb bei mir auf einem Auge \u00fcber eine Woche, was st\u00f6rend war, jedoch zum Heilungsprozess dazugeh\u00f6ren kann. Nach mittlerweile 3 Wochen ist alles bestens. Leider wird von den Lacrycon Augentropfen zu wenig mitgegeben, da w\u00e4ren zwei Packungen w\u00fcnschenswert anstelle von einer.\nAlles in Allem bin ich sehr zufrieden, ich kann ClearVision und deren Mitarbeiter*innen, \u00c4rzten und Chirurgen des Augen\u00e4rztezentrums sehr empfehlen. Das Resultat ist den Eingriff und den Preis wert.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ausblenden\" data-open-text=\"Weiterlesen\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1731024000\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Gepostet auf Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div>  <div class=\"ti-profile-details\"> <div class=\"ti-name\"> L R <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex \u00fcberpr\u00fcft, ob die Originalquelle der Bewertung Google ist.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ich danke eu f\u00fcr alles und chan eu nume allne wiiter empfehle.bin un\u00e4ntlich dankbar, dass ich bi eu mini auge lasere la han.\ntop empfang\ntop ufkl\u00e4rig\ntop behandlig\ntop leistig\nWunder sch\u00f6ni praxis\nmer f\u00fchlt sich mega wohl was wott mee no meh\u2026<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ausblenden\" data-open-text=\"Weiterlesen\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1715731200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Gepostet auf Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div>  <div class=\"ti-profile-details\"> <div class=\"ti-name\"> N B <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex \u00fcberpr\u00fcft, ob die Originalquelle der Bewertung Google ist.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Sehr professionell, freundlich, zuverl\u00e4ssig.\nAlles perfekt gelaufen!\nHerzlichen Dank! Sehr sehr zufrieden!<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ausblenden\" data-open-text=\"Weiterlesen\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1706572800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Gepostet auf Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div>  <div class=\"ti-profile-details\"> <div class=\"ti-name\"> L W <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex \u00fcberpr\u00fcft, ob die Originalquelle der Bewertung Google ist.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ich habe vor einigen Monaten bei ClearVision meine Augen mittels Trans PRK lasern lassen und bin extrem zufrieden mit dem Ergebnis. Auch die Kontrollterminen nach der OP wurden sehr gewissenhaft durchgef\u00fchrt, was mir ein gutes Gef\u00fchl gab, da ich doch ziemlichen Respekt vor dem Eingriff hatte.\nEine einzige Kritik: Das Vorgespr\u00e4ch am Tag der OP wird im Wartezimmer vor allen anderen wartenden Patienten durchgef\u00fchrt. Das kann etwas unangenehm sein, wenn man z.B. Bedenken oder Fragen hat, welche man ungerne in einem Raum voll anderer Leute \u00e4ussern m\u00f6chte.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ausblenden\" data-open-text=\"Weiterlesen\"><\/span> <\/div> <\/div>  <\/div> <div class=\"ti-controls-line\"> <div class=\"dot\"><\/div> <\/div>   <div class=\"ti-verified-by ti-verified-by-row\" data-style=\"2\"> <div class=\"ti-inner\"> Verifiziert von: Trustindex <span class=\"ti-info-icon\"><\/span> <div class=\"ti-disclaimer\">Das verifizierte Trustindex-Abzeichen ist das universelle Symbol des Vertrauens. Nur die besten Unternehmen k\u00f6nnen das verifizierte Abzeichen erhalten, die eine Bewertungsnote \u00fcber 4.5 haben, basierend auf Kundenbewertungen der letzten 12 Monate. <a href=\"https:\/\/www.trustindex.io\/?a=sys&amp;c=wp-verified-badge&amp;url=\/the-trustindex-verified-badge\/\" target=\"_blank\">Mehr erfahren<\/a><\/div> <\/div> <\/div>  <\/div> <\/div> <\/div> <\/template><\/pre><div data-src=\"https:\/\/cdn.trustindex.io\/loader.js?wp-widget\" data-template-id=\"trustindex-google-widget-html\" data-css-url=\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/trustindex-google-widget.css?1780580731\"><\/div>\n<\/div><\/div><\/div><\/div>\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Unser Expertenteam &#8211; Augenlaser Spezialisten Dr. med. Dirk Duwendag Facharzt f\u00fcr Augenheilkunde und Augenchirurgie FMH \u2013 FEBO Dr. med. Simone Kolb Fach\u00e4rztin f\u00fcr Augenheilkunde FMH \u2013 FEBO Dr. med. Darius Madjdpour Facharzt f\u00fcr Augenheilkunde FMH \u2013 FEBO \u2013 FICO Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung <a href=\"https:\/\/www.clearvision-laser.ch\/de\/\" class=\"more-link\">&#8230;<\/a><\/p>\n","protected":false},"author":14,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-225","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Augenlasern Schweiz - ClearVision<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.clearvision-laser.ch\/de\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Augenlasern Schweiz - ClearVision\" \/>\n<meta property=\"og:description\" content=\"Unser Expertenteam &#8211; Augenlaser Spezialisten Dr. med. Dirk Duwendag Facharzt f\u00fcr Augenheilkunde und Augenchirurgie FMH \u2013 FEBO Dr. med. Simone Kolb Fach\u00e4rztin f\u00fcr Augenheilkunde FMH \u2013 FEBO Dr. med. Darius Madjdpour Facharzt f\u00fcr Augenheilkunde FMH \u2013 FEBO \u2013 FICO Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.clearvision-laser.ch\/de\/\" \/>\n<meta property=\"og:site_name\" content=\"ClearVision Augenlasern\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-04T14:36:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/\",\"url\":\"https:\/\/www.clearvision-laser.ch\/de\/\",\"name\":\"Augenlasern Schweiz - ClearVision\",\"isPartOf\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg\",\"datePublished\":\"2022-07-29T12:39:07+00:00\",\"dateModified\":\"2026-06-04T14:36:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clearvision-laser.ch\/de\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage\",\"url\":\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg\",\"contentUrl\":\"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clearvision-laser.ch\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Homepage\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#website\",\"url\":\"https:\/\/www.clearvision-laser.ch\/de\/\",\"name\":\"ClearVision Augenlasern\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.clearvision-laser.ch\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#organization\",\"name\":\"ClearVision\",\"url\":\"https:\/\/www.clearvision-laser.ch\/de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/clearvision-logo.svg\",\"contentUrl\":\"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/clearvision-logo.svg\",\"caption\":\"ClearVision\"},\"image\":{\"@id\":\"https:\/\/www.clearvision-laser.ch\/de\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Augenlasern Schweiz - ClearVision","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:\/\/www.clearvision-laser.ch\/de\/","og_locale":"de_DE","og_type":"article","og_title":"Augenlasern Schweiz - ClearVision","og_description":"Unser Expertenteam &#8211; Augenlaser Spezialisten Dr. med. Dirk Duwendag Facharzt f\u00fcr Augenheilkunde und Augenchirurgie FMH \u2013 FEBO Dr. med. Simone Kolb Fach\u00e4rztin f\u00fcr Augenheilkunde FMH \u2013 FEBO Dr. med. Darius Madjdpour Facharzt f\u00fcr Augenheilkunde FMH \u2013 FEBO \u2013 FICO Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung ...","og_url":"https:\/\/www.clearvision-laser.ch\/de\/","og_site_name":"ClearVision Augenlasern","article_modified_time":"2026-06-04T14:36:30+00:00","og_image":[{"url":"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.clearvision-laser.ch\/de\/","url":"https:\/\/www.clearvision-laser.ch\/de\/","name":"Augenlasern Schweiz - ClearVision","isPartOf":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage"},"image":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg","datePublished":"2022-07-29T12:39:07+00:00","dateModified":"2026-06-04T14:36:30+00:00","breadcrumb":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clearvision-laser.ch\/de\/"]}]},{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/www.clearvision-laser.ch\/de\/#primaryimage","url":"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg","contentUrl":"https:\/\/www.gutblick.ch\/app\/uploads\/2022\/09\/Dirk_Duwendag_730px.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.clearvision-laser.ch\/de\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clearvision-laser.ch\/de\/"},{"@type":"ListItem","position":2,"name":"Homepage"}]},{"@type":"WebSite","@id":"https:\/\/www.clearvision-laser.ch\/de\/#website","url":"https:\/\/www.clearvision-laser.ch\/de\/","name":"ClearVision Augenlasern","description":"","publisher":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.clearvision-laser.ch\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de-DE"},{"@type":"Organization","@id":"https:\/\/www.clearvision-laser.ch\/de\/#organization","name":"ClearVision","url":"https:\/\/www.clearvision-laser.ch\/de\/","logo":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/www.clearvision-laser.ch\/de\/#\/schema\/logo\/image\/","url":"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/clearvision-logo.svg","contentUrl":"https:\/\/www.clearvision-laser.ch\/app\/uploads\/2025\/11\/clearvision-logo.svg","caption":"ClearVision"},"image":{"@id":"https:\/\/www.clearvision-laser.ch\/de\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages\/225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/comments?post=225"}],"version-history":[{"count":275,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages\/225\/revisions"}],"predecessor-version":[{"id":13164,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages\/225\/revisions\/13164"}],"wp:attachment":[{"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/media?parent=225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}