/* ============================================= CSS CUSTOM PROPERTIES ============================================= */ :root { --navy: #123b62; --navy-dark: #0d2b48; --navy-light: #1a4f7a; --teal: #4db6ac; --teal-dark: #3a9e94; --teal-light: #e0f2f1; --teal-ultra-light: #f0faf9; --white: #ffffff; --off-white: #f8fafb; --gray-50: #f5f7f9; --gray-100: #e8ecf0; --gray-200: #d1d9e0; --gray-400: #8a96a3; --gray-600: #4a5568; --gray-800: #2d3748; --black: #1a202c; --font-sans: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif; --font-serif: 'Cormorant', 'Georgia', serif; --max-width: 1200px; --section-padding: 100px; --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* ============================================= RESET & BASE ============================================= */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-sans); color: var(--gray-800); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; } img { max-width: 100%; height: auto; display: block; } a { color: var(--teal-dark); text-decoration: none; transition: color var(--transition); } a:hover { color: var(--navy); } .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; } h1, h2, h3, h4 { line-height: 1.2; } h1 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(2rem, 4.5vw, 2.8rem); color: var(--white); } h2 { font-family: var(--font-sans); font-weight: 600; font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--navy); } h3 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--navy); } .section-label { font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block; } .section-subtitle { font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--gray-400); max-width: 600px; margin-top: 12px; } /* ============================================= NAVIGATION ============================================= */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color var(--transition), box-shadow var(--transition); } .nav.scrolled { border-bottom-color: var(--gray-100); box-shadow: 0 1px 16px rgba(18,59,98,0.06); } .nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; } .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; } .nav-logo-text { font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem; color: var(--navy); letter-spacing: 0.5px; } .nav-logo-text span { color: var(--teal); } .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; } .nav-links a { font-family: var(--font-sans); font-weight: 500; font-size: 0.92rem; color: var(--gray-600); text-decoration: none; transition: color var(--transition); position: relative; } .nav-links a:hover { color: var(--navy); } .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width var(--transition); } .nav-links a:hover::after { width: 100%; } .nav-links a.active { color: var(--navy); font-weight: 600; } .nav-links a.active::after { width: 100%; } .nav-cta { background: var(--teal)!important; color: var(--white)!important; padding: 10px 24px!important; border-radius: 6px; font-weight: 600!important; font-size: 0.9rem!important; transition: background var(--transition), transform var(--transition)!important; } .nav-cta:hover { background: var(--teal-dark)!important; transform: translateY(-1px); } .nav-cta::after { display: none!important; } .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; } .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 6px 0; transition: var(--transition); } /* ============================================= BUTTONS ============================================= */ .btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; padding: 14px 32px; border-radius: 8px; border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; gap: 8px; } .btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 4px 14px rgba(77,182,172,0.35); } .btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(77,182,172,0.45); } .btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); } .btn-outline:hover { background: var(--navy); color: var(--white); } .btn-white { background: var(--white); color: var(--navy); } .btn-white:hover { background: var(--gray-50); color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.08); } .btn-white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); } .btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); } .btn-arrow::after { content: '\2192'; transition: transform var(--transition); } .btn-arrow:hover::after { transform: translateX(4px); } .btn-lg { font-size: 1.08rem; padding: 16px 40px; } /* ============================================= PAGE HERO ============================================= */ .page-hero { padding-top: 72px; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); position: relative; overflow: hidden; } .page-hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(77,182,172,0.1) 0%, transparent 70%); pointer-events: none; } .page-hero-inner { position: relative; z-index: 2; padding: 80px 0 88px; max-width: 740px; } .page-hero .breadcrumb { font-family: var(--font-sans); font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; } .page-hero .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; } .page-hero .breadcrumb a:hover { color: var(--teal); } .page-hero .breadcrumb .sep { margin: 0 8px; } .page-hero h1 { margin-bottom: 16px; } .page-hero h1 em { font-style: normal; color: var(--teal); } .page-hero-subtitle { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 600px; } /* ============================================= PRICING SECTION ============================================= */ .pricing { padding: var(--section-padding) 0 80px; background: var(--off-white); } .pricing-header { text-align: center; max-width: 650px; margin: 0 auto 56px; } .pricing-header .section-subtitle { margin-left: auto; margin-right: auto; } /* Toggle */ .pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; } .pricing-toggle-label { font-family: var(--font-sans); font-weight: 500; font-size: 0.92rem; color: var(--gray-600); cursor: pointer; transition: color var(--transition); } .pricing-toggle-label.active { color: var(--navy); font-weight: 600; } .pricing-toggle-switch { position: relative; width: 52px; height: 28px; background: var(--gray-200); border-radius: 100px; cursor: pointer; transition: background var(--transition); } .pricing-toggle-switch.active { background: var(--teal); } .pricing-toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: var(--white); border-radius: 50%; transition: transform var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,0.15); } .pricing-toggle-switch.active::after { transform: translateX(24px); } .pricing-save-badge { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white); background: var(--teal); padding: 3px 10px; border-radius: 100px; margin-left: 4px; } /* Cards */ .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 100%; margin: 0 auto; } .pricing-card { padding: 44px 36px; border-radius: 20px; border: 1px solid var(--gray-100); position: relative; transition: all var(--transition); } .pricing-card:hover { transform: translateY(-4px); } .pricing-card.free { background: var(--white); box-shadow: 0 4px 20px rgba(18,59,98,0.04); } .pricing-card.free:hover { box-shadow: 0 8px 32px rgba(18,59,98,0.08); } .pricing-card.team { background: var(--white); border: 2px solid var(--teal); box-shadow: 0 4px 20px rgba(18,59,98,0.04); } .pricing-card.team:hover { box-shadow: 0 8px 32px rgba(77,182,172,0.12); } .team .pricing-card-label { color: var(--teal-dark); } .team .pricing-card-title { color: var(--navy); } .team .pricing-features li { color: var(--gray-600); } .team .pricing-features .check { background: var(--teal-light); color: var(--teal); } .pricing-card.founding { background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%); border: 2px solid var(--teal); box-shadow: 0 8px 40px rgba(18,59,98,0.2); } .pricing-card.founding:hover { box-shadow: 0 12px 48px rgba(18,59,98,0.3); } .pricing-card.kanzlei { background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%); border: 2px solid var(--teal); box-shadow: 0 8px 40px rgba(18,59,98,0.15); } .pricing-card.kanzlei:hover { box-shadow: 0 12px 48px rgba(18,59,98,0.25); } .kanzlei .pricing-card-label { color: var(--teal); } .kanzlei .pricing-card-title { color: var(--white); } .kanzlei .pricing-features li { color: rgba(255,255,255,0.85); } .kanzlei .pricing-features .check { background: rgba(77,182,172,0.2); color: var(--teal); } .pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); font-family: var(--font-sans); font-weight: 700; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 22px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 12px rgba(77,182,172,0.35); } .pricing-card-label { font-family: var(--font-sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; } .free .pricing-card-label { color: var(--gray-400); } .founding .pricing-card-label { color: var(--teal); } .pricing-card-title { font-family: var(--font-sans); font-weight: 700; font-size: 1.5rem; margin-bottom: 16px; } .free .pricing-card-title { color: var(--navy); } .founding .pricing-card-title { color: var(--white); } .pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; } .pricing-amount { font-family: var(--font-sans); font-weight: 800; font-size: 3rem; line-height: 1; } .free .pricing-amount { color: var(--navy); } .team .pricing-amount { color: var(--teal-dark); } .founding .pricing-amount { color: var(--teal); } .kanzlei .pricing-amount { color: var(--teal); } .pricing-currency { font-family: var(--font-sans); font-weight: 600; font-size: 1.2rem; } .free .pricing-currency { color: var(--navy); } .team .pricing-currency { color: var(--teal-dark); } .founding .pricing-currency { color: var(--teal); } .kanzlei .pricing-currency { color: var(--teal); } .pricing-period { font-family: var(--font-sans); font-weight: 400; font-size: 0.95rem; } .free .pricing-period { color: var(--gray-400); } .team .pricing-period { color: var(--gray-400); } .founding .pricing-period { color: rgba(255,255,255,0.45); } .kanzlei .pricing-period { color: rgba(255,255,255,0.45); } .pricing-note { font-size: 0.85rem; margin-bottom: 28px; min-height: 20px; } .free .pricing-note { color: var(--gray-400); } .team .pricing-note { color: var(--gray-400); } .founding .pricing-note { color: rgba(255,255,255,0.5); } .kanzlei .pricing-note { color: rgba(255,255,255,0.5); } .pricing-divider { height: 1px; margin-bottom: 24px; } .free .pricing-divider { background: var(--gray-100); } .team .pricing-divider { background: var(--gray-100); } .founding .pricing-divider { background: rgba(255,255,255,0.1); } .kanzlei .pricing-divider { background: rgba(255,255,255,0.1); } .pricing-features { list-style: none; margin-bottom: 32px; } .pricing-features li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 0.93rem; line-height: 1.5; } .free .pricing-features li { color: var(--gray-600); } .founding .pricing-features li { color: rgba(255,255,255,0.85); } .pricing-features .check { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.7rem; font-weight: 700; margin-top: 2px; } .free .pricing-features .check { background: var(--gray-50); color: var(--teal); } .founding .pricing-features .check { background: rgba(77,182,172,0.2); color: var(--teal); } .pricing-features .feat-label { font-weight: 600; } .free .pricing-features .feat-label { color: var(--navy); } .founding .pricing-features .feat-label { color: var(--white); } /* ============================================= COMPARISON TABLE ============================================= */ .comparison { padding: 0 0 var(--section-padding); background: var(--off-white); } .comparison-header { text-align: center; margin-bottom: 40px; } .comparison-table-wrap { max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); background: var(--white); box-shadow: 0 4px 20px rgba(18,59,98,0.04); } .comparison-table { width: 100%; border-collapse: collapse; } .comparison-table thead th { font-family: var(--font-sans); font-weight: 600; font-size: 0.92rem; text-align: center; padding: 20px 24px; background: var(--navy); color: var(--white); } .comparison-table thead th:first-child { text-align: left; width: 30%; } .comparison-table thead th:nth-child(2) { color: rgba(255,255,255,0.7); } .comparison-table thead th:nth-child(3) { color: var(--teal-light); } .comparison-table thead th:nth-child(4) { color: var(--teal); } .comparison-table thead th:nth-child(5) { color: var(--teal-light); } .comparison-table tbody td { padding: 14px 18px; font-size: 0.88rem; border-bottom: 1px solid var(--gray-50); } .comparison-table tbody td:first-child { font-weight: 500; color: var(--navy); } .comparison-table tbody td:nth-child(2), .comparison-table tbody td:nth-child(3), .comparison-table tbody td:nth-child(4), .comparison-table tbody td:nth-child(5) { text-align: center; font-size: 1.1rem; } .comparison-table tbody tr:last-child td { border-bottom: none; } .comparison-table tbody tr:hover { background: var(--teal-ultra-light); } .cmp-yes { color: var(--teal); font-weight: 700; } .cmp-no { color: var(--gray-200); } .cmp-limited { color: var(--gray-400); font-size: 0.8rem !important; font-weight: 500; } /* ============================================= VALUE PROPOSITION ============================================= */ .value { padding: var(--section-padding) 0; background: var(--white); } .value-header { text-align: center; max-width: 700px; margin: 0 auto 56px; } .value-header .section-subtitle { margin: 12px auto 0; } .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; } .value-card { padding: 36px 28px; background: var(--gray-50); border-radius: 14px; border: 1px solid var(--gray-100); text-align: center; transition: all var(--transition); } .value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(18,59,98,0.06); border-color: var(--teal); } .value-icon { width: 64px; height: 64px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: var(--teal-light); border-radius: 14px; font-size: 1.8rem; } .value-card h4 { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; } .value-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; } /* ============================================= FAQ ============================================= */ .faq { padding: var(--section-padding) 0; background: var(--off-white); } .faq-header { text-align: center; max-width: 600px; margin: 0 auto 48px; } .faq-list { max-width: 740px; margin: 0 auto; } .faq-item { border-bottom: 1px solid var(--gray-100); } .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; color: var(--navy); background: none; border: none; width: 100%; text-align: left; transition: color var(--transition); } .faq-question:hover { color: var(--teal-dark); } .faq-icon { font-size: 1.4rem; color: var(--teal); transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; } .faq-item.open .faq-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; } .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; } .faq-answer p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; } /* ============================================= GUARANTEE ============================================= */ .guarantee { padding: 60px 0; background: var(--white); } .guarantee-inner { max-width: 740px; margin: 0 auto; display: flex; align-items: center; gap: 32px; padding: 36px 40px; background: var(--teal-ultra-light); border: 1px solid var(--teal-light); border-radius: 16px; } .guarantee-icon { font-size: 3rem; flex-shrink: 0; } .guarantee-text h4 { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; } .guarantee-text p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; } /* ============================================= CTA BAND ============================================= */ .cta-band { padding: 80px 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); text-align: center; position: relative; overflow: hidden; } .cta-band::before { content: ''; position: absolute; top: -40%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(77,182,172,0.1) 0%, transparent 70%); } .cta-band h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 2; } .cta-band .section-subtitle { margin: 0 auto 32px; color: rgba(255,255,255,0.55); position: relative; z-index: 2; } .cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; } /* ============================================= FOOTER ============================================= */ .footer { padding: 60px 0 32px; background: var(--navy-dark); color: rgba(255,255,255,0.6); } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; } .footer-brand .nav-logo-text { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; display: block; } .footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; } .footer-brand .claim { font-family: var(--font-serif); font-style: italic; color: var(--teal); font-size: 0.95rem; margin-top: 12px; } .footer-col h4 { font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; } .footer-col ul { list-style: none; } .footer-col li { margin-bottom: 10px; } .footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); } .footer-col a:hover { color: var(--teal); } .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; } .footer-bottom a { color: rgba(255,255,255,0.5); } .footer-bottom a:hover { color: var(--teal); } .footer-legal { display: flex; gap: 24px; } /* ============================================= RESPONSIVE ============================================= */ @media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr 1fr; } .pricing-card { padding: 36px 28px; } } @media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr 1fr; } .value-grid { grid-template-columns: 1fr 1fr; } .guarantee-inner { flex-direction: column; text-align: center; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .comparison-table-wrap { overflow-x: auto; } } @media (max-width: 640px) { :root { --section-padding: 64px; } .nav-links { display: none; } .nav-toggle { display: block; } .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 16px; border-bottom: 1px solid var(--gray-100); box-shadow: 0 8px 24px rgba(0,0,0,0.08); } .page-hero-inner { padding: 48px 0 56px; } .pricing-grid { grid-template-columns: 1fr !important; max-width: 420px; margin: 0 auto; } .value-grid { grid-template-columns: 1fr; } .comparison-table-wrap { border-radius: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; } .comparison-table { min-width: 600px; } .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; font-size: 0.78rem; } .cta-band-actions { flex-direction: column; align-items: center; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
Vier Zugänge für jedes Bedürfnis – vom kostenlosen Einstieg bis zum Kanzlei-Paket für das ganze Team.
Vom kostenlosen Community-Zugang über den Team-Tarif für Fachangestellte bis zum Kanzlei-Paket – finde deinen passenden Zugang.
| Feature | Kostenlos | Team | Founding | Kanzlei |
|---|---|---|---|---|
| Offener Community-Bereich | ✓ | ✓ | ✓ | ✓ |
| Newsletter | ✓ | ✓ | ✓ | ✓ |
| Offener Stammtisch (quartalsweise) | ✓ | ✓ | ✓ | ✓ |
| Teaser-Inhalte | ✓ | ✓ | ✓ | ✓ |
| Tool Talks | – | ✓ | ✓ | ✓ |
| Praxis-Kurse (Fachangestellte) | – | ✓ | ✓ | ✓ |
| Session-Aufzeichnungen | – | ✓ | ✓ | ✓ |
| Exklusive monatliche Stammtische | – | – | ✓ | ✓ |
| Vollständige Kursbibliothek | – | – | ✓ | ✓ |
| Q&A-Sessions & Expertenrunden | – | – | ✓ | ✓ |
| Frühzugang zu neuen Inhalten | – | – | ✓ | ✓ |
| Direkter Kontakt zum Gründer | begrenzt | begrenzt | ✓ | ✓ |
| Dauerhafter Gründerpreis | – | – | ✓ | ✓ |
| Bis zu 5 Nutzer-Zugänge | – | – | – | ✓ |
| Kanzlei-Dashboard | – | – | – | ✓ |
| Prioritäts-Support | – | – | – | ✓ |
| Onboarding-Call | – | – | – | ✓ |
Schon ab 29 €/Monat – weniger als ein halber Anwalts-Stundensatz. Und das bekommst du dafür.
Ein einziger Tipp aus der Community, der dir eine Stunde pro Woche spart, refinanziert die Membership zehnfach.
Direkter Zugang zu Notaren, die vor denselben Herausforderungen stehen – und sie bereits gelöst haben.
Wer heute digitalisiert und KI nutzt, wird morgen effizienter arbeiten als der Wettbewerb. Einfach so.
Keine akademischen Vorträge, sondern Einblicke von Notaren, die das, was sie lehren, selbst jeden Tag anwenden.
Als Founding Member ist alles inklusive: Kurse, Tool Talks, Live-Formate, Community. Ein Preis, alles drin.
Der Preis von 69 € gilt, solange du Mitglied bleibst – auch wenn der Normalpreis auf 99 € steigt.
Du kannst deine Membership jederzeit zum Ende des Abrechnungszeitraums kündigen. Keine Mindestlaufzeit, keine versteckten Kosten. Wenn der Notar.Campus dir nichts bringt, gehst du einfach – fair und unkompliziert.
Das kostenlose Launch-Webinar findet am 6. Mai 2026 um 12:30 Uhr statt. Wenn du dich auf die Warteliste einträgst, bekommst du als Erster Bescheid und 48 Stunden Vorsprung vor dem öffentlichen Start.
Der Gründerpreis von 69 €/Monat gilt dauerhaft, solange du Mitglied bleibst – auch wenn der Normalpreis später auf 99 €/Monat steigt. Du sicherst dir diesen Preis exklusiv zum Launch. Für den Team-Zugang (29 €/Monat) und das Kanzlei-Paket (199 €/Monat) gelten ebenfalls attraktive Launch-Konditionen.
Nein. Alle Tarife sind monatlich kündbar. Beim Jahresabo sparst du bei jedem Tarif effektiv zwei Monate – das Abo verlängert sich nur, wenn du aktiv nicht kündigst.
Zum Launch am 6. Mai stehen die Community, der erste KI-Kurs und die ersten Inhalte bereit. Die Kursbibliothek und Tool Talks wachsen ab dann kontinuierlich. Als Founding Member gestaltest du aktiv mit, welche Themen als nächstes kommen.
Der Notar.Campus läuft auf Ablefy – einer deutschen Plattform für Community, Kurse und Membership. DSGVO-konform, mit professioneller Zahlungsabwicklung (SEPA, Kreditkarte, PayPal, Klarna).
Nein! Neben Notaren und Anwaltsnotaren richtet sich der Notar.Campus ausdrücklich auch an Notarfachangestellte und Büro-Teams. Der Team-Zugang für 29 €/Monat ist speziell auf die Bedürfnisse von Fachangestellten zugeschnitten. Mit dem Kanzlei-Paket können Notar und Team gemeinsam lernen.
Ja. Alle Live-Stammtische, Tool Talks und Q&A-Sessions werden aufgezeichnet und stehen als Founding Member dauerhaft in der Bibliothek zur Verfügung.
Vom kostenlosen Einstieg bis zum Kanzlei-Paket – starte jetzt und werde Teil der Community.