.pricing-estimator-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(79, 115, 53, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(79, 115, 53, 0.12), transparent 28%),
        var(--background-color);
}

.pricing-estimator-hero::before {
    content: "";
    position: absolute;
    inset: 8% 6%;
    border: 1px solid rgba(79, 115, 53, 0.18);
    border-radius: 34px;
    pointer-events: none;
}

.estimator-kicker {
    display: inline-flex;
    color: var(--accent-color);
    border: 1px solid rgba(79, 115, 53, 0.45);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.pricing-estimator-hero h1 {
    color: #d8d8d8;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 100;
    line-height: 1.04;
    margin-bottom: 24px;
}

.pricing-estimator-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #9b9b9b;
    font-size: 19px;
    line-height: 1.7;
}

.estimator-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.estimator-trust-strip {
    padding: 35px 0;
    background: #0b0d0f;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-copy {
    margin: 0;
    color: #8c8c8c;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.trust-badges span {
    color: #bcbcbc;
    border: 1px solid rgba(79, 115, 53, 0.34);
    background: rgba(79, 115, 53, 0.08);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
}

.estimate-journey {
    padding-top: 90px;
    padding-bottom: 90px;
}

.estimator-card,
.commercial-estimate-card,
.estimate-hero-card,
.estimate-summary-grid > div {
    background: linear-gradient(145deg, #1f1f1f, #080808 65%);
    border: 1px solid rgba(79, 115, 53, 0.28);
    border-radius: 28px;
    box-shadow: 18px 24px 60px rgba(0, 0, 0, 0.42);
}

.estimator-card {
    padding: 34px;
    margin-bottom: 26px;
}

.step-pill {
    display: inline-flex;
    color: var(--accent-color);
    background: rgba(79, 115, 53, 0.12);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 13px;
    margin-bottom: 16px;
}

.estimator-card h2,
.commercial-estimate-card h3,
.estimator-final-cta h2 {
    color: #cfcfcf;
    font-weight: 100;
}

.estimator-muted {
    color: #919191;
    margin-top: 8px;
    margin-bottom: 24px;
}

.gwp-mode-switch {
    display: inline-flex;
    padding: 6px;
    border-radius: 999px;
    background: #0e1113;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 22px;
}

.gwp-mode-switch button {
    border: 0;
    color: #8c8c8c;
    background: transparent;
    padding: 10px 18px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.gwp-mode-switch button.active {
    color: #fff;
    background: var(--accent-color);
}

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

.gwp-input-card {
    display: block;
    background: #0e1113;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 18px;
}

.gwp-input-card > span {
    color: #858585;
    font-size: 14px;
    margin-bottom: 10px;
}

.money-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.money-input span {
    color: var(--accent-color);
    font-size: 24px;
}

.money-input input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #e4e4e4;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 100;
    outline: 0;
}

.instant-feedback {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.instant-feedback > div {
    border-radius: 20px;
    padding: 18px;
    background: rgba(79, 115, 53, 0.1);
}

.instant-feedback span,
.estimate-summary-grid span,
.estimate-hero-card span {
    color: #8c8c8c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.instant-feedback strong {
    display: block;
    color: #d8d8d8;
    font-size: 27px;
    font-weight: 300;
    margin-top: 5px;
}

.implementation-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.implementation-option {
    position: relative;
    text-align: left;
    background: #0e1113;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 20px;
    transition: 0.25s ease;
    min-height: 178px;
}

.implementation-option:hover,
.implementation-option[aria-pressed="true"] {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(79, 115, 53, 0.18);
}

.implementation-option[aria-pressed="true"]::after {
    content: "✓";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent-color);
}

.implementation-badge {
    color: var(--accent-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.implementation-option strong,
.implementation-option small,
.implementation-option em,
.implementation-price {
    display: block;
}

.implementation-option strong {
    color: #dedede;
    font-size: 24px;
    margin-top: 12px;
}

.implementation-option small {
    color: #bcbcbc;
    margin-top: 4px;
}

.implementation-option em {
    color: #7d7d7d;
    font-style: normal;
    margin-top: 8px;
}

.implementation-price {
    color: #d7e6c9;
    margin-top: 12px;
    font-weight: 600;
}

.chart-panel {
    background: #0e1113;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

.chart-panel canvas {
    width: 100%;
}

.estimate-sticky-panel {
    position: sticky;
    top: 100px;
}

.estimate-hero-card {
    padding: 32px;
}

.estimate-hero-card strong {
    display: block;
    color: #e5e5e5;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 100;
    line-height: 1;
    margin-top: 14px;
}

.estimate-hero-card small {
    display: block;
    color: #d7e6c9;
    margin-top: 12px;
}

.estimate-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.estimate-summary-grid > div {
    padding: 20px;
}

.estimate-summary-grid strong {
    display: block;
    color: #dcdcdc;
    font-size: 22px;
    font-weight: 300;
    margin-top: 8px;
}

.commercial-estimate-card {
    padding: 28px;
    margin-top: 18px;
}

.commercial-estimate-card dl {
    margin: 20px 0;
}

.commercial-estimate-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.commercial-estimate-card dt {
    color: #858585;
    font-weight: 400;
}

.commercial-estimate-card dd {
    color: #d8d8d8;
    margin: 0;
    text-align: right;
}

.estimate-disclaimer {
    color: #7c7c7c;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.estimate-main-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.estimator-included {
    padding-top: 70px;
    padding-bottom: 70px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.included-grid div {
    background: linear-gradient(145deg, #1f1f1f, #080808 65%);
    border: 1px solid rgba(79, 115, 53, 0.22);
    border-radius: 18px;
    padding: 18px;
    color: #bcbcbc;
}

.included-grid i {
    color: var(--accent-color);
    margin-right: 8px;
}

.estimator-faq {
    padding-top: 70px;
    padding-bottom: 70px;
}

.faq-lite {
    display: grid;
    gap: 16px;
}

.faq-lite > div {
    background: #0e1113;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 24px;
}

.faq-lite h3 {
    color: #d6d6d6;
    font-weight: 300;
    margin-bottom: 8px;
}

.faq-lite p {
    color: #8f8f8f;
    margin: 0;
}

.estimator-final-cta {
    padding-top: 80px;
    padding-bottom: 100px;
    background:
        radial-gradient(circle at center, rgba(79,115,53,0.16), transparent 38%),
        var(--background-color);
}

.estimator-final-cta h2 {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 15px;
}

.estimator-final-cta p {
    color: #9b9b9b;
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .estimate-sticky-panel {
        position: static;
    }

    .trust-badges {
        justify-content: flex-start;
    }

    .included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pricing-estimator-hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .estimator-hero-actions,
    .gwp-input-grid,
    .instant-feedback,
    .implementation-card-grid,
    .estimate-summary-grid,
    .included-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .estimator-card,
    .commercial-estimate-card,
    .estimate-hero-card {
        padding: 24px;
        border-radius: 22px;
    }

    .money-input input {
        font-size: 28px;
    }
}
