﻿* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #171517; color: #e5e5e5; line-height: 1.6; }

.landing-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; position: fixed; top: 0; left: 0; right: 0;
    background: rgba(23, 21, 23, 0.9); backdrop-filter: blur(10px); z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; color: #fff; }
.nav-brand i { color: #6366f1; font-size: 1.75rem; }
.nav-logo { height: 40px; width: auto; max-width: 40px; object-fit: contain; }
.nav-links { display: flex; gap: 1rem; }

.btn { padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3); }
.btn-ghost { color: #9ca3af; }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 5% 80px;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}
.hero-content { max-width: 800px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }
.gradient-text { background: linear-gradient(135deg, #6366f1, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.25rem; color: #9ca3af; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 1.5rem; color: #fff; }
.hero-stats .stat span { font-size: 0.875rem; color: #6b7280; }

.features, .pricing, .cta { padding: 100px 5%; }
.features h2, .pricing h2, .cta h2 { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.pricing-subtitle { text-align: center; color: #9ca3af; margin-bottom: 3rem; }

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; max-width: 1200px; margin: 3rem auto 0;
}
.feature-card {
    background: #1e1c1e; border: 1px solid #2d2b2d; border-radius: 16px;
    padding: 2rem; text-align: center; transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: #6366f1; }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #6366f1, #8b5cf6); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.feature-icon i { font-size: 1.5rem; color: #fff; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: #fff; }
.feature-card p { color: #9ca3af; }

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; max-width: 1000px; margin: 0 auto;
}
.pricing-card {
    background: #1e1c1e; border: 1px solid #2d2b2d; border-radius: 16px;
    padding: 2.5rem; text-align: center; position: relative; transition: all 0.3s;
}
.pricing-card.featured { border-color: #6366f1; transform: scale(1.05); }
.pricing-card .badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: #6366f1; margin-bottom: 1.5rem; }
.pricing-card .price span { font-size: 1rem; color: #6b7280; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-card li { padding: 0.75rem 0; border-bottom: 1px solid #2d2b2d; color: #9ca3af; }
.pricing-card li i { color: #10b981; margin-right: 0.5rem; }
.pricing-card .btn { width: 100%; justify-content: center; }

.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px; max-width: 1200px; margin: 0 auto 100px;
}
.cta p { color: #9ca3af; margin-bottom: 2rem; }

.landing-footer {
    background: #0f0e0f; padding: 3rem 5%;
    border-top: 1px solid #2d2b2d;
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 2rem; }
.footer-brand i { color: #6366f1; }
.footer-logo { height: 32px; width: auto; max-width: 32px; object-fit: contain; }

.footer-sitemap {
    margin-bottom: 2rem;
}

.sitemap-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: start;
}

.sitemap-col {
    flex: 1 1 0;
    min-width: 0;
}

.sitemap-col h4 {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
}

.sitemap-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sitemap-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.sitemap-links a:hover {
    color: #fff;
}

.sitemap-links.sitemap-links-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.footer-copyright {
    color: #4b5563;
    font-size: 0.875rem;
    text-align: center;
}

.features-grid.horizontal {
    display: flex;
    flex-wrap: nowrap;        /* alle in einer Reihe */
    gap: 2rem;                /* Abstand zwischen den Cards */
    padding-bottom: 1rem;     /* für Scrollbar Abstand */
}

.features-grid.horizontal::-webkit-scrollbar {
    height: 6px;
}

.features-grid.horizontal::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.features-grid.horizontal::-webkit-scrollbar-track {
    background: transparent;
}

.features-grid.horizontal .feature-card {
    flex: 1 1 0;      /* alle Cards gleich breit */
    min-width: 0;     /* verhindert Overflow-Probleme */
}

/* Responsive: bei kleinen Screens 2 in einer Reihe */
@media (max-width: 1024px) {
    .features-grid.horizontal {
        flex-wrap: wrap;
    }
    .features-grid.horizontal .feature-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .features-grid.horizontal .feature-card {
        flex: 1 1 100%;
    }
}


@media (max-width: 768px) {
    .landing-nav { padding: 1rem 1.25rem; }
    .nav-brand { font-size: 1.15rem; }
    .nav-links { gap: 0.5rem; }
    .btn { padding: 0.65rem 0.95rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .pricing-card.featured { transform: none; }
    .landing-footer { padding: 2rem 1.25rem; }
    .sitemap-grid {
        flex-direction: column;
        gap: 0.85rem;
    }
    .sitemap-col {
        flex: 0 0 auto;
        padding: 0;
    }
    .sitemap-links.sitemap-links-2col {
        grid-template-columns: 1fr;
    }
}
