* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Banner - siehe banner.php */

/* Intro Section */
.intro {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.intro h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-login {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(196, 30, 58, 0.5);
    background: linear-gradient(135deg, #d42a46 0%, #b01e38 100%);
}

.btn-preise {
    display: inline-block;
    background: #fff;
    color: #c41e3a;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #c41e3a;
    margin-left: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-preise:hover {
    background: #c41e3a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4);
}

@media (max-width: 600px) {
    .intro .btn-login,
    .intro .btn-preise {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        max-width: 280px;
    }
    
    .btn-preise {
        margin-left: 0;
    }
}

/* Features Section */
.features-wrapper {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #c41e3a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #2d3436;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .banner {
        aspect-ratio: 3 / 1;
        min-height: 120px;
    }
    
    .intro h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .features {
        padding: 2rem 1rem;
    }
}
