/* IMPACT SECTION PREMIUM OVERRIDE */

.impact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.impact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.impact-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
}

.impact-text p {
    font-size: 1.1rem;
    color: #aeaeae;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Right Content: Calculator Card */
.impact-calculator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.card-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.input-wrapper {
    margin-bottom: 30px;
}

.revenue-display {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
    /* Tech feel */
    margin-bottom: 10px;
    display: block;
}

/* Slider Styling */
.impact-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 5px;
    outline: none;
    transition: 0.2s;
}

.impact-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.5);
    border: 3px solid #000;
}

/* Results Area */
.calc-result {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 10px;
}

.lost-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
}

.lost-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .impact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .impact-text h2 {
        font-size: 2.2rem;
    }
}