/* ==========================================================================
   STATISTICS - METHODOLOGY
   ========================================================================== */

.method-page {
    padding: 8rem 10% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
}

.method-header {
    text-align: center;
    margin-bottom: 4rem;
}

.method-intro {
    text-align: center;
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.rating-system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
    width: 100%;
    margin-bottom: 4rem;
}

.method-card {
    padding: 2.5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-box.main { background: rgba(16, 185, 129, 0.2); color: #10b981; } /* Grün */
.icon-box.sub { background: rgba(59, 130, 246, 0.2); color: #3b82f6; } /* Blau */

.card-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.method-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.method-tag.main { background: #10b981; color: white; }
.method-tag.sub { background: rgba(255,255,255,0.1); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.2); }

.check-list {
    list-style: none;
    margin-top: auto; 
    padding-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.check-list li i {
    color: var(--accent);
}

.visual-score {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    border: 1px dashed #10b981;
}

.score-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
}

.sub-rating-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 2rem 0;
}

.sub-pill {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.methodology-section {
    width: 100%;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 30px;
}

.scale-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scale-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 15px;
}

.scale-num {
    font-weight: 800;
    font-size: 1.2rem;
    width: 60px;
    text-align: center;
}

.scale-num.high { color: #10b981; }
.scale-num.good { color: #3b82f6; }
.scale-num.mid { color: #f59e0b; }
.scale-num.low { color: #ef4444; }

@media (max-width: 768px) {
    .rating-system-grid {
        grid-template-columns: 1fr; 
    }
}

/* SIMULATOR STYLES */

:root {
    --sim-bg-low: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(0, 0, 0, 0.4));
    --sim-bg-mid: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(0, 0, 0, 0.4));
    --sim-bg-high: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 0, 0, 0.4));
}

.simulator-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--sim-bg-high);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem auto; 
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.sim-header {
    margin-bottom: 2rem;
}

.sim-display {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.huge-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-container {
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.huge-number.animating {
    transform: scale(1.1);
}

.sim-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    min-height: 2rem;
    opacity: 0.9;
}

.sim-label.animating {
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.9; transform: translateY(0); }
}

.slider-container {
    width: 100%;
    max-width: 500px; 
}

.tech-slider {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    outline: none;
}

.tech-slider:active {
    cursor: grabbing;
}

.tech-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 20px currentColor;
    border: 2px solid currentColor;
}

.tech-slider:active::-webkit-slider-thumb {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.2), 0 0 30px currentColor;
}

.tech-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    cursor: grab;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1), 0 0 20px currentColor;
    border: none;
    transition: all 0.2s ease;
}

.tech-slider:active::-moz-range-thumb {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.2), 0 0 30px currentColor;
}

.slider-track-marks {
    display: flex;
    justify-content: space-between;
    padding: 12px 5px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Low (1-4) - red */
.score-low { color: #ff4757 !important; text-shadow: 0 0 30px rgba(255, 71, 87, 0.6) !important; }
/* Mid (5-7) - orange */
.score-mid { color: #ffa502 !important; text-shadow: 0 0 30px rgba(255, 165, 2, 0.6) !important; }
/* High (8-10) - green */
.score-high { color: #2ed573 !important; text-shadow: 0 0 30px rgba(46, 213, 115, 0.6) !important; }