.pcp-estimator {
    --pcp-ink: #102026;
    --pcp-mint: #ddf3e8;
    --pcp-line: #cbd9d5;
    --pcp-muted: #5c6c69;
    background: #ffffff;
    border: 1px solid var(--pcp-line);
    border-radius: 8px;
    color: var(--pcp-ink);
    margin: 24px auto;
    max-width: 900px;
    padding: 32px;
}

.pcp-estimator__intro {
    max-width: 680px;
}

.pcp-estimator__eyebrow {
    color: #167a70;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.pcp-estimator h2,
.pcp-estimator h3 {
    color: var(--pcp-ink);
    letter-spacing: 0;
}

.pcp-estimator h2 {
    font-size: 32px;
    margin: 0 0 12px;
}

.pcp-estimator__form {
    margin-top: 28px;
}

.pcp-estimator__form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.pcp-estimator__form textarea,
.pcp-estimator__form input[type="text"],
.pcp-estimator__form select {
    background: #ffffff;
    border: 1px solid #9aaea9;
    border-radius: 4px;
    box-sizing: border-box;
    color: var(--pcp-ink);
    font: inherit;
    padding: 12px;
    width: 100%;
}

.pcp-estimator__form textarea:focus,
.pcp-estimator__form input[type="text"]:focus,
.pcp-estimator__form select:focus {
    border-color: #167a70;
    box-shadow: 0 0 0 2px rgba(22, 122, 112, 0.18);
    outline: 0;
}

.pcp-estimator__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pcp-estimator__submit,
.pcp-estimator__upgrade {
    background: var(--pcp-ink);
    border: 1px solid var(--pcp-ink);
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font: inherit;
    font-weight: 700;
    padding: 12px 18px;
    text-decoration: none;
}

.pcp-estimator__submit:hover,
.pcp-estimator__upgrade:hover {
    background: #167a70;
    border-color: #167a70;
    color: #ffffff;
}

.pcp-estimator__result {
    background: var(--pcp-mint);
    border: 1px solid #a7d8ca;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    padding: 22px;
}

.pcp-estimator__score span,
.pcp-estimator__estimate span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pcp-estimator__score strong,
.pcp-estimator__estimate strong {
    display: block;
    font-size: 32px;
    line-height: 1.1;
}

.pcp-estimator__score small {
    font-size: 16px;
    font-weight: 400;
}

.pcp-estimator__score p {
    color: var(--pcp-muted);
    font-size: 14px;
    margin: 8px 0 0;
}

.pcp-estimator__estimate p {
    color: var(--pcp-muted);
    margin: 8px 0 12px;
}

.pcp-estimator__locked-number {
    filter: blur(6px);
    user-select: none;
}

.pcp-estimator__feedback {
    border-top: 1px solid #a7d8ca;
    grid-column: 1 / -1;
    padding-top: 16px;
}

.pcp-estimator__feedback h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.pcp-estimator__feedback ul {
    margin: 0;
    padding-left: 20px;
}

.pcp-estimator__feedback li + li {
    margin-top: 7px;
}

.pcp-estimator__notice {
    border-left: 4px solid #c2342b;
    margin-top: 20px;
    padding: 12px;
}

.pcp-estimator__notice--blocked {
    background: #fff7e6;
    border: 1px solid #e4c16f;
    border-left: 4px solid #a66b00;
    padding: 18px;
}

.pcp-estimator__notice--blocked strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.pcp-estimator__notice--blocked p {
    margin: 0;
}

.pcp-estimator__disclaimer {
    color: var(--pcp-muted);
    font-size: 14px;
    margin: 22px 0 0;
}

.pcp-estimator--message {
    text-align: center;
}

@media (max-width: 640px) {
    .pcp-estimator {
        padding: 22px;
    }

    .pcp-estimator__grid,
    .pcp-estimator__result {
        grid-template-columns: 1fr;
    }
}
