.house-page {
    --house-green: #198f50;
    --house-green-dark: #126b3b;
    --house-warm: #fff7e9;
    --house-warm-line: #ead5a7;
}

.house-page .house-hero {
    min-height: 680px;
    background:
        linear-gradient(90deg, rgba(12, 22, 17, .97), rgba(12, 22, 17, .86) 58%, rgba(12, 22, 17, .50)),
        url("img/photo.jpg") right 8% center / min(38vw, 430px) auto no-repeat,
        #0c1611;
}

.house-page .house-hero .container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.house-page .hero-copy {
    max-width: 820px;
}

.house-page .price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 22px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    backdrop-filter: blur(8px);
}

.house-page .price-badge span {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
}

.house-page .price-badge strong {
    font-size: 1.18rem;
}

.house-page .hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.house-page .hero-facts li {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .9);
    font-size: .86rem;
    font-weight: 700;
}

.house-page .hero-note {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
}

.house-page .trust-strip {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.house-page .trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.house-page .trust-item {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
}

.house-page .trust-item:last-child {
    border-right: 0;
}

.house-page .trust-item strong,
.house-page .trust-item span {
    display: block;
}

.house-page .trust-item strong {
    margin-bottom: 4px;
    color: var(--ink);
}

.house-page .trust-item span {
    color: var(--muted);
    font-size: .9rem;
}

.house-page .section-kicker {
    margin: 0 0 9px;
    color: var(--house-green-dark);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.house-page .pricing-section {
    padding-top: 62px;
}

.house-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.house-page .price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 29, 23, .07);
}

.house-page .price-card.featured {
    border-color: rgba(25, 143, 80, .55);
    box-shadow: 0 18px 48px rgba(25, 143, 80, .14);
}

.house-page .price-label {
    color: var(--muted);
    font-size: .88rem;
    font-weight: 800;
}

.house-page .price-card h3 {
    margin: 8px 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.house-page .price-value {
    margin: 0 0 16px;
    color: var(--house-green-dark);
    font-size: clamp(1.9rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1;
}

.house-page .price-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: .94rem;
}

.house-page .price-card .btn {
    width: 100%;
    margin-top: auto;
    background: var(--house-green);
    color: #fff;
}

.house-page .price-card .btn:hover {
    background: var(--house-green-dark);
    color: #fff;
    text-decoration: none;
}

.house-page .pricing-caption {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .92rem;
}

.house-page .check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.house-page .check-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}

.house-page .check-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eaf7ef;
    color: var(--house-green-dark);
    font-size: .8rem;
    font-weight: 900;
}

.house-page .check-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.house-page .check-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.house-page .result-section {
    background: #eef4f0;
}

.house-page .result-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.house-page .decision-card {
    padding: 26px;
    border-radius: 18px;
    background: #14231c;
    color: #fff;
}

.house-page .decision-card h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.house-page .decision-card ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, .82);
}

.house-page .decision-card li + li {
    margin-top: 9px;
}

.house-page .process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.house-page .process-card {
    padding: 22px;
    border-top: 3px solid var(--house-green);
    background: #fff;
    border-radius: 0 0 14px 14px;
}

.house-page .process-card strong {
    display: block;
    margin-bottom: 8px;
}

.house-page .process-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.house-page .limits-box {
    padding: 24px;
    border: 1px solid var(--house-warm-line);
    border-radius: 16px;
    background: var(--house-warm);
}

.house-page .limits-box h2 {
    margin-top: 0;
}

.house-page .limits-box p:last-child {
    margin-bottom: 0;
}

.house-page .expert-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 26px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.house-page .expert-card img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.house-page .expert-card h2 {
    margin: 0 0 12px;
}

.house-page .expert-card p {
    color: var(--muted);
}

.house-page .expert-card p:last-child {
    margin-bottom: 0;
}

.house-page .cta-price {
    display: inline-block;
    margin: 0 0 14px;
    color: #8ce8b2;
    font-weight: 900;
}

.house-page .mobile-contact-bar {
    display: none;
}

@media (max-width: 860px) {
    .house-page .house-hero {
        min-height: auto;
        background:
            linear-gradient(90deg, rgba(12, 22, 17, .97), rgba(12, 22, 17, .88)),
            url("img/photo.jpg") right 20px top 85px / 165px auto no-repeat,
            #0c1611;
    }

    .house-page .trust-strip-grid,
    .house-page .pricing-grid,
    .house-page .process-grid {
        grid-template-columns: 1fr;
    }

    .house-page .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .house-page .trust-item:last-child {
        border-bottom: 0;
    }

    .house-page .result-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .house-page {
        padding-bottom: 74px;
    }

    .house-page .house-hero {
        background: #0c1611;
    }

    .house-page .house-hero .container {
        padding-top: 58px;
        padding-bottom: 52px;
    }

    .house-page .check-grid,
    .house-page .expert-card {
        grid-template-columns: 1fr;
    }

    .house-page .expert-card img {
        width: 100%;
        height: 280px;
        object-position: center 22%;
    }

    .house-page .price-card {
        min-height: 0;
    }

    .house-page .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 255, 255, .13);
        background: rgba(12, 22, 17, .96);
        backdrop-filter: blur(12px);
    }

    .house-page .mobile-contact-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border-radius: 9px;
        font-weight: 900;
        text-decoration: none;
    }

    .house-page .mobile-contact-bar .mobile-phone {
        background: var(--house-green);
        color: #fff;
    }

    .house-page .mobile-contact-bar .mobile-message {
        background: #fff;
        color: #14231c;
    }
}