.leasing-calculator {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
}

.leasing-calc__header {
    margin-bottom: 1.25rem;
}

.leasing-calc__title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.leasing-calc__disclaimer {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

.leasing-calc__term-section {
    margin-bottom: 1.25rem;
}

.leasing-calc__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.leasing-calc__slider-wrap {
    padding: 4px 0;
}

.leasing-calc__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    outline: none;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
}

.leasing-calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0e84f9;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: -9px;
}

.leasing-calc__slider::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 2px;
}

.leasing-calc__slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0e84f9;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.leasing-calc__slider::-moz-range-track {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}

.leasing-calc__slider-labels {
    display: flex;
    justify-content: space-between;
}

.leasing-calc__slider-label {
    font-size: 0.78rem;
    color: #aaa;
    cursor: pointer;
    user-select: none;
    transition: color 0.1s;
}

.leasing-calc__slider-label.is-active {
    color: #0e84f9;
    font-weight: 600;
}

.leasing-calc__result {
    margin-bottom: 1.5rem;
}

.leasing-calc__monthly-label {
    display: block;
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 0.15rem;
}

.leasing-calc__monthly-price {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.leasing-calc__breakdown {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: #999;
}

.leasing-calc__breakdown span span {
    color: #555;
    font-weight: 600;
}

.leasing-calc__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 540px) {
    .leasing-calc__fields {
        grid-template-columns: 1fr;
    }
}

.leasing-calc__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.leasing-calc__field input {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    box-sizing: border-box;
    background: #fff;
    color: inherit;
}

.leasing-calc__field input:focus {
    outline: 2px solid #333;
    outline-offset: 1px;
    border-color: transparent;
}

.leasing-calc__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s;
}

.leasing-calc__submit:hover {
    background: #111;
}

.leasing-calc__submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.leasing-calc__consent {
    margin: 0.6rem 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: #999;
}

.leasing-calc__consent a {
    color: #777;
}

.leasing-calc__form-message {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    min-height: 1.25em;
}

.leasing-calc__form-message.is-success {
    color: #1a7a1a;
}

.leasing-calc__form-message.is-error {
    color: #b00;
}
