{"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-01-13T13:19:10","modified_gmt":"2026-01-13T12:19:10","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-block container810 mb120 mt120 block-disturber-style-num-605684543 \"><div class=\"container\"><div class=\"content\"><div class=\"disturber-block-wrap\"><p class=\"disturber-block__title h3\">Lernen Sie unser Team kennen<\/p><p class=\"disturber-block__title semiBold h3\"><\/p><div class=\"button-wrap mt48\"><a class=\"button transparent icon arrow-dark\" target=\"\" href=\"https:\/\/www.clearvision-laser.ch\/de\/team\/\">Team<\/a><\/div><\/div><\/div><\/div><\/div>\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\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\">Mehr zum Behandlungsablauf<\/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=\"testimonial-block mb120 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<div class=\"quote-block container1050 mb120 mt120 block-quote-special-style-num-1806857223 \"><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>Ge\u00f6ffnet<\/strong><p>Schliesst um 12:00 (Freitag)<\/p><p>\u00d6ffnet wieder um 13:00 (Freitag)<\/p><\/div><div class=\"worktime_week\"><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 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><\/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>Ge\u00f6ffnet<\/strong><p>Schliesst um 12:00 (Freitag)<\/p><p>\u00d6ffnet wieder um 13:00 (Freitag)<\/p><\/div><div class=\"worktime_week\"><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 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><\/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>Ge\u00f6ffnet<\/strong><p>Schliesst um 12:00 (Freitag)<\/p><p>\u00d6ffnet wieder um 13:00 (Freitag)<\/p><\/div><div class=\"worktime_week\"><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 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><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/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>Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung 60 Min. Kostenlos 2 Individuelle OP-Besprechung 60 Min. Inkludiert 3 Augenlasern und Nachkontrollen 60 Min. ab CHF 1&#8217;480 4 Freiwillige Jahreskontrolle 30 Min. CHF 150 Mehr zum Behandlungsablauf<\/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=\"Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung 60 Min. Kostenlos 2 Individuelle OP-Besprechung 60 Min. Inkludiert 3 Augenlasern und Nachkontrollen 60 Min. ab CHF 1&#8217;480 4 Freiwillige Jahreskontrolle 30 Min. CHF 150 Mehr zum Behandlungsablauf\" \/>\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-01-13T12:19:10+00:00\" \/>\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=\"1 Minute\" \/>\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\"},\"datePublished\":\"2022-07-29T12:39:07+00:00\",\"dateModified\":\"2026-01-13T12:19:10+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\":\"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":"Behandlungsablauf Timeline &#8211; Light Version mit Auto-Play In vier Schritten zu neuer Sehkraft 1 Kostenlose Erstuntersuchung 60 Min. Kostenlos 2 Individuelle OP-Besprechung 60 Min. Inkludiert 3 Augenlasern und Nachkontrollen 60 Min. ab CHF 1&#8217;480 4 Freiwillige Jahreskontrolle 30 Min. CHF 150 Mehr zum Behandlungsablauf","og_url":"https:\/\/www.clearvision-laser.ch\/de\/","og_site_name":"ClearVision Augenlasern","article_modified_time":"2026-01-13T12:19:10+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 Minute"},"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"},"datePublished":"2022-07-29T12:39:07+00:00","dateModified":"2026-01-13T12:19:10+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":"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":267,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages\/225\/revisions"}],"predecessor-version":[{"id":12969,"href":"https:\/\/www.clearvision-laser.ch\/de\/wp-json\/wp\/v2\/pages\/225\/revisions\/12969"}],"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}]}}