*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --blue: #2563eb;
            --blue-dark: #1d4ed8;
            --blue-light: #eff6ff;
            --blue-glow: rgba(37, 99, 235, 0.15);
            --dark: #0c1222;
            --gray: #64748b;
            --gray-light: #94a3b8;
            --border: #e2e8f0;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --success: #059669;
            --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
            --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        h1, h2, h3 { 
            font-family: 'Outfit', sans-serif;
            font-weight: 700; 
            line-height: 1.15; 
            letter-spacing: -0.03em; 
            color: var(--dark); 
        }
        a { color: inherit; text-decoration: none; }
        
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        
        /* Animated Background Gradient */
        .bg-animated {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-hero);
            z-index: -1;
            overflow: hidden;
        }
        .bg-animated::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            animation: float 20s ease-in-out infinite;
        }
        .bg-animated::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }
        
        /* Fade-in animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-up {
            animation: fadeUp 0.8s ease-out forwards;
            opacity: 0;
        }
        .fade-up-delay-1 { animation-delay: 0.1s; }
        .fade-up-delay-2 { animation-delay: 0.2s; }
        .fade-up-delay-3 { animation-delay: 0.3s; }
        .fade-up-delay-4 { animation-delay: 0.4s; }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 600;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
        .btn:hover svg { transform: translateX(4px); }
        
        .btn-primary {
            background: var(--blue);
            color: white;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
        }
        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--border);
        }
        .btn-outline:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: var(--blue-light);
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo-cube {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
            transition: transform 0.5s ease;
            transform-style: preserve-3d;
        }
        .nav-logo:hover .nav-logo-cube {
            transform: rotateY(360deg);
        }
        .nav-logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--blue);
        }
        .nav-logo-text span {
            color: var(--dark);
        }
        
        /* Custom cursor for CTAs */
        .btn-primary {
            background: var(--blue);
            color: white;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
            cursor: pointer;
            position: relative;
        }
        .btn-primary::before {
            content: '→';
            position: absolute;
            right: -30px;
            opacity: 0;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        .btn-primary:hover::before {
            right: -25px;
            opacity: 1;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray);
            transition: color 0.2s;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover { color: var(--dark); }
        .nav-link:hover::after { width: 100%; }
        .nav-cta .btn { padding: 12px 24px; font-size: 14px; }
        .nav-toggle { display: none; }
        
        /* Hero */
        .hero {
            padding: 120px 0 60px;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            align-items: center;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--blue);
            padding: 10px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            border: 1px solid var(--blue-light);
        }
        .hero-badge svg { width: 18px; height: 18px; }
        
        .hero h1 {
            font-size: clamp(38px, 5vw, 56px);
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero h1 .blue {
            background: linear-gradient(135deg, var(--blue) 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto 28px;
            line-height: 1.6;
        }
        
        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .hero-stat-label {
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* Section */
        .section {
            padding: 100px 0;
        }
        .section-alt {
            background: var(--bg-light);
        }
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-title {
            font-size: clamp(32px, 4vw, 44px);
        }
        .section-title .blue { color: var(--blue); }
        .section-subtitle {
            font-size: 17px;
            color: var(--gray);
            margin-top: 12px;
        }
        
        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .portfolio-item {
            background: var(--gradient-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: var(--blue-light);
        }
        .portfolio-video {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background: var(--dark);
            overflow: hidden;
        }
        .portfolio-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .portfolio-item:hover .portfolio-video iframe {
            transform: scale(1.03);
        }
        .portfolio-info {
            padding: 24px;
        }
        .portfolio-info h3 {
            font-size: 20px;
            margin-bottom: 6px;
        }
        .portfolio-info p {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Use Cases - Animated Icons */
        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .usecase-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
        }
        .usecase-item:hover {
            border-color: var(--blue);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }
        .usecase-icon {
            font-size: 32px;
            margin-bottom: 12px;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .usecase-item:hover .usecase-icon {
            transform: scale(1.2) rotate(-5deg);
            animation: iconBounce 0.5s ease;
        }
        @keyframes iconBounce {
            0%, 100% { transform: scale(1.2) rotate(-5deg); }
            50% { transform: scale(1.3) rotate(5deg); }
        }
        .usecase-item h3 {
            font-size: 15px;
            margin-bottom: 4px;
        }
        .usecase-item p {
            font-size: 12px;
            color: var(--gray);
        }
        
        /* Value Grid */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .value-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px 28px;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            border-color: var(--blue-light);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .value-icon {
            width: 56px;
            height: 56px;
            background: var(--blue-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .value-card:hover .value-icon {
            background: var(--blue);
        }
        .value-card:hover .value-icon svg {
            color: white;
        }
        .value-icon svg {
            width: 26px;
            height: 26px;
            color: var(--blue);
            transition: color 0.3s ease;
        }
        .value-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .value-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 50%, var(--blue-light) 100%);
            z-index: 0;
        }
        .process-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        .process-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .process-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        .process-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }
        .process-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 12px;
        }
        .process-time {
            display: inline-block;
            background: var(--blue-light);
            color: var(--blue);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
        }
        
        /* Pricing */
        .pricing-box {
            max-width: 480px;
            margin: 0 auto;
            background: var(--gradient-card);
            border: 2px solid var(--blue-light);
            border-radius: 28px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue) 0%, #3b82f6 100%);
        }
        .pricing-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(255,255,255,0.8) 50%,
                transparent 60%
            );
            animation: shimmer 3s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        .pricing-badge {
            display: inline-block;
            background: var(--blue);
            color: white;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 28px;
        }
        .pricing-price {
            font-family: 'Outfit', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .pricing-price span {
            font-size: 20px;
            font-weight: 500;
            color: var(--gray);
        }
        .pricing-note {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 32px;
        }
        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 36px;
        }
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 15px;
        }
        .pricing-features li:last-child { border-bottom: none; }
        .pricing-features svg {
            width: 22px;
            height: 22px;
            color: var(--success);
            flex-shrink: 0;
        }
        .pricing-cta .btn { width: 100%; }
        .pricing-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 13px;
            color: var(--gray);
        }
        .pricing-guarantee svg { width: 18px; height: 18px; color: var(--success); }
        
        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 48px;
            align-items: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--blue-light);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
        }
        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-content h3 {
            font-size: 26px;
            margin-bottom: 4px;
        }
        .about-role {
            color: var(--blue);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 16px;
        }
        .about-text {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* FAQ */
        .faq-list {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover, .faq-item.active {
            border-color: var(--blue-light);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .faq-question {
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--blue); }
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--gray-light);
            transition: all 0.3s;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon { 
            transform: rotate(180deg); 
            color: var(--blue);
        }
        .faq-answer {
            display: none;
            padding: 0 28px 24px;
        }
        .faq-item.active .faq-answer { display: block; }
        .faq-answer p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: pulse 10s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        .final-cta h2 {
            font-size: clamp(28px, 4vw, 42px);
            color: white;
            margin-bottom: 16px;
            position: relative;
        }
        .final-cta p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px;
            position: relative;
        }
        .final-cta .btn-primary {
            background: white;
            color: var(--blue);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .final-cta .btn-primary:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }
        .final-cta-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 40px;
            position: relative;
        }
        .final-cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            font-weight: 500;
        }
        .final-cta-feature svg { width: 18px; height: 18px; }
        
        /* Footer */
        .footer {
            background: var(--dark);
            padding: 40px 0;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .footer-links a {
            color: var(--gray);
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: white; }
        .footer-copy {
            color: var(--gray);
            font-size: 14px;
        }
        .service-links-section { padding: 60px 0; }
        .service-links-section .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
        .service-links-section h2 { text-align: center; margin-bottom: 40px; font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3vw, 32px); font-weight: 700; color: var(--dark); }
        .service-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .service-links-grid a { display: block; padding: 20px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); text-decoration: none; color: var(--dark); transition: box-shadow 0.3s; }
        .service-links-grid a:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .service-links-grid strong { display: block; margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
        .service-links-grid span { font-size: 14px; color: var(--gray); }

        /* Cross-service section (blue background, erklaervideo-branche pages) */
        .cross-service-section { padding: 60px 0; background: #f0f7ff; }
        .cross-service-section .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
        .cross-service-section h2 { text-align: center; margin-bottom: 16px; font-family: 'Outfit', sans-serif; font-size: clamp(24px, 2.5vw, 28px); font-weight: 700; color: var(--dark); }
        .cross-service-section p { text-align: center; color: var(--gray); margin-bottom: 40px; }
        .cross-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
        .cross-service-grid a { display: block; padding: 20px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); text-decoration: none; color: var(--dark); transition: box-shadow 0.3s; }
        .cross-service-grid a:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .cross-service-grid strong { display: block; margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
        .cross-service-grid span { font-size: 14px; color: var(--gray); }

        /* Branchen links section (minmax 200px, simple anchor tags) */
        .branchen-links-section { padding: 60px 0; background: var(--light); }
        .branchen-links-section .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
        .branchen-links-section h2 { text-align: center; margin-bottom: 12px; font-family: 'Outfit', sans-serif; font-size: clamp(24px, 2.5vw, 28px); font-weight: 700; color: var(--dark); }
        .branchen-links-section p { text-align: center; color: var(--gray); margin-bottom: 36px; }
        .branchen-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
        .branchen-links-grid a { display: block; padding: 16px 20px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); text-decoration: none; color: var(--dark); font-size: 15px; font-weight: 600; transition: box-shadow 0.2s; }
        .branchen-links-grid a:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

        /* Responsive */
        @media (max-width: 1024px) {
            .usecases-grid { grid-template-columns: repeat(3, 1fr); }
            .value-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid::before { display: none; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .nav-toggle {
                display: flex;
                flex-direction: column;
                gap: 5px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 8px;
            }
            .nav-toggle span {
                width: 24px;
                height: 2px;
                background: var(--dark);
                border-radius: 2px;
            }
            
            .hero { padding: 120px 0 60px; min-height: auto; }
            .hero h1 { font-size: 36px; }
            .hero-stats { flex-direction: column; gap: 24px; }
            
            .portfolio-grid { grid-template-columns: 1fr; }
            .usecases-grid { grid-template-columns: repeat(2, 1fr); }
            .value-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-photo { margin: 0 auto; }
            
            .pricing-box { padding: 32px 24px; }
            .pricing-price { font-size: 44px; }
            
            .final-cta-features { flex-direction: column; gap: 12px; }
            .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
        }
        /* Mobile Sticky CTA */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px 16px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid #e2e8f0;
            z-index: 9999;
            text-align: center;
        }
        .mobile-sticky-btn {
            display: block;
            background: #2563eb;
            color: white !important;
            text-decoration: none !important;
            padding: 14px 24px;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        @media (max-width: 768px) {
            .mobile-sticky-cta { display: block; }
            footer { padding-bottom: 70px; }
        }

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.usecases-grid .scroll-animate.visible:nth-child(1) { transition-delay: 0s; }
.usecases-grid .scroll-animate.visible:nth-child(2) { transition-delay: 0.05s; }
.usecases-grid .scroll-animate.visible:nth-child(3) { transition-delay: 0.1s; }
.usecases-grid .scroll-animate.visible:nth-child(4) { transition-delay: 0.15s; }
.usecases-grid .scroll-animate.visible:nth-child(5) { transition-delay: 0.2s; }
.usecases-grid .scroll-animate.visible:nth-child(6) { transition-delay: 0.25s; }
.value-grid .scroll-animate.visible:nth-child(1) { transition-delay: 0s; }
.value-grid .scroll-animate.visible:nth-child(2) { transition-delay: 0.1s; }
.value-grid .scroll-animate.visible:nth-child(3) { transition-delay: 0.2s; }
.value-grid .scroll-animate.visible:nth-child(4) { transition-delay: 0.3s; }
.value-grid .scroll-animate.visible:nth-child(5) { transition-delay: 0.4s; }


/* Content Section (service pages) */
.content-block {
    max-width: 760px;
    margin: 0 auto;
}
.content-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}
.content-block p:last-child {
    margin-bottom: 0;
}
.content-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
}
.content-block .founder-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}
.content-section {
    padding: 100px 0;
}
.content-section .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.content-section h2 { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 24px; }
.content-section h2 .blue { color: var(--blue); }
.content-section p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.content-section p:last-child { margin-bottom: 0; }

/* Branchen Grid */
.branchen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.branchen-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.branchen-card:hover {
    border-color: var(--blue-light);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.branchen-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.branchen-card:hover .branchen-icon {
    transform: scale(1.2) rotate(-5deg);
}
.branchen-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.branchen-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}


/* Article Layout (blog) – wie Startseite: gleiche Schrift, Farben, Abstände */
.article-hero {
    padding: 120px 0 40px;
    background: var(--gradient-hero);
    position: relative;
}
.article-hero .bg-animated {
    z-index: 0;
}
.article-hero .container {
    position: relative;
    z-index: 1;
}
.breadcrumb {
    margin-bottom: 24px;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    color: var(--gray);
}
.breadcrumb-list a {
    color: var(--gray);
    transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--blue); }
.breadcrumb-sep {
    color: var(--gray-light);
    pointer-events: none;
}
.article-header {
    max-width: 750px;
}
.article-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 750px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: var(--gray);
    flex-wrap: wrap;
}
.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-meta-item svg {
    flex-shrink: 0;
}
.article-meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-light);
}

/* Table of Contents – wie Startseite */
.toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 40px auto 48px;
    max-width: 750px;
}
.toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}
.toc-title svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.toc-list,
.toc ol {
    list-style: none;
    counter-reset: toc-counter;
    margin: 0;
    padding: 0;
}
.toc-list li,
.toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 8px;
}
.toc-list li a,
.toc ol li a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: color 0.2s;
    line-height: 1.6;
}
.toc-list li a::before,
.toc ol li a::before {
    content: counter(toc-counter) ".";
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--blue);
    min-width: 20px;
}
.toc-list li a:hover,
.toc ol li a:hover { color: var(--blue); }

/* Article Content – gleiche Schrift/Farben wie Startseite */
.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: 'Sora', sans-serif;
}
.article-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 56px 0 20px;
    padding-top: 16px;
    line-height: 1.2;
}
.article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 14px;
}
.article-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}
.article-content p {
    margin-bottom: 18px;
    color: var(--dark);
    line-height: 1.8;
    font-size: 16px;
}
.article-content strong {
    color: var(--dark);
    font-weight: 600;
}
.article-content ul, .article-content ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
}
.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--dark);
}
.article-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-content a:hover {
    color: var(--blue-dark);
}

/* Price Table */
/* Tabellen (Preis, Vergleiche) */
.price-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    font-size: 15px;
}
.price-table thead th,
.comparison-table thead th {
    background: var(--dark);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.price-table tbody td,
.comparison-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.price-table tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}
.price-table tbody tr.highlight,
.comparison-table tbody tr.highlight {
    background: var(--blue-light);
}
.price-table tbody tr.highlight td,
.comparison-table tbody tr.highlight td {
    font-weight: 500;
}

/* Info / Warning / Feature / Tip Boxes */
.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 28px 0;
}
.info-box p { margin-bottom: 0; font-size: 15px; }
.info-box strong { color: var(--blue-dark); }
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 28px 0;
}
.warning-box p { margin-bottom: 0; font-size: 15px; }
.feature-box {
    background: var(--gradient-hero);
    border: 2px solid var(--blue);
    border-radius: 16px;
    padding: 32px;
    margin: 28px 0;
}
.feature-box h3 {
    color: var(--blue-dark);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}
.feature-box ul { list-style: none; padding: 0; }
.feature-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}
.feature-box li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}
.tip-box {
    background: #ecfdf5;
    border-left: 4px solid var(--success);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 16px 0;
}
.tip-box p { margin-bottom: 0; font-size: 15px; }
.tip-box strong { color: #065f46; }

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin: 56px 0 40px;
    position: relative;
    overflow: hidden;
}
.article-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}
.article-cta h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    -webkit-text-fill-color: white;
}
.article-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 28px;
    position: relative;
}
.article-cta .btn-primary {
    background: white;
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}
.article-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Author Box */
.author-box {
    max-width: 750px;
    margin: 40px auto 0;
    padding: 24px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #f9fafb;
    display: flex;
    gap: 18px;
}
.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}
.author-meta { flex: 1; }
.author-meta h2 { font-size: 18px; margin: 0 0 4px; }
.author-meta p { margin: 0 0 8px; font-size: 14px; color: var(--gray); }
.author-meta ul { margin: 0; padding-left: 18px; }
.author-meta li { font-size: 14px; margin-bottom: 4px; color: #1e293b; }

/* Further Articles */
.further-articles {
    max-width: 750px;
    margin: 0 auto 60px;
    padding: 0 24px;
}
.further-articles h2 { font-size: 24px; margin-bottom: 24px; }
.further-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.further-article-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}
.further-article-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}
.further-article-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.further-article-card p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
.further-article-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-top: 12px;
    text-decoration: none;
}
.further-article-card .read-more svg { width: 14px; height: 14px; }

/* Blog FAQ section (border style) */
.article-content .faq-item,
.faq-list .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.article-content .faq-item:first-of-type,
.faq-list .faq-item:first-of-type {
    border-top: 1px solid var(--border);
}
.article-content .faq-question,
.faq-list .faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    cursor: default;
}
.article-content .faq-answer p,
.faq-list .faq-answer p { margin-bottom: 0; }

/* ========== Über-uns, Kontakt, Rechtliches (Datenschutz/Impressum) ========== */

.hero-content {
    width: 100%;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.values-grid .value-icon {
    font-size: 32px;
    line-height: 1;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 32px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    color: var(--dark);
    max-width: 360px;
}
.contact-info-item svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    display: block;
}

/* Kontaktformular – clean, leicht abgesetzt */
.form-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}
.form-section .container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group .label-optional {
    font-weight: 400;
    color: var(--gray);
}
.form-group .required { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.form-submit {
    margin-top: 28px;
}
.form-submit .btn { width: 100%; justify-content: center; }

.trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 720px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.trust-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    overflow: hidden;
    flex-shrink: 0;
}
.trust-icon svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
}
.trust-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.trust-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Rechtliche Seiten (Datenschutz, Impressum): Nav ohne Container + Content */
.nav > .nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-back {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-back:hover { color: var(--blue); }
.content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.content h1 {
    font-size: 32px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
}
.content h3 {
    font-size: 19px;
    margin: 28px 0 12px;
}
.content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}
.content p:last-of-type { margin-bottom: 0; }
.content ul {
    margin: 0 0 20px;
    padding-left: 24px;
}
.content li { margin-bottom: 8px; line-height: 1.6; color: var(--gray); }
.content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.content a:hover { color: var(--blue-dark); }
.contact-block {
    background: var(--bg-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 20px 0;
}
.contact-block p {
    margin-bottom: 4px;
}
.contact-block p:last-child { margin-bottom: 0; }

/* Footer auf allen Seiten: Links und Text lesbar */
.footer {
    color: rgba(255,255,255,0.85);
}
.footer:not(:has(.footer-inner)) {
    padding: 40px 24px;
    text-align: center;
    font-size: 14px;
}
.footer a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.2s;
}
.footer a:hover { color: white; }

/* Danke-Seite (Thank-you) */
.thankyou {
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
}
.thankyou-content {
    max-width: 560px;
    margin: 0 auto;
}
.checkmark-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkmark-circle svg { width: 44px; height: 44px; }
.thankyou h1 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 16px;
}
.thankyou p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}
.thankyou-link {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 48px;
}
.thankyou-link a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.thankyou-link a:hover { color: var(--blue-dark); }
.trust-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-row .trust-item {
    text-align: center;
    padding: 20px 28px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border);
}
.trust-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.trust-label {
    font-size: 13px;
    color: var(--gray);
}

/* 404-Seite */
.error-section {
    padding: 100px 0 120px;
    position: relative;
    text-align: center;
}
.error-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(120px, 25vw, 240px);
    font-weight: 800;
    color: var(--blue-light);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
.error-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.error-content h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}
.error-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}
.error-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}
.error-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.error-link:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 12px var(--blue-glow);
}
.error-link svg { width: 18px; height: 18px; color: var(--blue); }

/* ========== Neue Service/Branchen Pages: Fehlende Klassen ========== */

/* Nav: logo (einfache Variante) */
.nav .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav .logo span { color: var(--dark); }

/* Nav: nav-links (Listenversion) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links li a {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}
.nav-links li a:hover { color: var(--dark); }
.nav-links li a:hover::after { width: 100%; }
.nav-links .nav-cta a,
.nav-links a.nav-cta {
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta a:hover,
.nav-links a.nav-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    color: white;
}
.nav-links .nav-cta a::after,
.nav-links a.nav-cta::after { display: none; }

/* Hero: hero-inner, hero-sub, hero-ctas, hero-trust */
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}
.hero-inner h1 {
    font-size: clamp(32px, 4.5vw, 50px);
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Section helpers */
.bg-light { background: var(--bg-light); }
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}
.section-sub {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Pricing includes list */
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    text-align: left;
}
.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--dark);
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* Service links grid (Weitere Leistungen) */
.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
}
.service-link:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 4px 14px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}

/* Footer: neue Variante (footer-brand, footer-links mit h4) */
.footer-brand .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}
.footer-brand .logo span { color: white; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ========== Blog Article: Missing Components ========== */

/* format-table = alias for comparison-table */
.format-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    font-size: 15px;
    font-family: 'Sora', sans-serif;
}
.format-table thead th {
    background: var(--dark);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.format-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}
.format-table tbody tr:nth-child(even) { background: var(--bg-light); }
.format-table tbody tr:hover { background: var(--blue-light); transition: background 0.2s; }

/* Stat cards (statistics) */
.stat-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}
.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}
.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Highlight box (neutral callout) */
.highlight-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.highlight-box p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--dark);
}
.highlight-box strong { color: var(--blue-dark); }

/* Pro / Con grid */
.procon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0 32px;
}
.procon-card {
    border-radius: 14px;
    padding: 24px;
    border: 1px solid transparent;
}
.procon-card.pro {
    background: #ecfdf5;
    border-color: #6ee7b7;
}
.procon-card.con {
    background: #fef2f2;
    border-color: #fca5a5;
}
.procon-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}
.procon-card.pro h3 { color: #065f46; }
.procon-card.con h3 { color: #991b1b; }
.procon-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.procon-card li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.procon-card.pro li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; }
.procon-card.con li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* CTA Box (inline) */
.cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
    border-radius: 16px;
    padding: 36px 32px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    top: -80px;
    right: -40px;
    pointer-events: none;
}
.cta-box h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
    -webkit-text-fill-color: white;
    position: relative;
}
.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
}
.cta-box .btn-primary {
    background: white;
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}
.cta-box .btn-primary:hover { background: var(--bg-light); transform: translateY(-2px); }
.cta-box-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 20px;
    position: relative;
}
.cta-box-feature {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cta-box-feature::before { content: '✓'; color: #34d399; font-weight: 700; }

/* Inline CTA (smaller, in content flow) */
.inline-cta {
    background: var(--blue-light);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.inline-cta p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--dark);
    min-width: 200px;
}
.inline-cta .btn { flex-shrink: 0; }

/* Related articles / Service cards */
.related-section,
.services-section {
    margin: 48px 0 32px;
}
.related-title,
.services-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}
.related-grid,
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.related-card,
.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.25s ease;
    display: block;
}
.related-card:hover,
.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}
.related-card h3,
.service-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.related-card p,
.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}
.related-card-link { text-decoration: none; color: inherit; }
.related-card-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Strategy / Step cards */
.strategy-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}
.strategy-card:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(37,99,235,0.08);
}
.strategy-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.strategy-card h3 { font-size: 17px; margin-bottom: 8px; }
.strategy-card p { font-size: 14px; color: var(--gray); margin: 0; line-height: 1.6; }

/* Video structure timeline */
.video-structure {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.video-structure-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: white;
    transition: background 0.2s;
}
.video-structure-item:last-child { border-bottom: none; }
.video-structure-item:hover { background: var(--bg-light); }
.video-structure-time {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    min-width: 80px;
    background: var(--blue-light);
    padding: 4px 10px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}
.video-structure-text {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

/* Checklist / Error list */
.checklist,
.error-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.checklist li,
.error-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    line-height: 1.6;
}
.checklist li:last-child,
.error-list li:last-child { border-bottom: none; }
.checklist li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.error-list li::before {
    content: '✗';
    color: #dc2626;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive: blog components */
@media (max-width: 1024px) {
    .branchen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stat-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .procon-grid { grid-template-columns: 1fr; }
    .related-grid, .services-grid { grid-template-columns: 1fr; }
    .inline-cta { flex-direction: column; gap: 12px; }
    .article-hero { padding: 100px 0 32px; }
    .article-hero h1 { font-size: 28px; }
    .toc { padding: 20px 24px; margin: 28px 24px 36px; }
    .article-content h2 { font-size: 24px; }
    .article-content h3 { font-size: 19px; }
    .price-table { font-size: 13px; }
    .price-table thead th, .price-table tbody td { padding: 10px 12px; }
    .article-cta { padding: 36px 24px; margin: 40px 0 32px; }
    .article-cta h2 { font-size: 24px; }
    .further-articles-grid { grid-template-columns: 1fr; }
    .feature-box { padding: 24px 20px; }
    .branchen-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 24px; }
    .trust-signals { grid-template-columns: 1fr; margin-top: 32px; padding-top: 32px; }
    .contact-info { flex-direction: column; align-items: center; }
    .content { padding: 32px 20px 60px; }
    .content h1 { font-size: 26px; }
    .trust-row { gap: 20px; }
    .thankyou { padding: 100px 24px 80px; }
    .error-section { padding: 80px 24px 100px; }
    .error-links { flex-direction: column; align-items: center; }
}

/* ========== Tech-Stack Grid (Karriere, Über uns) ========== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.tech-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.tech-item:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.tech-emoji {
    font-size: 18px;
    flex-shrink: 0;
}
.tech-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin: 28px 0 12px;
}
@media (max-width: 1024px) {
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Glossar ========== */
.glossar-letter {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    margin: 48px 0 16px;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.glossar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.glossar-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.glossar-item:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px var(--blue-glow);
}
.glossar-term {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.glossar-def {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .glossar-grid { grid-template-columns: 1fr; }
    .glossar-letter { font-size: 22px; margin-top: 32px; }
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}
.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--dark);
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}
.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 24px var(--blue-glow);
    transform: translateY(-4px);
}
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.stars {
    font-size: 16px;
    color: #fbbf24;
    letter-spacing: 2px;
}
.rating-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}
.testimonial-author {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-info strong {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}
.author-company {
    font-size: 13px;
    color: var(--gray-light);
}
.testimonial-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    padding: 12px 16px;
    border-radius: 8px;
}
.metric-label {
    font-size: 12px;
    color: var(--blue-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.metric-value {
    font-size: 14px;
    color: var(--blue-dark);
    font-weight: 700;
}
.testimonials-note {
    text-align: center;
    padding: 20px 24px;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}
.testimonials-note p {
    font-size: 14px;
    color: #166534;
}
.testimonials-note a {
    color: var(--blue);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-section h2 {
        font-size: 32px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 24px;
    }
}
