.cost-estimator-page-shell .bill-review-results-root {
    background:
        radial-gradient(circle at top right, rgba(32, 147, 250, 0.10), transparent 34%),
        #fcfdff;
}

.cost-estimator-field {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.cost-estimator-field span {
    color: #102a43;
    font-size: 0.9rem;
    font-weight: 800;
}

.cost-estimator-field input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--lte-border);
    border-radius: 14px;
    background: #f9fbff;
    color: #102a43;
    font: inherit;
    font-weight: 700;
    padding: 0 14px;
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cost-estimator-field input:focus {
    border-color: #9dbbe3;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 76, 172, 0.08);
}

.cost-estimator-edit-btn {
    width: 100%;
    margin-top: 10px;
}

.cost-estimator-results h2 {
    margin: 0 0 10px;
    color: #102a43;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.cost-estimator-stat-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
    gap: 14px;
}

.cost-estimator-primary-card,
.cost-estimator-range-card {
    border: 1px solid #e3edf8;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    padding: 20px;
}

.cost-estimator-primary-card {
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.cost-estimator-primary-card span,
.cost-estimator-range-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--lte-text-soft);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cost-estimator-primary-card strong,
.cost-estimator-range-card strong {
    display: block;
    color: #102a43;
    font-size: clamp(1.35rem, 3vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.cost-estimator-primary-card p,
.cost-estimator-range-card p {
    margin: 12px 0 0;
    color: var(--lte-text-soft);
    line-height: 1.6;
}

.cost-estimator-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cost-estimator-alert {
    border: 1px solid rgba(217, 93, 79, 0.26);
    border-radius: 18px;
    background: #fff8f7;
    padding: 16px 18px;
}

.cost-estimator-alert strong {
    color: #b42318;
}

.cost-estimator-alert p {
    margin: 8px 0 0;
    color: #7a3a33;
    line-height: 1.6;
}

.cost-estimator-source-list {
    display: grid;
    gap: 8px;
}

.cost-estimator-source-list a {
    color: var(--lte-primary);
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.cost-estimator-source-list a:hover {
    text-decoration: underline;
}

.cost-estimator-staged-shell {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(219, 230, 244, 0.92);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(32, 147, 250, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    padding: 24px;
    box-shadow: 0 18px 40px rgba(13, 76, 172, 0.07);
}

.cost-estimator-mini-card .bill-review-mini-findings strong {
    white-space: normal;
    text-align: right;
}

@media (max-width: 980px) {
    .cost-estimator-stat-grid,
    .cost-estimator-two-column {
        grid-template-columns: 1fr;
    }
}