{"product_id":"anita","title":"Anita","description":"\u003cstyle\u003e\n  @import url('https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700\u0026display=swap');\n\n  .anita-container {\n    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n    color: #1a1a1a;\n    line-height: 1.6;\n    max-width: 1100px;\n    margin: 0 auto;\n    padding: 20px;\n  }\n\n  \/* USP Sektion am Anfang *\/\n  .usp-header {\n    text-align: center;\n    margin-bottom: 40px;\n  }\n  \n  .usp-grid {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 30px;\n    margin-bottom: 50px;\n  }\n\n  .usp-card {\n    background: #ffffff;\n    padding: 15px;\n    transition: transform 0.2s ease;\n  }\n  \n  .usp-card:hover {\n    transform: translateY(-2px);\n  }\n\n  .usp-card strong {\n    color: #151c4f;\n    display: block;\n    font-size: 1.1em;\n    margin-bottom: 8px;\n    border-bottom: 2px solid #151c4f;\n    padding-bottom: 5px;\n    width: fit-content;\n  }\n\n  \/* Video Bereich *\/\n  .video-section {\n    display: flex;\n    flex-wrap: wrap;\n    align-items: center;\n    gap: 40px;\n    margin-bottom: 60px;\n    background: #f8f9fb;\n    padding: 40px;\n    border-radius: 20px;\n  }\n\n  .video-text {\n    flex: 1;\n    min-width: 300px;\n  }\n\n  .video-wrapper {\n    flex: 1.2;\n    min-width: 300px;\n  }\n\n  .loom-container {\n    position: relative;\n    padding-bottom: 62.5%;\n    height: 0;\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: 0 20px 40px rgba(0,0,0,0.1);\n  }\n\n  .loom-container iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n  }\n\n  \/* Problem\/Lösung Boxen *\/\n  .comparison-grid {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 20px;\n    margin-bottom: 50px;\n  }\n\n  .card {\n    padding: 30px;\n    border-radius: 12px;\n  }\n\n  .problem-card { background-color: #fdf2f2; }\n  .solution-card { background-color: #151c4f; color: white; }\n  .solution-card h3 { color: white !important; }\n  \n  .card ul li {\n    margin-bottom: 10px;\n    position: relative;\n    list-style: none;\n    padding-left: 20px;\n  }\n  \n  .problem-card ul li::before {\n    content: \"✖\";\n    color: #e03131;\n    position: absolute;\n    left: 0;\n    font-weight: bold;\n  }\n\n  .solution-card ul li::before {\n    content: \"✔\";\n    color: #4ade80;\n    position: absolute;\n    left: 0;\n    font-weight: bold;\n  }\n\n  \/* NEU: Testimonial Sektion *\/\n  .testimonial-section {\n    background-color: #f8f9fb;\n    border-left: 5px solid #151c4f;\n    border-radius: 0 12px 12px 0;\n    padding: 40px 50px;\n    margin-bottom: 50px;\n    position: relative;\n    box-shadow: 0 4px 6px rgba(0,0,0,0.02);\n  }\n\n  .testimonial-section::before {\n    content: \"„\";\n    font-size: 80px;\n    color: #151c4f;\n    opacity: 0.08;\n    position: absolute;\n    top: 10px;\n    left: 20px;\n    font-family: Georgia, serif;\n    line-height: 1;\n  }\n\n  .testimonial-quote {\n    font-size: 16px;\n    font-style: italic;\n    color: #374151;\n    margin-bottom: 25px;\n    line-height: 1.8;\n    position: relative;\n    z-index: 1;\n  }\n\n  .testimonial-author-box {\n    display: flex;\n    flex-direction: column;\n  }\n\n  .testimonial-author {\n    font-weight: 700;\n    color: #151c4f;\n    font-size: 16px;\n  }\n\n  .testimonial-title {\n    font-size: 14px;\n    color: #6b7280;\n    margin-top: 2px;\n  }\n\n  \/* Tech\/Integration Box Styling *\/\n  .tech-box {\n    margin-top: 40px;\n    background-color: #ffffff;\n    border: 1px solid #e5e7eb;\n    border-left: 5px solid #151c4f;\n    border-radius: 8px;\n    padding: 25px;\n    display: flex;\n    flex-wrap: wrap;\n    align-items: center;\n    justify-content: space-between;\n    gap: 20px;\n    box-shadow: 0 4px 6px rgba(0,0,0,0.05);\n  }\n\n  .tech-content h3 {\n    margin: 0 0 5px 0;\n    font-size: 18px;\n    color: #151c4f;\n    display: flex;\n    align-items: center;\n    gap: 10px;\n  }\n\n  .tech-content p {\n    margin: 0;\n    font-size: 15px;\n    color: #4b5563;\n  }\n\n  .api-button {\n    background-color: #f3f4f6;\n    color: #151c4f;\n    padding: 10px 20px;\n    border-radius: 6px;\n    text-decoration: none;\n    font-weight: 600;\n    font-size: 14px;\n    border: 1px solid #d1d5db;\n    transition: all 0.2s;\n    white-space: nowrap;\n  }\n\n  .api-button:hover {\n    background-color: #151c4f;\n    color: #ffffff;\n    border-color: #151c4f;\n  }\n\n  \/* Mobile Anpassung *\/\n  @media (max-width: 850px) {\n    .usp-grid { grid-template-columns: 1fr; gap: 20px; }\n    .video-section { padding: 20px; }\n    .comparison-grid { grid-template-columns: 1fr; }\n    .video-text, .video-wrapper { width: 100%; }\n    .testimonial-section { padding: 30px 20px 30px 40px; }\n    .testimonial-section::before { left: 10px; font-size: 60px; }\n    .tech-box { flex-direction: column; align-items: flex-start; }\n    .api-button { width: 100%; text-align: center; }\n  }\n\n  h2 { font-size: 28px; color: #151c4f; margin-bottom: 20px; font-weight: 700; }\n  h3 { font-size: 20px; color: #151c4f; margin-bottom: 15px; }\n\u003c\/style\u003e\n\n\u003cdiv class=\"anita-container\"\u003e\n\n  \u003cdiv class=\"usp-header\"\u003e\n    \u003ch2\u003eWarum Anita?\u003c\/h2\u003e\n  \u003c\/div\u003e\n  \n  \u003cdiv class=\"usp-grid\"\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eBessere Einblicke\u003c\/strong\u003e\n      \u003cspan\u003eUnsere KI liefert präzise, umfassende und fallbezogene Erkenntnisse.\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eZeit sparen\u003c\/strong\u003e\n      \u003cspan\u003eReduzieren Sie Ihre Recherchezeit um bis zu 75 %.\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eGeld sparen\u003c\/strong\u003e\n      \u003cspan\u003eSenken Sie Kosten und gewinnen Sie Zeit für mehr Honorarstunden.\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eErklärbare KI\u003c\/strong\u003e\n      \u003cspan\u003eKeine Halluzinationen – alle Inhalte sind eindeutigen Quellen zuordbar.\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eAus der Forschung\u003c\/strong\u003e\n      \u003cspan\u003eAusgründung aus der FU Berlin und dem Fraunhofer HHI.\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"usp-card\"\u003e\n      \u003cstrong\u003eSicher \u0026amp; Europäisch\u003c\/strong\u003e\n      \u003cspan\u003eISO-zertifizierte Server in Deutschland. BRAO- \u0026amp; DSGVO-konform.\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"video-section\"\u003e\n    \u003cdiv class=\"video-text\"\u003e\n      \u003ch2\u003eKI-Recherche für Profis\u003c\/h2\u003e\n      \u003cp\u003eAnita ermöglicht Ihnen eine ganz neue, stressfreie Rechercheerfahrung in allen Rechtsgebieten.\u003c\/p\u003e\n      \u003cp\u003eAnita ist die KI-Plattform für präzise, schnelle und kostengünstige Rechtsrecherche für alle Rechtsgebiete inklusive automatisierter Texterstellung – ganz ohne sog. Halluzinationen.\u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"video-wrapper\"\u003e\n      \u003cdiv class=\"loom-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.loom.com\/embed\/351aa605734c484f8d1169e133d87106?hide_owner=true\u0026amp;hide_share=true\u0026amp;hide_title=true\u0026amp;hide_embed_speed=true\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen\u003e\u003c\/iframe\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"comparison-grid\"\u003e\n    \u003cdiv class=\"card problem-card\"\u003e\n      \u003ch3\u003eKennen Sie das?\u003c\/h3\u003e\n      \u003cul\u003e\n        \u003cli\u003eSchwer zugängliche Gerichtsentscheidungen.\u003c\/li\u003e\n        \u003cli\u003eEnormer Zeitaufwand für manuelle Aktenrecherche.\u003c\/li\u003e\n        \u003cli\u003eMühsame Extraktion von Argumentationsketten.\u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"card solution-card\"\u003e\n      \u003ch3\u003eDie Lösung\u003c\/h3\u003e\n      \u003cul\u003e\n        \u003cli\u003eZentraler Zugriff auf alle Rechtsgebiete.\u003c\/li\u003e\n        \u003cli\u003eAutomatisierte Analyse von Erfolgsquoten.\u003c\/li\u003e\n        \u003cli\u003eKI-generierte Schriftsatzentwürfe auf Knopfdruck.\u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"testimonial-section\"\u003e\n    \u003cdiv class=\"testimonial-quote\"\u003e\n      „Anita.legal ist ein zuverlässiges Recherchetool, das juristische Arbeit spürbar erleichtert. Wer als Rechtsanwalt fundierte und belastbare Informationen benötigt, findet in Anita.legal eine starke Unterstützung. Die Ergebnisse sind präzise, nachvollziehbar und fachlich sauber aufbereitet – ideal für die tägliche Mandatsarbeit. Besonders überzeugend ist das faire Preis-Leistungs-Verhältnis, das den Einsatz auch wirtschaftlich attraktiv macht. Für Kolleginnen und Kollegen, die Wert auf Qualität und Effizienz legen, ist Anita.legal eine klare Empfehlung.“\n    \u003c\/div\u003e\n    \u003cdiv class=\"testimonial-author-box\"\u003e\n      \u003cspan class=\"testimonial-author\"\u003eSven Jäger\u003c\/span\u003e\n      \u003cspan class=\"testimonial-title\"\u003eRechtsanwalt \u0026amp; Fachanwalt für Miet- und Wohnungseigentumsrecht\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv style=\"padding: 20px; border-top: 1px solid #eee;\"\u003e\n    \u003ch3\u003eTief integriert in Ihren Workflow\u003c\/h3\u003e\n    \u003cp\u003eAnita bietet Kanzleien eine leistungsstarke Plattform, mit der komplexe Rechtsfragen präzise und kostengünstig bearbeitet werden können. Kernstück ist die patentierte, erklärbare KI-Technologie, die stets nachvollziehbare Ergebnisse liefert. Damit steigern Sie die Qualität Ihrer juristischen Arbeit bei erheblicher Zeitersparnis.\u003c\/p\u003e\n  \u003c\/div\u003e\n  \n  \u003cdiv class=\"tech-box\"\u003e\n    \u003cdiv class=\"tech-content\"\u003e\n      \u003ch3\u003e⚙️ Technische Integration \u0026amp; API\u003c\/h3\u003e\n      \u003cp\u003eNahtlose Anbindung an Ihre Kanzleisoftware möglich. Serverstandort: Deutschland (ISO-zertifiziert).\u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003ca href=\"https:\/\/www.api.anita.legal\/\" target=\"_blank\" class=\"api-button\"\u003eAPI Dokumentation ansehen →\u003c\/a\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Anita Legal GmbH","offers":[{"title":"Pro Benutzer \/ jährliche Zahlung","offer_id":54224760406401,"sku":null,"price":39.2,"currency_code":"EUR","in_stock":true},{"title":"Pro Benutzer \/ monatliche Zahlung","offer_id":54321729012097,"sku":null,"price":49.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0792\/9511\/9644\/files\/01Login_09743eb5-4b1c-4472-bec2-97458f2c125a.png?v=1772031291","url":"https:\/\/stp-marketplace.myshopify.com\/products\/anita","provider":"STP Marketplace","version":"1.0","type":"link"}