/* Clean & Light-Cloud Design passend zum Logo */
body {
    background-color: #f3f5f9;
    color: #2c3e50;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Status Bar */
.status-bar {
    background: #0f172a;
    color: #34d399;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* FIX: Banner kleiner gemacht und zentriert */
.hero-banner {
    width: 100%;
    background-color: #e2e8f0; /* Hintergrund falls das Bild lädt */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    max-width: 1200px; /* Begrenzt die Breite auf großen Bildschirmen */
    height: auto;
    max-height: 280px;  /* FIX: Deutlich flacherer, angenehmerer Banner */
    object-fit: cover;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 50px;
}

.profile-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: white;
    border: 4px solid white;
}

h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-top: 15px;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Stats Styles */
.stats-container {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #e0e7ff, #e0f2fe);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.stat-card { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #2563eb; }
.stat-label { font-size: 0.9rem; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; }

/* Guide / Steps Styles */
.guide-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .steps-grid { flex-direction: column; }
}

.step {
    flex: 1;
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: #2563eb;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.step h4 { margin: 0 0 8px 0; color: #1e293b; }
/* FIX: Verhindert, dass langer Code ausbricht oder Text überlappt */
.step p { 
    margin: 0; 
    color: #64748b; 
    font-size: 0.9rem; 
    word-break: break-word; 
}

/* Feature Karten */
.features {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .features { flex-direction: column; }
}

.card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.2s;
}

.card:hover { transform: translateY(-5px); }
.card h3 { margin-top: 0; color: #3b82f6; }

/* Pricing Styles */
.pricing-box {
    margin-bottom: 40px;
}

.pricing-table {
    display: flex;
    justify-content: center;
}

.price-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    max-width: 350px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 2px solid #3b82f6;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
}

.price-card h3 { margin: 10px 0; color: #1e293b; }
.price { font-size: 2.5rem; font-weight: 800; color: #2563eb; margin: 15px 0; }
.price span { font-size: 1rem; color: #64748b; font-weight: normal; }
.price-card ul { text-align: left; padding: 0; list-style: none; margin: 20px 0 0 0; }
.price-card li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.95rem; }
.price-card li:last-child { border: none; }

/* Befehle Sektion */
.commands-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

/* FIX: Macht die Befehlszeilen flexibel für Handys (bricht untereinander um) */
.command {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    gap: 15px;
}

@media (max-width: 768px) {
    .command {
        flex-direction: column;
        align-items: flex-start;
    }
}

.command:last-child { border: none; }

code {
    background: #f1f5f9;
    color: #2563eb;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 0.95rem;
    max-width: 100%;
    display: inline-block;
    white-space: pre-wrap; /* Erlaubt Zeilenumbruch im Code-Block */
    word-break: break-all;
}

.command p { margin: 0; color: #64748b; }

/* FAQ Styles */
.faq-container {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    text-align: left;
}

.faq-item { margin-bottom: 25px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
.faq-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.faq-item h4 { font-size: 1.15rem; color: #1e293b; margin: 0 0 8px 0; }
.faq-item p { color: #64748b; margin: 0; font-size: 0.95rem; line-height: 1.5; }

/* Footer Styles */
footer {
    text-align: center;
    padding: 30px;
    background: #1e293b;
    color: #f8fafc;
}

.footer-content { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-links a { color: #94a3b8; text-decoration: none; margin: 0 10px; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: #3b82f6; }

/* Legal Pages (tos.html & privacy.html) */
.legal-page { background: white; padding: 40px; border-radius: 20px; margin: 40px auto; max-width: 700px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-page h1 { color: #1e293b; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }
.legal-page h3 { color: #2563eb; margin-top: 30px; }
.legal-page p { line-height: 1.6; color: #475569; }
.back-btn { display: inline-block; margin-top: 20px; color: #2563eb; text-decoration: none; font-weight: bold; }