.stepupcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stepupheader {
    margin-bottom: 30px;
}

.stepupheader h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.stepupcalculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.stepupcalculator-panel {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stepupinput-group {
    margin-bottom: 25px;
}

.stepupinput-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.stepupinput-container {
    position: relative;
}

.stepupcurrency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: 600;
    z-index: 1;
}

.stepupinput-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.stepupinput-field:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.stepupinput-field.with-currency {
    padding-left: 35px;
}

.stepupinput-field.percentage::after {
    content: '%';
}

.stepupslider-container {
    margin-top: 10px;
}
/*
.stepupslider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.stepupslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 10%;
    background: #457ffd !important;
    cursor: pointer;    
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stepupslider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
*/
.stepupvalue-display {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 10px;
}

.stepupchart-container {
    position: relative;
    height: 300px;
    margin: 20px 0;
}

.stepupchart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.stepuplegend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepuplegend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.stepupresults-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stepupresults-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stepupresult-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.stepupresult-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.stepupresult-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.stepupinvest-button {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stepupinvest-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.stepupsidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stepupetf-promo {
    text-align: center;
    margin-bottom: 25px;
}

.stepupetf-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stepupetf-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.stepupetf-description {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

.stepupcalculators-list {
    margin-top: 25px;
}

.stepupcalculators-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.stepupcalculator-link {
    display: block;
    padding: 8px 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.stepupcalculator-link:hover {
    color: #10b981;
}

.stepupmain-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .stepupmain-content {
        grid-template-columns: 1fr;
    }
    
    .stepupcalculator-wrapper {
        grid-template-columns: 1fr;
    }

    .stepupresults-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stepupcontainer {
        padding: 15px;
    }
    
    .stepupcalculator-panel, .stepupresults-section, .stepupsidebar {
        padding: 20px;
    }
    
    .stepupheader h1 {
        font-size: 1.5rem;
    }
}