.step .calculator-form {
    display: grid;
    gap: 25px;
}

.step .form-group {
    position: relative;
}

.step .range-value {
    text-align: center;
    font-weight: 600;
    color: #667eea;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.step .results {
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    display: none;
    animation: fadeInUp 0.5s ease;
}

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

.step .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.step .result-item:last-child {
    margin-bottom: 0;
}

.step .result-label {
    font-weight: 600;
    font-size: 1.1em;
}

.step .result-value {
    font-size: 1.3em;
    font-weight: 700;
    text-align: right;
}

.step .breakdown {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.step .breakdown h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
    text-align: center;
}

.step .breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.step .error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .step h1 {
        font-size: 2em;
    }
    
    .step .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step .result-value {
        text-align: center;
        margin-top: 10px;
    }
}