
/*** T3SB identifier: t3sbsCSSassets_32293 */

/* t3sbs_assets_32293 */
    /* ═══════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-card: #1a1a1a;
            --bg-card-hover: #222222;
            --text-primary: #f5f5f7;
            --text-secondary: #a1a1a6;
            --text-muted: #6e6e73;
            --accent: #4ade80;
            --accent-dark: #22c55e;
            --accent-glow: rgba(74, 222, 128, 0.15);
            --accent-glow-strong: rgba(74, 222, 128, 0.3);
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(255,255,255,0.15);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 10, 10, 0.72);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }

        .nav-logo {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-logo span {
            color: var(--accent);
        }

        .nav-cta {
            font-size: 0.82rem;
            padding: 8px 20px;
            background: var(--accent);
            color: #0a0a0a;
            border-radius: 980px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            background: var(--accent-dark);
            transform: scale(1.04);
        }

        /* ═══════════════════════════════════════
           SECTIONS – SHARED
           ═══════════════════════════════════════ */
        section {
            padding: 140px 24px;
            max-width: 1080px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .section-headline {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.08;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .section-headline .gradient-text {
            background: linear-gradient(135deg, var(--accent), #86efac, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-sub {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.65;
        }

        .highlight-line {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--accent);
        }

        .highlight-line::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        /* ═══════════════════════════════════════
           REVEAL ANIMATION
           ═══════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* Stagger children */
        .stagger-children .reveal {
            transition-delay: calc(var(--i, 0) * 0.12s);
        }

        /* ═══════════════════════════════════════
           1. HERO
           ═══════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 100px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0.5;
        }

        .hero .section-headline {
            font-size: clamp(2.6rem, 6vw, 4.2rem);
            max-width: 800px;
        }

        .hero .section-sub {
            font-size: clamp(1.1rem, 2.2vw, 1.35rem);
            margin-bottom: 36px;
        }

        .hero-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 40px;
        }

        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
            color: var(--text-secondary);
        }

        .hero-bullets li .check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--accent-glow-strong);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-bullets li .check svg {
            width: 13px;
            height: 13px;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #0a0a0a;
            background: var(--accent);
            border-radius: 980px;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 40px var(--accent-glow-strong);
        }

        .btn-primary:hover {
            background: #5eead4;
            transform: scale(1.05);
            box-shadow: 0 0 60px var(--accent-glow-strong);
        }

        .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .trust-line {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════
           2. PROBLEM
           ═══════════════════════════════════════ */
        .problem-section {
            text-align: center;
            position: relative;
        }

        .problem-section .section-sub {
            margin: 0 auto 48px;
        }

        .problem-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .problem-list li {
            font-size: 1.15rem;
            color: var(--text-secondary);
            padding: 10px 24px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            transition: all 0.4s;
        }

        .problem-list li:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
        }

        .problem-conclusion {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-top: 12px;
            line-height: 1.6;
        }

        .problem-conclusion span {
            color: var(--accent);
        }

        /* ═══════════════════════════════════════
           3. ERKENNTNIS – Sticky text
           ═══════════════════════════════════════ */
        .insight-section {
            position: relative;
        }

        .insight-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 48px 0 32px;
        }

        .insight-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            transition: all 0.5s;
        }

        .insight-item:hover {
            border-color: rgba(239, 68, 68, 0.3);
            background: rgba(239, 68, 68, 0.05);
        }

        .insight-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(239, 68, 68, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #f87171;
        }

        .insight-item span {
            font-size: 1.08rem;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════
           4. LÖSUNG
           ═══════════════════════════════════════ */
        .solution-section {
            text-align: center;
            position: relative;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0.3;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
            text-align: left;
        }

        .solution-card {
            padding: 32px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-card:hover {
            border-color: var(--accent-glow-strong);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .solution-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .solution-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .solution-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           5. SCHRITTE
           ═══════════════════════════════════════ */
        .steps-section {
            text-align: center;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 64px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 54px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
            opacity: 0.2;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--accent);
            position: relative;
            z-index: 1;
            transition: all 0.5s;
        }

        .step-card:hover .step-number {
            background: var(--accent);
            color: #0a0a0a;
            box-shadow: 0 0 30px var(--accent-glow-strong);
        }

        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           6. ERGEBNISSE
           ═══════════════════════════════════════ */
        .results-section {
            text-align: center;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 56px;
            text-align: left;
        }

        .result-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            transition: all 0.5s;
        }

        .result-card:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
        }

        .result-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent);
        }

        .result-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .result-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════
           7. VERGLEICH
           ═══════════════════════════════════════ */
        .compare-section {
            text-align: center;
        }

        .compare-table {
            margin: 56px auto 0;
            width: 100%;
            max-width: 800px;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .compare-table thead th {
            padding: 20px 28px;
            font-size: 0.95rem;
            font-weight: 700;
            text-align: left;
            background: var(--bg-card);
        }

        .compare-table thead th:first-child {
            color: var(--text-muted);
        }

        .compare-table thead th:last-child {
            color: var(--accent);
            background: rgba(74, 222, 128, 0.06);
        }

        .compare-table tbody td {
            padding: 18px 28px;
            font-size: 0.95rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .compare-table tbody td:last-child {
            color: var(--text-primary);
            font-weight: 500;
            background: rgba(74, 222, 128, 0.03);
        }

        .compare-table tbody tr {
            transition: background 0.3s;
        }

        .compare-table tbody tr:hover td {
            background: rgba(255,255,255,0.02);
        }

        .compare-table tbody tr:hover td:last-child {
            background: rgba(74, 222, 128, 0.08);
        }

        /* ═══════════════════════════════════════
           8. PARTNER
           ═══════════════════════════════════════ */
        .partner-section {
            text-align: center;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }

        .partner-card {
            padding: 36px 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            text-align: center;
            transition: all 0.5s;
        }

        .partner-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        .partner-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent);
        }

        .partner-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .partner-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════
           9. FAQ / EINWÄNDE
           ═══════════════════════════════════════ */
        .faq-section {
            max-width: 720px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 48px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            overflow: hidden;
            transition: all 0.4s;
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-question {
            padding: 24px 28px;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            user-select: none;
        }

        .faq-question .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.4s;
            color: var(--accent);
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                        padding 0.5s;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer-inner {
            padding: 0 28px 24px;
            font-size: 0.98rem;
            color: var(--accent);
            line-height: 1.65;
            font-weight: 500;
        }

        /* ═══════════════════════════════════════
           10. PRICING
           ═══════════════════════════════════════ */
        .pricing-section {
            text-align: center;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
            align-items: start;
        }

        .pricing-card {
            padding: 40px 32px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--bg-card);
            text-align: center;
            transition: all 0.5s;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--accent);
            background: linear-gradient(180deg, rgba(74,222,128,0.06) 0%, var(--bg-card) 100%);
            transform: scale(1.04);
        }

        .pricing-card.featured::before {
            content: 'Empfohlen';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            padding: 5px 18px;
            background: var(--accent);
            color: #0a0a0a;
            font-size: 0.78rem;
            font-weight: 700;
            border-radius: 980px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
        }

        .pricing-card.featured:hover {
            transform: scale(1.04) translateY(-6px);
        }

        .pricing-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .pricing-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .pricing-card .btn-pricing {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 980px;
            font-size: 0.92rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.35s;
        }

        .pricing-card .btn-pricing.btn-outline {
            border: 1.5px solid var(--border-hover);
            color: var(--text-primary);
            background: transparent;
        }

        .pricing-card .btn-pricing.btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .pricing-card .btn-pricing.btn-filled {
            background: var(--accent);
            color: #0a0a0a;
        }

        .pricing-card .btn-pricing.btn-filled:hover {
            background: #5eead4;
            transform: scale(1.05);
        }

        /* ═══════════════════════════════════════
           11. FINAL CTA
           ═══════════════════════════════════════ */
        .final-cta {
            text-align: center;
            padding: 160px 24px;
            position: relative;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 500px;
            background: radial-gradient(ellipse at center bottom, var(--accent-glow) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0.4;
        }

        .final-cta .section-headline {
            font-size: clamp(2.4rem, 5.5vw, 4rem);
        }

        .final-cta .section-sub {
            margin: 0 auto 44px;
        }

        /* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */
        footer {
            text-align: center;
            padding: 40px 24px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        footer a {
            color: var(--text-secondary);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--accent);
        }

        /* ═══════════════════════════════════════
           DIVIDER
           ═══════════════════════════════════════ */
        .divider {
            max-width: 1080px;
            margin: 0 auto;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
        }

        /* ═══════════════════════════════════════
           PARALLAX FLOAT
           ═══════════════════════════════════════ */
        .float-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* ═══════════════════════════════════════
           COUNTER ANIMATION
           ═══════════════════════════════════════ */
        .counter-bar {
            display: flex;
            justify-content: center;
            gap: 56px;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .counter-item {
            text-align: center;
        }

        .counter-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -0.03em;
        }

        .counter-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ═══════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════ */
        @media (max-width: 900px) {
            .solution-grid,
            .partner-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }
            .pricing-card.featured {
                transform: none;
            }
            .pricing-card.featured:hover {
                transform: translateY(-6px);
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid::before {
                display: none;
            }
            .results-grid {
                grid-template-columns: 1fr;
            }
            .compare-table {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 600px) {
            section { padding: 100px 20px; }
            .nav { padding: 0 20px; }
            .steps-grid { grid-template-columns: 1fr; }
            .counter-bar { gap: 32px; }
        }

        /* ═══════════════════════════════════════
           SCROLL PROGRESS BAR
           ═══════════════════════════════════════ */
        .scroll-progress {
            position: fixed;
            top: 56px;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #86efac);
            z-index: 999;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ═══════════════════════════════════════
           MAGNETIC CURSOR GLOW
           ═══════════════════════════════════════ */
        .cursor-glow {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74,222,128,0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.4s;
        }
   
	

