/* Usunięto formatowanie body, aby kalkulator ładnie dziedziczył otoczenie z Twojej strony */

.ucon-calculator-wrapper {
    /* Tło skopiowane z Twojej głównej strony (identyczne z hero/footer) */
    background: radial-gradient(circle at 85% 50%, rgba(20,93,255,.35), transparent 25%), linear-gradient(90deg, #031120 0%, #071827 50%, #08111d 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 16px; /* Zwiększony promień, by pasował do nowoczesnego stylu Ucon */
    font-family: 'Inter', sans-serif; /* Dopasowano czcionkę */
    width: 100%;
    max-width: 550px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    box-sizing: border-box;
    margin: 0 auto;
}

.ucon-header h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.ucon-header p {
    color: #b8c7de;
    font-size: 1rem;
    margin-bottom: 30px;
}

.ucon-input-group {
    margin-bottom: 24px;
}

.ucon-input-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
    color: #d6e1f2;
}

.ucon-input-group label span {
    color: #145dff; /* Twój kolor primary */
    font-weight: 700;
}

input[type=range] {
    width: 100%;
    accent-color: #145dff;
}

.ucon-result {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ucon-result h3 {
    margin: 0;
    font-weight: 500;
    color: #b8c7de;
}

.ucon-total {
    font-size: 3rem;
    font-weight: 800;
    color: #ff4757; /* Czerwony dla ostrzeżenia o kosztach */
    margin: 10px 0;
}

.ucon-disclaimer {
    font-size: 0.9em;
    color: #888888;
    margin-bottom: 30px;
}

/* --- Sekcja Lead Magnet --- */
.ucon-lead-magnet {
    text-align: center;
}

.ucon-btn-primary {
    background: #145dff;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
    box-shadow: 0 10px 25px rgba(20,93,255,.25);
}

.ucon-btn-primary:hover {
    background: #0d46cc;
}

.ucon-hidden {
    display: none !important;
}

#lead-form {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#lead-form p {
    font-size: 0.9rem;
    color: #b8c7de;
    margin-top: 0;
    margin-bottom: 15px;
}

#lead-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: inherit;
    box-sizing: border-box;
}

#lead-form input::placeholder {
    color: #888;
}

#lead-form input:focus {
    outline: none;
    border-color: #145dff;
}

.ucon-btn-submit {
    background: #fff;
    color: #031120;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.ucon-btn-submit:hover {
    background: #f1f5f9;
}