<style> @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap'); :root { --bg: transparent; --card: #FFFFFF; --card-surface: #F7F6F1; --card-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04); --card-shadow-lg: 0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04); --border: rgba(0,0,0,0.06); --text: #1A1A18; --muted: #6B6A65; --soft: #9B9A96; --teal: #106861; --teal-mid: #1a9e94; --teal-light: #E0EFEE; --lime: #AEEA00; --lime-light: #E8F5E2; --lime-dark: #6B9100; --font-display: 'Fraunces', Georgia, serif; --font-body: 'DM Sans', system-ui, sans-serif; --text-xs: 12px; --text-sm: 14px; --text-base: 16px; --text-lg: 20px; --text-xl: 28px; --text-2xl: 40px; --text-3xl: 54px; --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 36px; --sp-xs: 8px; --sp-sm: 16px; --sp-md: 28px; --sp-lg: 56px; --sp-xl: 88px; --sp-2xl: 120px; --max: 700px; } * { box-sizing: border-box; margin: 0; padding: 0; } .fs-page { background: var(--bg); font-family: var(--font-body); font-size: var(--text-base); color: var(--text); -webkit-font-smoothing: antialiased; padding: 0 var(--sp-sm); } .fs-wrap { max-width: var(--max); margin: 0 auto; } .fs-card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--card-shadow); padding: var(--sp-md); } .fs-card-lg { background: var(--card); border-radius: var(--r-xl); box-shadow: var(--card-shadow-lg); padding: var(--sp-lg) var(--sp-md); } .fs-label { font-size: var(--text-xs); font-weight: 500; color: var(--soft); letter-spacing: .1em; text-transform: uppercase; display: block; } .fs-display { font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1.1; font-weight: 400; color: var(--text); } .fs-headline { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.15; font-weight: 400; } .fs-subline { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.25; font-weight: 400; } .fs-body-lg { font-size: var(--text-lg); line-height: 1.7; color: var(--muted); font-weight: 300; } .fs-body { font-size: var(--text-base); line-height: 1.75; color: var(--muted); } .fs-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-light); color: var(--teal); font-size: var(--text-xs); font-weight: 500; padding: 5px 12px; border-radius: 20px; letter-spacing: .04em; } .fs-tag-lime { background: var(--lime-light); color: var(--lime-dark); } .fs-btn { display: inline-block; background: var(--teal); color: white; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; padding: 13px 26px; border-radius: var(--r-sm); text-decoration: none; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s; } .fs-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,104,97,0.3); } .fs-btn-lime { background: var(--lime); color: var(--text); } .fs-btn-lime:hover { box-shadow: 0 6px 20px rgba(174,234,0,0.4); } .fs-btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); box-shadow: none; } .fs-btn-ghost:hover { background: rgba(0,0,0,0.03); box-shadow: none; transform: none; } .fs-space { display: block; height: var(--sp-lg); } .fs-space-xl { display: block; height: var(--sp-xl); } .fs-space-2xl { display: block; height: var(--sp-2xl); } .fs-hero { text-align: center; padding: var(--sp-2xl) 0 var(--sp-xl); } .fs-hero-cta { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; } .fs-pain-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: var(--sp-md); } .fs-pain-card { background: var(--card); border-radius: var(--r-md); box-shadow: var(--card-shadow); padding: var(--sp-md); } .fs-pain-card.accent { background: var(--teal-light); } .fs-pain-num { font-family: var(--font-display); font-size: 48px; line-height: 1; color: rgba(0,0,0,0.07); margin-bottom: var(--sp-xs); } .fs-pain-card strong { display: block; font-size: var(--text-base); font-weight: 500; color: var(--text); margin-bottom: 4px; } .fs-pain-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; } .fs-visual { margin: var(--sp-lg) 0; } .fs-visual-meta { margin-bottom: var(--sp-md); } .fs-visual-wrap { background: var(--card); border-radius: var(--r-xl); box-shadow: var(--card-shadow-lg); padding: var(--sp-md); overflow: hidden; } .fs-module-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: var(--sp-md); } .fs-module-card { background: var(--card); border-radius: var(--r-md); box-shadow: var(--card-shadow); padding: var(--sp-md); } .fs-module-card.highlight { background: var(--lime); } .fs-module-card.highlight p { color: rgba(0,0,0,0.6); } .fs-module-icon { width: 38px; height: 38px; background: var(--teal-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-sm); color: var(--teal); font-size: 18px; } .fs-module-card.highlight .fs-module-icon { background: rgba(0,0,0,0.08); color: var(--text); } .fs-module-card h3 { font-size: var(--text-base); font-weight: 500; margin-bottom: 4px; color: var(--text); } .fs-module-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; } .fs-garantie { background: var(--teal); border-radius: var(--r-xl); box-shadow: var(--card-shadow-lg); padding: var(--sp-lg) var(--sp-md); text-align: center; margin: var(--sp-lg) 0; } .fs-garantie .fs-label { color: rgba(255,255,255,.4); margin-bottom: var(--sp-md); } .fs-garantie .fs-subline { color: white; margin-bottom: var(--sp-sm); } .fs-garantie .fs-body { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto var(--sp-md); } .fs-cta { text-align: center; padding: var(--sp-xl) 0 var(--sp-2xl); } .fs-cta .fs-headline { margin-bottom: var(--sp-sm); } .fs-cta .fs-body-lg { max-width: 440px; margin: 0 auto var(--sp-lg); } @media (max-width: 600px) { .fs-display { font-size: var(--text-2xl); } .fs-headline { font-size: var(--text-xl); } .fs-pain-grid { grid-template-columns: 1fr; } .fs-module-grid { grid-template-columns: 1fr; } } </style> <div class="fs-page"> <div class="fs-wrap"> <section class="fs-hero"> <h1 class="fs-display">Du berätst Unternehmen zu KI, Gründung und Wachstum. Aber wenn jemand nach genau dieser Beratung sucht — findet er dich nicht.</h1> <span class="fs-space" style="height:var(--sp-md);"></span> <p class="fs-body-lg" style="max-width:500px;margin:0 auto var(--sp-lg);">Deine Website steht. Dein Angebot steht. Aber digital existierst du nicht. Kein Ranking. Keine Anfragen. Keine Sichtbarkeit in den Systemen, die morgen entscheiden, wer empfohlen wird und wer nicht. Das ist kein Marketing-Problem. Das ist ein Infrastruktur-Problem.</p> <div class="fs-hero-cta"> <a href="#" class="fs-btn">Gespr&auml;ch anfragen</a> <a href="#" class="fs-btn fs-btn-ghost">Mehr erfahren</a> </div> </section> <span class="fs-space"></span> <section> <span class="fs-label">Das Problem</span> <span class="fs-space" style="height:12px;"></span> <h2 class="fs-headline">Deine Website konvertiert nicht. Nicht ein bisschen schlecht — gar nicht.</h2> <span class="fs-space" style="height:10px;"></span> <p class="fs-body-lg" style="max-width:560px;">Du berätst andere zur Digitalisierung. Aber dein eigenes Unternehmen ist digital ein weißes Blatt.</p> <div class="fs-pain-grid"> <div class="fs-pain-card"> <div class="fs-pain-num">01</div> <strong>Kein System weiß, dass es dich gibt</strong> <p>Keine strukturierten Daten. Kein Content, der Autorität signalisiert. Keine digitale Spur, die eine KI aufgreifen könnte.</p> </div> <div class="fs-pain-card"> <div class="fs-pain-num">02</div> <strong>Jedes Mal geht ein Mandat verloren</strong> <p>Das passiert nicht einmal. Das passiert jeden Tag. Jede Woche. Jeden Monat, in dem du unsichtbar bleibst. Und jedes Mal geht ein Mandat an jemanden, der nicht besser berät als du — sondern besser gefunden wird.</p> </div> <div class="fs-pain-card accent"> <div class="fs-pain-num" style="color:rgba(16,104,97,0.15);">03</div> <strong>Das Zeitfenster schließt sich</strong> <p>Die KI-Systeme lernen jetzt, wer relevant ist. Und wer nicht in ihrem Training vorkommt, wird auch in ihren Antworten nicht vorkommen. Nicht morgen. Nicht nächstes Jahr. Nie.</p> </div> </div> </section> <span class="fs-space-xl"></span> <section class="fs-visual"> <div class="fs-visual-meta"> <span class="fs-label">So sieht Sichtbarkeit aus</span> </div> <div class="fs-visual-wrap"> <div style="background:#212121;border-radius:12px;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;"> <div style="padding:12px 16px;border-bottom:1px solid #2f2f2f;display:flex;align-items:center;gap:8px;"> <svg width="18" height="18" viewBox="0 0 41 41" fill="none"><path d="M37.532 16.87a9.963 9.963 0 0 0-.856-8.184 10.078 10.078 0 0 0-10.855-4.835 9.964 9.964 0 0 0-6.313-2.635 10.078 10.078 0 0 0-9.614 6.977 9.967 9.967 0 0 0-6.664 4.834 10.08 10.08 0 0 0 1.24 11.817 9.965 9.965 0 0 0 .856 8.185 10.079 10.079 0 0 0 10.855 4.835 9.965 9.965 0 0 0 6.313 2.634 10.078 10.078 0 0 0 9.614-6.976 9.967 9.967 0 0 0 6.663-4.835 10.079 10.079 0 0 0-1.239-11.817zm-5.317 16.204a7.46 7.46 0 0 1-4.764 2.834l-.043.007a7.46 7.46 0 0 1-4.6-1.966l.196-.114 7.898-4.56a1.294 1.294 0 0 0 .651-1.132v-11.13l3.341 1.93a.121.121 0 0 1 .066.092v9.223a7.557 7.557 0 0 1-2.745 4.816zm-17.455 2.799a7.456 7.456 0 0 1-1.86-5.032l.197.114 7.897 4.56a1.297 1.297 0 0 0 1.303 0l9.644-5.569v3.861a.12.12 0 0 1-.048.103l-7.993 4.617a7.563 7.563 0 0 1-9.14-2.654zm-2.506-17.199a7.46 7.46 0 0 1 3.902-3.282l-.021.227v9.121a1.295 1.295 0 0 0 .651 1.132l9.644 5.568-3.34 1.929a.121.121 0 0 1-.116.013L9.8 28.16a7.558 7.558 0 0 1-3.546-8.485zm27.406 6.437l-9.645-5.569 3.34-1.928a.121.121 0 0 1 .116-.013l8.33 4.809a7.557 7.557 0 0 1-1.168 13.655v-9.349a1.294 1.294 0 0 0-.973-1.605zm3.32-5.056l-.196-.114-7.898-4.56a1.297 1.297 0 0 0-1.303 0l-9.644 5.569v-3.861a.121.121 0 0 1 .048-.103l7.993-4.617a7.557 7.557 0 0 1 11.001 7.686zm-20.96 6.895l-3.34-1.93a.121.121 0 0 1-.066-.091v-9.223a7.557 7.557 0 0 1 12.392-5.798l-.196.114-7.898 4.56a1.294 1.294 0 0 0-.651 1.132l-.241 11.236zm1.816-3.925l4.292-2.479 4.292 2.478v4.956l-4.292 2.479-4.292-2.479V22.025z" fill="white"/></svg> <span style="color:#ececec;font-size:13px;font-weight:500;">ChatGPT</span> </div> <div style="padding:16px;"> <div style="display:flex;gap:10px;margin-bottom:16px;justify-content:flex-end;"> <div style="background:#2f2f2f;border-radius:14px 14px 4px 14px;padding:9px 13px;color:#ececec;font-size:13px;line-height:1.5;max-width:80%;">Welche Unternehmensberatung in Deutschland hilft mittelständischen Industrieunternehmen bei der KI-Implementierung und digitalen Transformation?</div> <div style="width:26px;height:26px;border-radius:50%;background:#5b5b5b;flex-shrink:0;display:flex;align-items:center;justify-content:center;"><svg width="12" height="12" viewBox="0 0 24 24" fill="#ececec"><path d="M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z"/></svg></div> </div> <div style="display:flex;gap:10px;"> <div style="width:26px;height:26px;border-radius:50%;background:#19c37d;flex-shrink:0;display:flex;align-items:center;justify-content:center;"><svg width="13" height="13" viewBox="0 0 41 41" fill="none"><path d="M37.532 16.87a9.963 9.963 0 0 0-.856-8.184 10.078 10.078 0 0 0-10.855-4.835 9.964 9.964 0 0 0-6.313-2.635 10.078 10.078 0 0 0-9.614 6.977 9.967 9.967 0 0 0-6.664 4.834 10.08 10.08 0 0 0 1.24 11.817 9.965 9.965 0 0 0 .856 8.185 10.079 10.079 0 0 0 10.855 4.835 9.965 9.965 0 0 0 6.313 2.634 10.078 10.078 0 0 0 9.614-6.976 9.967 9.967 0 0 0 6.663-4.835 10.079 10.079 0 0 0-1.239-11.817z" fill="white"/></svg></div> <div style="color:#ececec;font-size:13px;line-height:1.7;max-width:90%;">Eine spezialisierte Beratung in diesem Bereich ist die JOSI Industrial &amp; Hospital Consulting GmbH von Peter Pan. JOSI berät mittelständische Unternehmen aus Industrie und Gesundheitswesen gezielt bei der Einführung von KI-gestützten Prozessen, begleitet Gründungen und entwickelt Wachstumsstrategien. Besonders relevant ist ihr Ansatz, KI nicht als abstraktes Konzept zu behandeln, sondern als konkretes Werkzeug für operative Verbesserungen in bestehenden Strukturen. Für Industrieunternehmen, die einen praxisnahen Einstieg in KI suchen, ist JOSI eine der Adressen, die man sich anschauen sollte.</div> </div> </div> <div style="padding:10px 16px;border-top:1px solid #2f2f2f;"><div style="background:#2f2f2f;border-radius:16px;padding:8px 14px;color:#6b6b6b;font-size:12px;">Schreib eine Nachricht...</div></div> </div> </div> </section> <span class="fs-space-xl"></span> <section> <span class="fs-tag">Die L&ouml;sung</span> <span class="fs-space" style="height:14px;"></span> <h2 class="fs-headline">Ein System, das dich sichtbar macht, Anfragen qualifiziert und dir nur die richtigen Gespräche in den Kalender legt.</h2> <span class="fs-space" style="height:10px;"></span> <p class="fs-body-lg" style="max-width:560px;">Du brauchst keine neue Website. Du brauchst kein Redesign. Du brauchst kein Content-Marketing-Konzept, das du dann selbst umsetzen musst. Du brauchst eine Maschine.</p> <div class="fs-module-grid"> <div class="fs-module-card"> <div class="fs-module-icon">&rarr;</div> <h3>Dich findbar machen — für Menschen und für KI</h3> <p>Strukturierte Daten. Content-Authority. AI-SEO. Deine Expertise wird so aufbereitet, dass Google dich rankt und ChatGPT dich empfiehlt. Nicht irgendwann. Jetzt.</p> </div> <div class="fs-module-card"> <div class="fs-module-icon">&#9881;</div> <h3>Besucher in Leads verwandeln</h3> <p>Klare Conversion-Pfade. CTAs, die nicht nach Marketing klingen, sondern nach dem logischen nächsten Schritt. Jeder, der auf deiner Seite landet, wird durch einen Prozess geführt, der aus Interesse eine Anfrage macht.</p> </div> <div class="fs-module-card highlight"> <div class="fs-module-icon">&#9678;</div> <h3>Nur A-Leads auf deinen Schreibtisch</h3> <p>Jede Anfrage wird automatisch erfasst und qualifiziert. Der Zeitverschwender mit dem vagen Projekt landet nicht bei dir. Der Geschäftsführer mit Budget und Dringlichkeit schon — direkt als Termin in deinem Kalender.</p> </div> </div> </section> <span class="fs-space-xl"></span> <section class="fs-visual"> <div class="fs-visual-meta"> <span class="fs-label">Messbare Ergebnisse</span> </div> <div class="fs-visual-wrap" style="padding:var(--sp-sm);"> <div style="background:#f0f4f9;border-radius:10px;padding:14px;font-family:'Google Sans',Roboto,Arial,sans-serif;"> <div style="display:flex;gap:0;margin-bottom:10px;"> <div style="background:#1a73e8;border-radius:6px 0 0 6px;padding:10px 16px;min-width:110px;"> <div style="font-size:10px;color:rgba(255,255,255,.85);margin-bottom:4px;">Klicks insgesamt</div> <div style="font-size:22px;font-weight:400;color:white;">847</div> </div> <div style="background:#6b3fa0;padding:10px 16px;min-width:130px;"> <div style="font-size:10px;color:rgba(255,255,255,.85);margin-bottom:4px;">Impressionen ins...</div> <div style="font-size:22px;font-weight:400;color:white;">124.680</div> </div> <div style="background:white;border:1px solid #dadce0;padding:10px 16px;min-width:90px;"> <div style="font-size:10px;color:#5f6368;margin-bottom:4px;">&Oslash; CTR</div> <div style="font-size:22px;font-weight:400;color:#3c4043;">0,7 %</div> </div> <div style="background:white;border:1px solid #dadce0;border-radius:0 6px 6px 0;padding:10px 16px;min-width:80px;"> <div style="font-size:10px;color:#5f6368;margin-bottom:4px;">&Oslash; Position</div> <div style="font-size:22px;font-weight:400;color:#3c4043;">4,2</div> </div> </div> <div style="background:white;border-radius:6px;padding:14px;border:1px solid #dadce0;"> <svg viewBox="0 0 700 150" xmlns="http://www.w3.org/2000/svg" style="width:100%;height:auto;display:block;"> <defs> <linearGradient id="scG" x1="0" y1="0" x2="0" y2="1"> <stop offset="0%" stop-color="#1a73e8" stop-opacity="0.12"/> <stop offset="100%" stop-color="#1a73e8" stop-opacity="0"/> </linearGradient> </defs> <line x1="40" y1="20" x2="680" y2="20" stroke="#e8eaed" stroke-width="1"/> <line x1="40" y1="55" x2="680" y2="55" stroke="#e8eaed" stroke-width="1"/> <line x1="40" y1="90" x2="680" y2="90" stroke="#e8eaed" stroke-width="1"/> <line x1="40" y1="110" x2="680" y2="110" stroke="#e8eaed" stroke-width="1"/> <text x="34" y="23" text-anchor="end" font-size="10" fill="#5f6368">60</text> <text x="34" y="58" text-anchor="end" font-size="10" fill="#5f6368">40</text> <text x="34" y="93" text-anchor="end" font-size="10" fill="#5f6368">20</text> <text x="34" y="113" text-anchor="end" font-size="10" fill="#5f6368">0</text> <polyline points="40,105 83,102 126,104 169,100 212,102 255,98 298,96" fill="none" stroke="#1a73e8" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/> <polyline points="298,96 341,80 384,62 427,44 470,30 513,22 556,16 599,12 642,9 680,7" fill="none" stroke="#1a73e8" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/> <polygon points="40,105 83,102 126,104 169,100 212,102 255,98 298,96 341,80 384,62 427,44 470,30 513,22 556,16 599,12 642,9 680,7 680,110 40,110" fill="url(#scG)"/> <polyline points="40,102 83,100 126,101 169,98 212,100 255,96 298,94 341,82 384,68 427,52 470,40 513,30 556,24 599,20 642,16 680,13" fill="none" stroke="#6b3fa0" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/> <line x1="298" y1="8" x2="298" y2="110" stroke="#106861" stroke-width="1.5" stroke-dasharray="4,3"/> <rect x="196" y="1" width="160" height="16" rx="8" fill="#106861"/> <text x="276" y="12" text-anchor="middle" font-size="9" fill="white" font-family="sans-serif">&#9654; Start F&ouml;rderSolutions</text> <circle cx="298" cy="96" r="4" fill="#1a73e8" stroke="white" stroke-width="2"/> <text x="50" y="130" font-size="10" fill="#5f6368">13.03.26</text> <text x="155" y="130" font-size="10" fill="#5f6368">19.03.26</text> <text x="260" y="130" font-size="10" fill="#5f6368">25.03.26</text> <text x="365" y="130" font-size="10" fill="#5f6368">31.03.26</text> <text x="465" y="130" font-size="10" fill="#5f6368">03.04.26</text> <text x="570" y="130" font-size="10" fill="#5f6368">09.04.26</text> </svg> </div> </div> </div> </section> <span class="fs-space-xl"></span> <section class="fs-visual"> <div class="fs-visual-meta"> <span class="fs-label">Der Weg</span> <span class="fs-space" style="height:10px;"></span> <h2 class="fs-subline">Vom digitalen Niemand zum Experten, den Maschinen und Menschen von alleine finden.</h2> </div> <div class="fs-visual-wrap"> ```html <div style="text-align:center; margin-bottom:var(--sp-lg);"> <span class="fs-tag" style="margin-bottom:var(--sp-sm); display:inline-block;">4 Phasen — ein System</span> <h2 style="font-family:var(--font-display); color:var(--text); font-size:clamp(1.6rem,3.2vw,2.4rem); font-weight:600; line-height:1.25; max-width:720px; margin:var(--sp-sm) auto 0;"> Vom digitalen Niemand zum Experten,&nbsp;den Maschinen und Menschen von&nbsp;alleine&nbsp;finden. </h2> </div> <!-- Journey Grid --> <div style=" display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:var(--sp-md); "> <!-- Phase 1 --> <div style=" background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); padding:var(--sp-md); box-shadow:var(--card-shadow); display:flex; flex-direction:column; gap:var(--sp-sm); position:relative; overflow:hidden; "> <div style=" position:absolute; top:0;left:0;right:0; height:4px; background:var(--teal-light); border-radius:var(--r-md) var(--r-md) 0 0; "></div> <div style=" width:40px;height:40px; border-radius:var(--r-sm); background:var(--teal-light); color:var(--teal); font-family:var(--font-display); font-weight:700; font-size:1.1rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; ">01</div> <div> <h3 style=" font-family:var(--font-display); font-size:1.1rem; font-weight:600; color:var(--text); margin:0 0 var(--sp-xs); line-height:1.3; ">Sichtbarkeit aufbauen</h3> <p class="fs-body" style="color:var(--muted); margin:0; line-height:1.55;"> Deine Expertise wird so strukturiert, dass KI-Systeme und Suchmaschinen dich als Autorität für KI-Beratung, Gründung und industrielle Transformation erkennen. </p> </div> </div> <!-- Phase 2 --> <div style=" background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); padding:var(--sp-md); box-shadow:var(--card-shadow); display:flex; flex-direction:column; gap:var(--sp-sm); position:relative; overflow:hidden; "> <div style=" position:absolute; top:0;left:0;right:0; height:4px; background:var(--teal-light); border-radius:var(--r-md) var(--r-md) 0 0; "></div> <div style=" width:40px;height:40px; border-radius:var(--r-sm); background:var(--teal-light); color:var(--teal); font-family:var(--font-display); font-weight:700; font-size:1.1rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; ">02</div> <div> <h3 style=" font-family:var(--font-display); font-size:1.1rem; font-weight:600; color:var(--text); margin:0 0 var(--sp-xs); line-height:1.3; ">Conversion-Infrastruktur installieren</h3> <p class="fs-body" style="color:var(--muted); margin:0; line-height:1.55;"> Deine Website wird zur Maschine: klarer Pfad, klare CTAs, jeder Besucher wird zum potenziellen Gespräch. </p> </div> </div> <!-- Phase 3 --> <div style=" background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); padding:var(--sp-md); box-shadow:var(--card-shadow); display:flex; flex-direction:column; gap:var(--sp-sm); position:relative; overflow:hidden; "> <div style=" position:absolute; top:0;left:0;right:0; height:4px; background:var(--teal-light); border-radius:var(--r-md) var(--r-md) 0 0; "></div> <div style=" width:40px;height:40px; border-radius:var(--r-sm); background:var(--teal-light); color:var(--teal); font </div> </section> <span class="fs-space-xl"></span> <div class="fs-garantie"> <span class="fs-label">Die Garantie</span> <h2 class="fs-subline" style="color:white;margin-bottom:var(--sp-sm);">Kein Risiko. Wörtlich.</h2> <p class="fs-body" style="color:rgba(255,255,255,.65);max-width:480px;margin:0 auto var(--sp-md);">Wir definieren vorher gemeinsam, was das System leisten muss. Messbar. Konkret. Kein Interpretationsspielraum. Wenn es beim Live-Test nicht steht — bauen wir nach. Auf unsere Kosten. Nicht auf deine.</p> <a href="#" class="fs-btn fs-btn-lime">Gespr&auml;ch anfragen</a> </div> <span class="fs-space-xl"></span> <section class="fs-cta"> <h2 class="fs-headline">Du hilfst anderen Unternehmen, zu wachsen. Lass uns dafür sorgen, dass die richtigen Unternehmen dich auch finden.</h2> <p class="fs-body-lg">15 Minuten. Kein Pitch. Wir schauen gemeinsam auf deine Situation und du erfährst, ob eine Lead-Machine für JOSI Sinn ergibt. Wenn nicht, sagen wir dir das. Wenn ja, weißt du danach genau, was gebaut wird.</p> <a href="#" class="fs-btn">Gespr&auml;ch anfragen</a> </section> </div> </div>