        :root {
            --primary: #00338D;
            --primary-dark: #002260;
            --primary-light: #eef3fb;
            --accent: #10b981;
            --accent-dark: #059669;
            --accent-light: #ecfdf5;
            --text-main: #0f172a;
            --text-muted: #475569;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
            --shadow-md: 0 10px 30px rgba(0, 51, 141, 0.08);
            --shadow-lg: 0 20px 45px rgba(0, 51, 141, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; 
            background-color: var(--bg-body); 
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* HEADER / NAV */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav-inner { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            height: 76px;
        }
        .logo { 
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo img { height: 48px; width: auto; }
        
        .nav-links { display: flex; gap: 28px; align-items: center; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--text-muted); 
            font-size: 0.95rem; 
            font-weight: 600; 
            transition: color 0.2s; 
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 700; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            line-height: 1;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 51, 141, 0.25);
        }
        .btn-primary:hover { 
            background: var(--primary-dark); 
            transform: translateY(-2px); 
            box-shadow: 0 6px 20px rgba(0, 51, 141, 0.35); 
        }
        .btn-accent {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
        }
        .btn-accent:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover { 
            background: var(--primary-light); 
            transform: translateY(-2px);
        }

        /* HERO SECTION */
        .hero {
            padding: 90px 0 70px;
            background: radial-gradient(circle at 85% 20%, #e8f0fe 0%, transparent 45%),
                        radial-gradient(circle at 10% 80%, #ecfdf5 0%, transparent 40%),
                        #ffffff;
            border-bottom: 1px solid var(--border);
            position: relative;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .hero-badge span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 48px;
            align-items: center;
        }
        .hero h1 {
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .hero h1 .highlight {
            color: var(--accent);
            position: relative;
        }
        .hero p.lead {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        .hero-actions { 
            display: flex; 
            gap: 16px; 
            flex-wrap: wrap; 
            align-items: center; 
            margin-bottom: 36px; 
        }
        .trust-pills {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
        }
        .trust-item svg { color: var(--accent); flex-shrink: 0; }

        /* HERO PREVIEW CARD (REAL APP MOCKUP) */
        .preview-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            position: relative;
        }
        .preview-app-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f1f5f9;
        }
        .preview-app-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--primary);
        }
        .preview-app-market {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
        }
        .preview-live-badge {
            background: #ecfdf5;
            color: #059669;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 3px 9px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .preview-live-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.2); }
        }

        /* Summary Stats Pills */
        .preview-stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 14px;
        }
        .preview-stat-box {
            padding: 8px 12px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            font-weight: 700;
        }
        .stat-stellplaetze {
            background: #fffbeb;
            border: 1px solid #fef3c7;
            color: #92400e;
            border-left: 3px solid #f59e0b;
        }
        .stat-rollies {
            background: #f0fdf4;
            border: 1px solid #dcfce7;
            color: #166534;
            border-left: 3px solid #10b981;
        }
        .stat-pill-num {
            padding: 2px 8px;
            border-radius: 999px;
            color: white;
            font-weight: 800;
            font-size: 0.8rem;
        }

        /* Rollie Item Cards matching App */
        .app-rollie-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #cbd5e1;
            border-radius: 12px;
            padding: 12px 14px;
            margin-bottom: 10px;
            transition: all 0.2s;
            position: relative;
        }
        .app-rollie-item.selected {
            background: #f8fafc;
            border-color: #cbd5e1;
            border-left-color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 51, 141, 0.08);
        }
        .app-rollie-item.scanner-selected {
            background: #f0fdf4;
            border-color: #bbf7d0;
            border-left-color: var(--accent);
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
        }
        .rollie-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .rollie-num {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 800;
            font-size: 0.92rem;
            color: var(--primary);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .rollie-num.green { color: var(--accent-dark); }
        .rollie-type {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: var(--text-muted);
        }
        .rollie-type.warn {
            color: #d97706;
            background: #fef3c7;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 800;
        }
        .rollie-val {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 800;
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .rollie-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 8px;
        }
        .rollie-tag {
            background: #f1f5f9;
            color: #475569;
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            white-space: nowrap;
        }
        .rollie-tag strong { color: var(--primary); }

        .rollie-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.7rem;
            color: var(--text-muted);
            border-top: 1px dashed #f1f5f9;
            padding-top: 6px;
        }
        .meta-badges { display: flex; gap: 6px; align-items: center; }
        .source-badge {
            font-size: 0.65rem;
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 4px;
        }
        .source-scanner {
            background: #ecfdf5;
            color: #059669;
            border: 1px solid #a7f3d0;
        }
        .source-manual {
            background: #eff6ff;
            color: #2563eb;
            border: 1px solid #bfdbfe;
        }

        /* Checkbox Icon */
        .check-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 900;
            color: white;
            flex-shrink: 0;
        }
        .check-circle.checked-green {
            background: var(--accent);
            border-color: var(--accent);
        }
        .check-circle.checked-blue {
            background: var(--primary);
            border-color: var(--primary);
        }

        /* Bottom Action Bar */
        .mockup-checkout-bar {
            margin-top: 14px;
            padding: 12px 14px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .checkout-bar-left {
            font-size: 0.75rem;
        }
        .checkout-bar-left strong {
            display: block;
            font-size: 0.9rem;
            font-weight: 800;
        }
        .checkout-btn-mini {
            background: var(--accent);
            color: white;
            border: none;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* PROBLEM VS LÖSUNG */
        .comparison-banner {
            padding: 80px 0;
            background: #ffffff;
            border-bottom: 1px solid var(--border);
        }
        .section-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 50px;
        }
        .section-tag {
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 12px;
            display: block;
        }
        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--primary);
            line-height: 1.25;
            margin-bottom: 16px;
        }
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .versus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .versus-card {
            padding: 36px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
        }
        .versus-card.bad {
            background: #fff5f5;
            border-color: #fed7d7;
        }
        .versus-card.good {
            background: #f0fdf4;
            border-color: #bbf7d0;
            box-shadow: var(--shadow-sm);
        }
        .versus-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .versus-card.bad .versus-title { color: #c53030; }
        .versus-card.good .versus-title { color: #15803d; }
        
        .versus-list { list-style: none; }
        .versus-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 1rem;
            font-weight: 500;
        }
        .versus-card.bad .versus-list li { color: #742a2a; }
        .versus-card.good .versus-list li { color: #166534; font-weight: 600; }
        .versus-icon { font-size: 1.2rem; flex-shrink: 0; }

        /* PRAXIS FEATURES */
        .features-section {
            padding: 90px 0;
            background: var(--bg-body);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .feature-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 32px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .feature-box:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
        }
        .feature-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .feature-box h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .feature-box p {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.6;
        }

        /* 3-SCHRITTE ABLAUF */
        .steps-section {
            padding: 90px 0;
            background: #ffffff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .steps-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 50px;
            position: relative;
        }
        .step-item {
            text-align: center;
            position: relative;
            padding: 20px;
        }
        .step-bubble {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            margin: 0 auto 24px;
            box-shadow: 0 4px 14px rgba(0, 51, 141, 0.25);
        }
        .step-item h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .step-item p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* TESTIMONIALS / PRAXIS */
        .quotes-section {
            padding: 90px 0;
            background: var(--bg-body);
        }
        .quotes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .quote-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-sm);
        }
        .quote-stars { color: #f59e0b; margin-bottom: 16px; font-size: 1.1rem; }
        .quote-text {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .quote-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
        }
        .author-info h4 { font-size: 0.95rem; font-weight: 800; color: var(--primary); }
        .author-info p { font-size: 0.8rem; color: var(--text-muted); }

        /* CTA SECTION */
        .cta-box {
            background: linear-gradient(135deg, var(--primary) 0%, #001f5c 100%);
            color: white;
            border-radius: var(--radius-lg);
            padding: 60px 48px;
            text-align: center;
            margin: 60px 0;
            box-shadow: var(--shadow-lg);
        }
        .cta-box h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .cta-box p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto 36px;
            line-height: 1.6;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* FOOTER */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 40px;
            font-size: 0.95rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }
        .footer-brand h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .footer-brand p {
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 320px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .hero-grid { grid-template-columns: 1fr; }
            .versus-grid { grid-template-columns: 1fr; }
            .steps-row { grid-template-columns: 1fr; gap: 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-links { display: none; }
        }
        @media (max-width: 640px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .cta-box { padding: 40px 24px; }
        }

/* Extracted inline classes for CSP compliance */
.nav-login-link { color: var(--primary) !important; font-weight: 700 !important; }
.btn-hero-primary { padding: 16px 32px !important; font-size: 1.05rem !important; }
.btn-hero-outline { padding: 16px 28px !important; font-size: 1.05rem !important; }
.indicator-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.stat-pill-warning { background: #f59e0b !important; }
.stat-pill-success { background: #10b981 !important; }
.stat-card-subtitle { font-size: 0.72rem; text-transform: uppercase; font-weight: 800; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; }
.rollie-num-main { color: var(--text-main) !important; }
.rollie-status-stored { font-size: 0.68rem; color: #94a3b8; }
.rollie-selected-label { opacity: 0.85; }
.btn-cta-accent { padding: 16px 36px !important; font-size: 1.1rem !important; }
.btn-cta-outline { color: white !important; border-color: white !important; padding: 16px 32px !important; font-size: 1.1rem !important; }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }

/* Content Card styling for legal pages */
.legal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 48px;
    margin: 48px 0;
    box-shadow: var(--shadow-sm);
}
.legal-card h1 { font-size: 2rem; font-weight: 800; margin-bottom: 24px; color: var(--text-main); }
.legal-card h2 { font-size: 1.3rem; font-weight: 700; margin-top: 32px; margin-bottom: 16px; color: var(--text-main); }
.legal-card p, .legal-card li { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.legal-card ul { padding-left: 24px; margin-bottom: 24px; }

/* FAQ (shared across landing pages) */
.faq-section { padding: 60px 0 90px; }
.faq-header { text-align: center; max-width: 650px; margin: 0 auto 48px; }
.faq-header h2 { font-size: 2.25rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.faq-header p { color: var(--text-muted); font-size: 1.05rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.faq-item h4 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 760px) {
    .faq-grid { grid-template-columns: 1fr; }
}
