/* ============================================ */
/* DIENSTWAGEN & FIRMENWAGEN RECHNER 2026 CSS */
/* ============================================ */

/* Base Styles */
body { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    min-height: 100vh; 
}

/* Calculator Container */
.calculator-container { 
    background: white; 
    padding: 2rem; 
    border-radius: 15px; 
    margin-bottom: 2rem; 
}

/* Input Section */
.input-section { 
    background: #f9fafb; 
    padding: 2rem; 
    border-radius: 12px; 
    margin-bottom: 2rem; 
}

.input-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.input-group { 
    margin-bottom: 0; 
}

.input-group label { 
    display: block; 
    font-weight: 600; 
    color: #333; 
    margin-bottom: 0.5rem; 
}

.input-group input, 
.input-group select { 
    width: 100%; 
    padding: 0.75rem; 
    font-size: 1rem; 
    border: 2px solid #667eea; 
    border-radius: 8px; 
    outline: none; 
    transition: all 0.3s ease; 
    box-sizing: border-box; 
}

.input-group input:focus, 
.input-group select:focus { 
    border-color: #764ba2; 
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 
}

.input-group small { 
    display: block; 
    color: #666; 
    margin-top: 0.25rem; 
    font-size: 0.875rem; 
}

/* Mobile Responsive */
@media (max-width: 768px) { 
    .input-grid { 
        grid-template-columns: 1fr; 
    } 
}

/* Calculate Button */
.btn-calculate { 
    width: 100%; 
    padding: 1rem 2rem; 
    font-size: 1.1rem; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    margin-top: 1rem; 
}

.btn-calculate:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4); 
}

/* Result Container */
.result-container { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 2rem; 
    border-radius: 15px; 
    margin-bottom: 2rem; 
    display: none; 
}

.result-container.active { 
    display: block; 
    animation: fadeIn 0.5s ease; 
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

.result-main { 
    text-align: center; 
    padding: 2rem 0; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); 
    margin-bottom: 2rem; 
}

.result-label { 
    font-size: 1.2rem; 
    opacity: 0.9; 
    margin-bottom: 0.5rem; 
}

.result-value { 
    font-size: 3rem; 
    font-weight: bold; 
}

.result-details { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1.5rem; 
}

.detail-item { 
    background: rgba(255, 255, 255, 0.1); 
    padding: 1rem; 
    border-radius: 8px; 
}

.detail-label { 
    font-size: 0.9rem; 
    opacity: 0.8; 
    margin-bottom: 0.25rem; 
}

.detail-value { 
    font-size: 1.3rem; 
    font-weight: 600; 
}

/* Info Boxes */
.info-box { 
    background: #f0f4ff; 
    padding: 1.5rem; 
    border-radius: 12px; 
    border-left: 4px solid #667eea; 
    margin: 1.5rem 0; 
}

.info-box h3, 
.info-box h4 { 
    color: #667eea; 
    margin-bottom: 0.75rem; 
    margin-top: 0; 
}

.warning-box { 
    background: #fff3cd; 
    padding: 1.5rem; 
    border-radius: 12px; 
    border-left: 4px solid #ffc107; 
    margin: 1.5rem 0; 
}

.success-box { 
    background: #d4edda; 
    padding: 1.5rem; 
    border-radius: 12px; 
    border-left: 4px solid #28a745; 
    margin: 1.5rem 0; 
}

/* SEO Content */
.seo-content { 
    background: white; 
    padding: 2rem; 
    border-radius: 15px; 
    margin-bottom: 2rem; 
    line-height: 1.8; 
}

.seo-content h2 { 
    color: #667eea; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
    font-size: 1.8rem; 
}

.seo-content h3 { 
    color: #764ba2; 
    margin-top: 1.5rem; 
    margin-bottom: 0.75rem; 
    font-size: 1.4rem; 
}

.seo-content p { 
    margin-bottom: 1rem; 
    color: #444; 
}

.seo-content ul, 
.seo-content ol { 
    margin-left: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.seo-content li { 
    margin-bottom: 0.5rem; 
    color: #444; 
}

/* Highlight Box */
.highlight-box { 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%); 
    padding: 1.5rem; 
    border-radius: 10px; 
    margin: 1.5rem 0; 
    border-left: 4px solid #667eea; 
}

/* Comparison Table */
.comparison-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 1.5rem 0; 
    background: white; 
    border-radius: 8px; 
    overflow: hidden; 
}

.comparison-table th { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 1rem; 
    text-align: left; 
    font-weight: 600; 
}

.comparison-table td { 
    padding: 1rem; 
    border-bottom: 1px solid #e0e0e0; 
}

.comparison-table tr:nth-child(even) { 
    background: #f9fafb; 
}

.comparison-table tr:hover { 
    background: rgba(102, 126, 234, 0.05); 
}

/* FAQ Items */
.faq-item { 
    margin-bottom: 1.5rem; 
    padding: 1.5rem; 
    background: #f9fafb; 
    border-radius: 8px; 
    border-left: 3px solid #667eea; 
}

.faq-question { 
    font-weight: 600; 
    color: #667eea; 
    margin-bottom: 0.5rem; 
    font-size: 1.1rem; 
}

.faq-answer { 
    color: #555; 
    line-height: 1.7; 
}

/* Badges */
.badge { 
    display: inline-block; 
    padding: 0.25rem 0.75rem; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    font-weight: 600; 
}

.badge-new { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
}

.badge-update { 
    background: #28a745; 
    color: white; 
}

/* Quick Compare Cards */
.quick-compare { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    margin: 2rem 0; 
}

.quick-compare-card { 
    background: white; 
    border-radius: 12px; 
    padding: 1.5rem; 
    border: 2px solid #e0e0e0; 
    transition: all 0.3s ease; 
}

.quick-compare-card:hover { 
    border-color: #667eea; 
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2); 
}

.quick-compare-card.highlight { 
    border-color: #28a745; 
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%); 
}

.card-header { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
}

.card-icon { 
    font-size: 2rem; 
}

.card-title { 
    font-weight: 700; 
    color: #333; 
}

.card-subtitle { 
    font-size: 0.9rem; 
    color: #666; 
}

.card-value { 
    font-size: 2rem; 
    font-weight: 700; 
    color: #667eea; 
    margin: 0.5rem 0; 
}

.card-value.green { 
    color: #28a745; 
}

.card-description { 
    font-size: 0.9rem; 
    color: #666; 
}

/* Trust Signals */
.trust-signals { 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    flex-wrap: wrap; 
    margin: 1.5rem 0; 
    padding: 1rem; 
    background: rgba(102, 126, 234, 0.05); 
    border-radius: 10px; 
}

.trust-item { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.95rem; 
    color: #555; 
}

.trust-icon { 
    color: #28a745; 
    font-weight: bold; 
}