.main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.left-panel {
    background: linear-gradient(180deg, #7a1d86 0%, #62146c 100%);
    padding: 60px 50px;
    color: white;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-panel h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.left-panel .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.infinity-icon {
    font-size: 120px;
    opacity: 0.3;
    margin: 40px 0;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 15px;
    font-size: 24px;
}

.right-panel {
    padding: 60px 50px;
}

.section-header {
    color: #62146c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    border-bottom: 3px solid #62146c;
    padding-bottom: 15px;
}

.nominal-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-icon {
    color: #999;
    cursor: pointer;
    margin-left: 8px;
    font-size: 18px;
}

.nominal-display {
    font-size: 3rem;
    font-weight: bold;
    color: #62146c;
    margin: 25px 0;
    text-align: center;
}

.range-slider {
    width: 100%;
    margin: 30px 0;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #62146c;
    cursor: pointer;
    border-radius: 50%;
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #62146c;
    cursor: pointer;
    border-radius: 50%;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.projection-section {
    background: linear-gradient(135deg, #fff5f8 0%, #f3e5ff 100%);
    border-radius: 15px;
    padding: 35px;
    border: 2px solid #e0b3ff;
}

.projection-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #62146c;
    margin-bottom: 20px;
    text-align: center;
}

.projection-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e0b3ff;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #62146c;
}

@media (max-width: 991px) {
    .left-panel {
        min-height: auto;
        padding: 40px 30px;
    }
    
    .right-panel {
        padding: 40px 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}