.mrpc-calculator {
    max-width: 620px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    font-family: inherit;
}

.mrpc-title {
    margin: 0 0 22px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.mrpc-field {
    margin-bottom: 18px;
}

.mrpc-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.mrpc-field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 42px 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background-color: #fff;
    color: #0f172a;
    font: inherit;
}

.mrpc-field select:focus {
    border-color: #2563eb;
    outline: 3px solid rgba(37, 99, 235, 0.16);
}

.mrpc-field select:disabled {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.mrpc-result {
    margin-top: 24px;
    padding: 20px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.mrpc-result-label,
.mrpc-selection {
    display: block;
}

.mrpc-result-label {
    margin-bottom: 4px;
    color: #334155;
    font-size: 0.95rem;
}

.mrpc-price {
    display: block;
    color: #0f172a;
    font-size: 2rem;
    line-height: 1.1;
}

.mrpc-selection {
    margin-top: 8px;
    color: #475569;
    font-size: 0.9rem;
}

@media (max-width: 520px) {
    .mrpc-calculator {
        padding: 20px;
        border-radius: 12px;
    }
}

.mrpc-result {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mrpc-result[hidden] {
    display: none;
}

.mrpc-result-icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    font-size: 1.8rem;
    line-height: 1;
}

.mrpc-result-content {
    min-width: 0;
}

@media (max-width: 420px) {
    .mrpc-result {
        align-items: flex-start;
    }

    .mrpc-result-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 1.45rem;
    }
}


.mrpc-contact {
    margin-top: 18px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #bd4162;
    color: #ffffff;
}

.mrpc-contact[hidden] {
    display: none;
}

.mrpc-contact h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.25rem;
}

.mrpc-contact ul {
    margin: 0;
    padding-left: 22px;
}

.mrpc-contact li {
    margin: 7px 0;
    line-height: 1.45;
}

.mrpc-contact a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mrpc-contact a:hover,
.mrpc-contact a:focus {
    color: #ffffff;
    text-decoration-thickness: 2px;
}
