/* The theme applies .site-main { padding: 48px 0; }.
 * This dedicated template owns its vertical rhythm, so remove that global gap
 * only on the estimator landing page. */
.site-main.nh-estimator-page-template {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.nh-estimator-fullpage,
.nh-estimator-fullpage * {
    box-sizing: border-box;
}

.nh-estimator-fullpage {
    --nh-red: #e12f38;
    --nh-red-dark: #c8212a;
    --nh-green: #2f6b57;
    --nh-green-dark: #1f4d3e;
    --nh-ink: #101714;
    --nh-muted: #64706a;
    --nh-line: #dfe6e2;
    --nh-soft: #f5f7f6;
    --nh-dark: #101915;
    --nh-dark-2: #17231e;
    color: var(--nh-ink);
    background: #fff;
    font-family: 'Lato', Arial, sans-serif;
    overflow: clip;
}

.nh-efp-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.nh-efp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--nh-green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nh-efp-kicker::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.nh-efp-kicker--light {
    color: #a9d4c4;
}

/* HERO */
.nh-efp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(70px, 8vw, 118px) 0 0;
    background:
        radial-gradient(circle at 82% 16%, rgba(225,47,56,.24), transparent 24%),
        radial-gradient(circle at 15% 20%, rgba(74,146,120,.2), transparent 28%),
        linear-gradient(135deg, #0d1512 0%, #14211b 54%, #111a16 100%);
    color: #fff;
}

.nh-efp-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -8%;
    top: 13%;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
}

.nh-efp-hero-gridline {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
}

.nh-efp-hero-inner {
    position: relative;
    text-align: center;
}

.nh-efp-hero h1 {
    max-width: 1120px;
    margin: 0 auto 26px;
    color: #fff;
    font-size: clamp(46px, 6.4vw, 88px);
    line-height: .98;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.nh-efp-hero-lead {
    max-width: 970px;
    margin: 0 auto;
    color: #f4f7f5;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.48;
    text-wrap: balance;
}

.nh-efp-hero-support {
    max-width: 820px;
    margin: 18px auto 0;
    color: #aab8b1;
    font-size: 16px;
    line-height: 1.7;
}

.nh-efp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.nh-efp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 25px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nh-efp-btn:hover {
    transform: translateY(-2px);
}

.nh-efp-btn-primary {
    background: var(--nh-red);
    color: #fff !important;
    box-shadow: 0 15px 36px rgba(225,47,56,.24);
}

.nh-efp-btn-primary:hover {
    background: var(--nh-red-dark);
    box-shadow: 0 18px 42px rgba(225,47,56,.3);
}

.nh-efp-btn-white {
    background: #fff;
    color: var(--nh-ink) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.nh-efp-text-link {
    color: #dce8e3 !important;
    text-decoration: none !important;
    font-weight: 800;
}

.nh-efp-text-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform .18s ease;
}

.nh-efp-text-link:hover span {
    transform: translateX(4px);
}

.nh-efp-hero-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1160px;
    margin: clamp(52px, 7vw, 84px) auto 0;
    border: 1px solid rgba(255,255,255,.11);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.nh-efp-hero-proof > div {
    min-height: 126px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: left;
}

.nh-efp-hero-proof > div:last-child {
    border-right: 0;
}

.nh-efp-hero-proof strong,
.nh-efp-hero-proof span {
    display: block;
}

.nh-efp-hero-proof strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -.025em;
}

.nh-efp-hero-proof span {
    color: #aab8b1;
    font-size: 13px;
    line-height: 1.45;
}

/* ANCHOR NAV */
.nh-efp-anchor-nav {
    border-bottom: 1px solid var(--nh-line);
    background: #fff;
}

.nh-efp-anchor-nav .nh-efp-shell {
    display: flex;
    justify-content: center;
    gap: 34px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nh-efp-anchor-nav .nh-efp-shell::-webkit-scrollbar {
    display: none;
}

.nh-efp-anchor-nav a {
    flex: 0 0 auto;
    padding: 18px 0 16px;
    color: #48534e;
    border-bottom: 2px solid transparent;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
}

.nh-efp-anchor-nav a:hover {
    color: var(--nh-red);
    border-bottom-color: var(--nh-red);
}

/* GENERIC SECTION INTRO */
.nh-efp-section-intro {
    max-width: 930px;
    margin-bottom: clamp(34px, 5vw, 54px);
}

.nh-efp-section-intro--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nh-efp-section-intro--center .nh-efp-kicker {
    justify-content: center;
}

.nh-efp-section-intro h2,
.nh-efp-data-heading h2,
.nh-efp-faq-title h2,
.nh-efp-final-cta h2 {
    margin: 0 0 18px;
    color: #111;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.nh-efp-section-intro p,
.nh-efp-data-heading p,
.nh-efp-faq-title p,
.nh-efp-final-cta p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 17px;
    line-height: 1.72;
}

/* CALCULATOR - FULL WIDTH */
.nh-efp-calculator-section {
    padding: clamp(68px, 8vw, 110px) 0 clamp(76px, 9vw, 124px);
    background:
        radial-gradient(circle at 50% 10%, rgba(47,107,87,.07), transparent 34%),
        #fff;
}

.nh-efp-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 1160px;
    margin: 0 auto 26px;
    overflow: hidden;
    border: 1px solid var(--nh-line);
    border-radius: 18px;
    background: var(--nh-line);
}

.nh-efp-steps > div {
    position: relative;
    min-height: 112px;
    padding: 22px 24px 20px 70px;
    background: #fff;
}

.nh-efp-steps > div > span {
    position: absolute;
    left: 24px;
    top: 24px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #edf4f1;
    color: var(--nh-green);
    font-size: 11px;
    font-weight: 900;
}

.nh-efp-steps strong,
.nh-efp-steps small {
    display: block;
}

.nh-efp-steps strong {
    margin-bottom: 6px;
    color: #151b18;
    font-size: 16px;
}

.nh-efp-steps small {
    color: #75807a;
    font-size: 12px;
    line-height: 1.45;
}

.nh-efp-calculator-host {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    padding: 14px;
    border: 1px solid #d7e0db;
    border-radius: 28px;
    background: linear-gradient(180deg, #f1f5f3 0%, #f7f9f8 100%);
    box-shadow: 0 32px 90px rgba(22,47,36,.14);
}

.nh-efp-calculator-badge {
    position: absolute;
    z-index: 5;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 14px;
    border: 1px solid #d6e1dc;
    border-radius: 999px;
    background: #fff;
    color: #405049;
    box-shadow: 0 8px 24px rgba(21,45,34,.09);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nh-efp-calculator-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ba477;
    box-shadow: 0 0 0 4px rgba(59,164,119,.12);
}

.nh-efp-calculator-host .nh-estimator--inline {
    width: 100%;
}

.nh-efp-calculator-host .nh-estimator--inline .nh-estimator__panel {
    width: 100%;
    max-width: none;
    min-height: 560px;
    height: auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid #dbe4df;
    border-radius: 20px;
    box-shadow: none;
}

.nh-efp-calculator-host .nh-estimator__header {
    min-height: 92px;
    padding: 20px clamp(24px, 4vw, 48px);
    background: linear-gradient(105deg, #245a49 0%, #2f6b57 70%, #377861 100%);
}

.nh-efp-calculator-host .nh-estimator__header strong {
    font-size: 21px;
    letter-spacing: -.01em;
}

.nh-efp-calculator-host .nh-estimator__header small {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.45;
}

.nh-efp-calculator-host .nh-estimator__progress {
    height: 6px;
    background: #e2ebe7;
}

.nh-efp-calculator-host .nh-estimator__progress span {
    background: linear-gradient(90deg, #e12f38, #ef5a61);
}

.nh-efp-calculator-host .nh-estimator__content {
    min-height: 410px;
    padding: clamp(30px, 4vw, 50px);
    background:
        radial-gradient(circle at 90% 5%, rgba(47,107,87,.045), transparent 26%),
        #fbfcfb;
}

.nh-efp-calculator-host .nh-estimator__content > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.nh-efp-calculator-host .nh-estimator__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: .12em;
}

.nh-efp-calculator-host .nh-estimator h2 {
    margin-bottom: 11px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.13;
    letter-spacing: -.02em;
}

.nh-efp-calculator-host .nh-estimator h3 {
    font-size: 19px;
}

.nh-efp-calculator-host .nh-estimator__help {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.nh-efp-calculator-host .nh-estimator__tiles {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.nh-efp-calculator-host .nh-estimator__tile {
    position: relative;
    min-height: 86px;
    padding: 18px 20px;
    border: 1px solid #d4ded9;
    border-radius: 15px;
    background: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: 0 3px 0 rgba(21,45,34,.02);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.nh-efp-calculator-host .nh-estimator__tile:hover {
    transform: translateY(-2px);
    border-color: #77a291;
    background: #fdfefd;
    box-shadow: 0 12px 30px rgba(47,107,87,.11);
}

.nh-efp-calculator-host .nh-estimator__tile.is-selected {
    border-color: var(--nh-green);
    background: #eaf4ef;
    box-shadow: inset 0 0 0 1px var(--nh-green), 0 10px 28px rgba(47,107,87,.08);
}

.nh-efp-calculator-host .nh-estimator__input {
    min-height: 50px;
    padding: 13px 15px;
    border-radius: 13px;
    font-size: 15px;
}

.nh-efp-calculator-host .nh-estimator__primary,
.nh-efp-calculator-host .nh-estimator__secondary {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 14px;
}

.nh-efp-calculator-host .nh-estimator__primary {
    background: var(--nh-red);
}

.nh-efp-calculator-host .nh-estimator__primary:hover {
    background: var(--nh-red-dark);
}

.nh-efp-calculator-host .nh-estimator__footer {
    min-height: 64px;
    padding: 11px clamp(22px, 4vw, 46px);
}

.nh-efp-calculator-host .nh-estimator__offer-cards {
    gap: 14px;
}

.nh-efp-calculator-host .nh-estimator__offer-card {
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(21,45,34,.06);
}

.nh-efp-calculator-host .nh-estimator__offer-card-title {
    font-size: 13px;
}

.nh-efp-calculator-host .nh-estimator__offer-card-gross {
    font-size: 21px;
}

.nh-efp-calculator-host .nh-estimator__breakdown-row {
    padding: 14px 0;
    font-size: 14px;
}

.nh-efp-calculator-host .nh-estimator__breakdown-row--total strong {
    font-size: 18px;
}

.nh-efp-under-calculator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1160px;
    margin: 24px auto 0;
}

.nh-efp-under-calculator p {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid #e2e8e5;
    border-radius: 14px;
    background: #fff;
    color: #66716c;
    font-size: 13px;
    line-height: 1.55;
}

.nh-efp-under-calculator strong {
    color: #25322c;
}

.nh-efp-missing-plugin {
    padding: 48px;
    border: 1px solid #efcccc;
    border-radius: 18px;
    background: #fff4f4;
    color: #8b2227;
}

/* RESULT */
.nh-efp-result-section {
    padding: clamp(72px, 8vw, 112px) 0;
    background: var(--nh-soft);
}

.nh-efp-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nh-efp-result-grid article {
    position: relative;
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--nh-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(21,45,34,.045);
}

.nh-efp-result-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    margin-bottom: 36px;
    border-radius: 999px;
    background: #fcecee;
    color: var(--nh-red);
    font-size: 11px;
    font-weight: 900;
}

.nh-efp-result-grid h3 {
    margin: 0 0 10px;
    color: #151b18;
    font-size: 20px;
    line-height: 1.25;
}

.nh-efp-result-grid p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* DATA PROOF */
.nh-efp-data-section {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 116px) 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(225,47,56,.15), transparent 22%),
        linear-gradient(135deg, #111b17 0%, #17241e 100%);
    color: #fff;
}

.nh-efp-data-heading {
    max-width: 1000px;
    margin-bottom: 45px;
}

.nh-efp-data-heading h2 {
    color: #fff;
}

.nh-efp-data-heading p {
    color: #aab8b1;
}

.nh-efp-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
}

.nh-efp-data-grid > div {
    min-height: 158px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.nh-efp-data-grid > div:nth-child(3n) {
    border-right: 0;
}

.nh-efp-data-grid > div:nth-last-child(-n+3) {
    border-bottom: 0;
}

.nh-efp-data-grid strong,
.nh-efp-data-grid span {
    display: block;
}

.nh-efp-data-grid strong {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -.03em;
}

.nh-efp-data-grid span {
    color: #aab8b1;
    font-size: 13px;
    line-height: 1.55;
}

.nh-efp-data-note {
    max-width: 930px;
    margin: 24px 0 0;
    color: #899a92;
    font-size: 12px;
    line-height: 1.65;
}

/* METHOD */
.nh-efp-method-section {
    padding: clamp(76px, 8vw, 118px) 0;
    background: #fff;
}

.nh-efp-method-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(330px, .6fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.nh-efp-method-list {
    border-top: 1px solid var(--nh-line);
}

.nh-efp-method-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-method-list article > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f5f2;
    color: var(--nh-green);
    font-size: 13px;
    font-weight: 900;
}

.nh-efp-method-list h3 {
    margin: 0 0 8px;
    color: #151b18;
    font-size: 20px;
}

.nh-efp-method-list p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.7;
}

.nh-efp-compare-card {
    position: sticky;
    top: 108px;
    padding: 30px;
    border: 1px solid #d8e1dd;
    border-radius: 22px;
    background: linear-gradient(180deg, #f9fbfa, #f1f6f3);
    box-shadow: 0 20px 60px rgba(21,45,34,.08);
}

.nh-efp-compare-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #8b5557;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nh-efp-compare-label--good {
    color: var(--nh-green);
}

.nh-efp-compare-formula {
    margin: 0 0 12px !important;
    color: #111 !important;
    font-size: 20px !important;
    font-weight: 900;
    line-height: 1.3 !important;
}

.nh-efp-compare-card p {
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.65;
}

.nh-efp-compare-card hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid #d6e0db;
}

/* FACTORS */
.nh-efp-factors-section {
    padding: clamp(76px, 8vw, 118px) 0;
    background: #f5f7f6;
}

.nh-efp-factor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.nh-efp-factor-grid article {
    min-height: 250px;
    padding: 25px;
    border: 1px solid var(--nh-line);
    border-radius: 18px;
    background: #fff;
}

.nh-efp-factor-grid h3 {
    margin: 0 0 12px;
    color: #161c19;
    font-size: 18px;
    line-height: 1.3;
}

.nh-efp-factor-grid p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* STAGES */
.nh-efp-stages-section {
    padding: clamp(76px, 8vw, 118px) 0;
    background: #fff;
}

.nh-efp-stage-list {
    max-width: 1080px;
    border-top: 1px solid var(--nh-line);
}

.nh-efp-stage-list article {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-stage-list article > span {
    color: var(--nh-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.nh-efp-stage-list h3 {
    margin: 0 0 8px;
    color: #151b18;
    font-size: 21px;
}

.nh-efp-stage-list p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.72;
}

/* EXAMPLES */
.nh-efp-examples-section {
    padding: clamp(78px, 8vw, 118px) 0;
    background: #f5f7f6;
}

.nh-efp-example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nh-efp-example-card {
    overflow: hidden;
    border: 1px solid #dce4e0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(21,45,34,.05);
}

.nh-efp-example-card--featured {
    transform: translateY(-8px);
    border-color: #c8d9d1;
    box-shadow: 0 22px 58px rgba(21,45,34,.1);
}

.nh-efp-example-head {
    padding: 24px 24px 20px;
    border-top: 4px solid var(--nh-red);
}

.nh-efp-example-head span,
.nh-efp-example-head strong {
    display: block;
}

.nh-efp-example-head span {
    margin-bottom: 6px;
    color: var(--nh-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nh-efp-example-head strong {
    color: #111;
    font-size: 30px;
    line-height: 1.1;
}

.nh-efp-example-price {
    padding: 18px 24px;
    background: #16211c;
}

.nh-efp-example-price small,
.nh-efp-example-price strong {
    display: block;
}

.nh-efp-example-price small {
    margin-bottom: 5px;
    color: #9eaca5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.nh-efp-example-price strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.nh-efp-example-card dl {
    margin: 0;
    padding: 10px 24px 8px;
}

.nh-efp-example-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #edf0ee;
}

.nh-efp-example-card dt,
.nh-efp-example-card dd {
    font-size: 12px;
    line-height: 1.45;
}

.nh-efp-example-card dt {
    color: var(--nh-muted);
}

.nh-efp-example-card dd {
    margin: 0;
    color: #111;
    font-weight: 900;
    text-align: right;
}

.nh-efp-example-card > a {
    display: block;
    padding: 18px 24px 22px;
    color: var(--nh-red) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
}

.nh-efp-example-explainer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.nh-efp-example-explainer > div {
    padding: 26px;
    border: 1px solid #dce4e0;
    border-radius: 18px;
    background: #fff;
}

.nh-efp-example-explainer h3 {
    margin: 0 0 10px;
    color: #151b18;
    font-size: 18px;
    line-height: 1.35;
}

.nh-efp-example-explainer p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 13px;
    line-height: 1.7;
}

.nh-efp-fineprint {
    max-width: 980px;
    margin: 22px 0 0;
    color: #7a847f;
    font-size: 11px;
    line-height: 1.65;
}

/* LONG SEO COPY */
.nh-efp-seo-copy-section {
    padding: clamp(78px, 8vw, 118px) 0;
    background: #fff;
}

.nh-efp-copy-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 64px;
    border-top: 1px solid var(--nh-line);
}

.nh-efp-copy-columns > div {
    padding: 34px 0;
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-copy-columns h3 {
    margin: 0 0 14px;
    color: #151b18;
    font-size: 22px;
    line-height: 1.3;
}

.nh-efp-copy-columns p {
    margin: 0 0 14px;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.78;
}

.nh-efp-copy-columns p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.nh-efp-faq-section {
    padding: clamp(78px, 8vw, 118px) 0;
    background: #f5f7f6;
}

.nh-efp-faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 7vw, 88px);
    align-items: start;
}

.nh-efp-faq-title {
    position: sticky;
    top: 108px;
}

.nh-efp-faq-title h2 {
    font-size: clamp(34px, 4vw, 50px);
}

.nh-efp-faq-title .nh-efp-btn {
    margin-top: 28px;
}

.nh-efp-faq-list {
    border-top: 1px solid #cfd9d4;
}

.nh-efp-faq-list details {
    border-bottom: 1px solid #cfd9d4;
}

.nh-efp-faq-list summary {
    position: relative;
    padding: 22px 42px 22px 0;
    color: #161c19;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
    list-style: none;
}

.nh-efp-faq-list summary::-webkit-details-marker {
    display: none;
}

.nh-efp-faq-list summary::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 15px;
    color: var(--nh-red);
    font-size: 28px;
    font-weight: 400;
}

.nh-efp-faq-list details[open] summary::after {
    content: '–';
}

.nh-efp-faq-list p {
    max-width: 760px;
    margin: -3px 0 24px;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* FINAL CTA */
.nh-efp-final-cta {
    padding: clamp(60px, 7vw, 90px) 0;
    background: linear-gradient(110deg, #d82730 0%, #e12f38 55%, #c82029 100%);
    color: #fff;
}

.nh-efp-final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nh-efp-final-cta-inner > div {
    max-width: 850px;
}

.nh-efp-final-cta h2 {
    color: #fff;
    font-size: clamp(34px, 4.4vw, 56px);
}

.nh-efp-final-cta p {
    color: rgba(255,255,255,.82);
}

.nh-efp-final-cta .nh-efp-kicker--light {
    color: #fff;
}

/* CTA injected into articles after go-live */
.nh-estimator-inline-cta {
    margin: 34px 0;
    padding: 26px;
    border: 1px solid #dde5e1;
    border-radius: 16px;
    background: #f6f8f7;
}

.nh-estimator-inline-cta strong {
    display: block;
    margin-bottom: 8px;
    color: #151b18;
    font-size: 21px;
}

.nh-estimator-inline-cta p {
    margin: 0 0 15px;
}

.nh-estimator-inline-cta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--nh-red, #e12f38);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 1120px) {
    .nh-efp-result-grid,
    .nh-efp-data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-data-grid > div:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,.1);
    }

    .nh-efp-data-grid > div:nth-child(2n) {
        border-right: 0;
    }

    .nh-efp-data-grid > div:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nh-efp-data-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

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

    .nh-efp-method-layout,
    .nh-efp-faq-layout {
        grid-template-columns: 1fr;
    }

    .nh-efp-compare-card,
    .nh-efp-faq-title {
        position: static;
    }
}

@media (max-width: 900px) {
    .nh-efp-shell {
        width: min(100% - 32px, 1320px);
    }

    .nh-efp-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-hero-proof > div:nth-child(2n) {
        border-right: 0;
    }

    .nh-efp-hero-proof > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nh-efp-anchor-nav .nh-efp-shell {
        justify-content: flex-start;
    }

    .nh-efp-steps,
    .nh-efp-example-grid {
        grid-template-columns: 1fr;
    }

    .nh-efp-example-card--featured {
        transform: none;
    }

    .nh-efp-copy-columns,
    .nh-efp-example-explainer,
    .nh-efp-under-calculator {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nh-efp-calculator-host .nh-estimator__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-final-cta-inner {
        display: block;
    }

    .nh-efp-final-cta .nh-efp-btn {
        margin-top: 28px;
    }
}

@media (max-width: 650px) {
    .nh-efp-shell {
        width: min(100% - 24px, 1320px);
    }

    .nh-efp-hero {
        padding-top: 54px;
    }

    .nh-efp-hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .nh-efp-hero-lead {
        font-size: 19px;
    }

    .nh-efp-hero-proof,
    .nh-efp-result-grid,
    .nh-efp-data-grid,
    .nh-efp-factor-grid {
        grid-template-columns: 1fr;
    }

    .nh-efp-hero-proof > div,
    .nh-efp-hero-proof > div:nth-child(2n) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nh-efp-hero-proof > div:last-child {
        border-bottom: 0;
    }

    .nh-efp-data-grid > div,
    .nh-efp-data-grid > div:nth-child(2n),
    .nh-efp-data-grid > div:nth-child(3n),
    .nh-efp-data-grid > div:nth-last-child(-n+2),
    .nh-efp-data-grid > div:nth-last-child(-n+3) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nh-efp-data-grid > div:last-child {
        border-bottom: 0;
    }

    .nh-efp-steps > div {
        min-height: auto;
    }

    .nh-efp-calculator-host {
        padding: 6px;
        border-radius: 18px;
    }

    .nh-efp-calculator-badge {
        top: -14px;
    }

    .nh-efp-calculator-host .nh-estimator--inline .nh-estimator__panel {
        min-height: 520px;
        border-radius: 14px;
    }

    .nh-efp-calculator-host .nh-estimator__header {
        min-height: 82px;
        padding: 17px 18px;
    }

    .nh-efp-calculator-host .nh-estimator__header strong {
        font-size: 18px;
    }

    .nh-efp-calculator-host .nh-estimator__content {
        min-height: 350px;
        padding: 24px 18px;
    }

    .nh-efp-calculator-host .nh-estimator__tiles {
        grid-template-columns: 1fr;
    }

    .nh-efp-calculator-host .nh-estimator__tile {
        min-height: 68px;
    }

    .nh-efp-calculator-host .nh-estimator__offer-cards {
        grid-template-columns: 1fr;
    }

    .nh-efp-method-list article {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .nh-efp-stage-list article {
        grid-template-columns: 54px 1fr;
        gap: 14px;
    }

    .nh-efp-example-card dl > div {
        display: block;
    }

    .nh-efp-example-card dd {
        margin-top: 4px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .nh-efp-btn,
    .nh-efp-text-link span,
    .nh-efp-calculator-host .nh-estimator__tile {
        transition: none;
    }
}

/* ==========================================================
   v4 - kalkulator jako pełnoprawne narzędzie, nie okno chatu
   ========================================================== */
.nh-efp-calculator-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(47,107,87,.07), transparent 28%),
        linear-gradient(180deg, #f8faf9 0%, #fff 72%);
}

.nh-efp-calculator-host {
    max-width: 1260px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dbe3df;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(21,45,34,.12);
}

.nh-efp-calculator-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 18px 28px;
    border-bottom: 1px solid #e5ebe8;
    background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}

.nh-efp-calculator-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.nh-efp-calculator-brand > div {
    min-width: 0;
}

.nh-efp-calculator-brand strong,
.nh-efp-calculator-brand small {
    display: block;
}

.nh-efp-calculator-brand strong {
    margin-bottom: 3px;
    color: #17211d;
    font-size: 15px;
    line-height: 1.25;
}

.nh-efp-calculator-brand small {
    color: #6d7872;
    font-size: 12px;
    line-height: 1.4;
}

.nh-efp-live-dot {
    position: relative;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3ba477;
    box-shadow: 0 0 0 6px rgba(59,164,119,.1);
}

.nh-efp-live-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(59,164,119,.3);
    border-radius: inherit;
}

.nh-efp-calculator-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nh-efp-calculator-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid #e1e7e4;
    border-radius: 999px;
    background: #fff;
    color: #53605a;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

/* Oryginalny zielony nagłówek jest dobry w chacie, ale na stronie dublował UI. */
.nh-efp-calculator-host .nh-estimator__header {
    display: none;
}

.nh-efp-calculator-host .nh-estimator--inline,
.nh-efp-calculator-host .nh-estimator--inline .nh-estimator__panel {
    width: 100%;
    max-width: none;
}

.nh-efp-calculator-host .nh-estimator--inline .nh-estimator__panel {
    min-height: 0;
    height: auto;
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.nh-efp-calculator-host .nh-estimator__progress {
    height: 4px;
    background: #eef2f0;
}

.nh-efp-calculator-host .nh-estimator__progress span {
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, #e12f38 0%, #ef5a61 100%);
}

.nh-efp-calculator-host .nh-estimator__content {
    min-height: 0;
    padding: clamp(38px, 5vw, 64px) clamp(28px, 5vw, 64px) clamp(42px, 5vw, 64px);
    overflow: visible;
    background:
        radial-gradient(circle at 100% 0%, rgba(47,107,87,.045), transparent 22%),
        #fff;
}

.nh-efp-calculator-host .nh-estimator__content > * {
    width: 100%;
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
}

.nh-efp-calculator-host .nh-estimator__question {
    animation: nh-efp-enter .22s ease-out both;
}

@keyframes nh-efp-enter {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

.nh-efp-calculator-host .nh-estimator__eyebrow {
    margin-bottom: 10px;
    color: #2f6b57;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.nh-efp-calculator-host .nh-estimator h2 {
    max-width: 820px;
    margin: 0 0 12px;
    color: #111713;
    font-size: clamp(30px, 3.3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.nh-efp-calculator-host .nh-estimator__help {
    max-width: 780px;
    margin: 0 0 28px;
    color: #68746e;
    font-size: 14px;
    line-height: 1.65;
}

/* Pierwszy ekran: 4 prawdziwe ścieżki, a nie cztery zwykłe buttony. */
.nh-efp-calculator-host .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.nh-efp-calculator-host .nh-estimator__tile--path {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid #dce4e0;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
    box-shadow: 0 8px 24px rgba(21,45,34,.045);
}

.nh-efp-calculator-host .nh-estimator__tile--path:hover {
    transform: translateY(-3px);
    border-color: #8eb2a3;
    box-shadow: 0 18px 40px rgba(47,107,87,.11);
}

.nh-efp-calculator-host .nh-estimator__tile-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #edf5f1;
    color: #2f6b57;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.nh-efp-calculator-host .nh-estimator__tile-copy,
.nh-efp-calculator-host .nh-estimator__tile-title,
.nh-efp-calculator-host .nh-estimator__tile-desc {
    display: block;
}

.nh-efp-calculator-host .nh-estimator__tile-title {
    margin-bottom: 6px;
    color: #17211d;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.nh-efp-calculator-host .nh-estimator__tile-desc {
    color: #718079;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.5;
}

.nh-efp-calculator-host .nh-estimator__tile-arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #8a9690;
    font-size: 18px;
    transition: transform .18s ease, color .18s ease;
}

.nh-efp-calculator-host .nh-estimator__tile--path:hover .nh-estimator__tile-arrow {
    transform: translateX(3px);
    color: #e12f38;
}

.nh-efp-calculator-host .nh-estimator__tile--path.is-selected {
    border-color: #2f6b57;
    background: #f2f8f5;
    box-shadow: inset 0 0 0 1px #2f6b57, 0 12px 30px rgba(47,107,87,.08);
}

/* Pozostałe wybory: lżejsze, bardziej formularzowe karty. */
.nh-efp-calculator-host .nh-estimator__tiles {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.nh-efp-calculator-host .nh-estimator__tile:not(.nh-estimator__tile--path) {
    min-height: 72px;
    padding: 16px 18px;
    border: 1px solid #dce4e0;
    border-radius: 14px;
    background: #fff;
    color: #1d2823;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: none;
}

.nh-efp-calculator-host .nh-estimator__tile:not(.nh-estimator__tile--path):hover {
    transform: translateY(-2px);
    border-color: #8aab9d;
    background: #fbfdfc;
    box-shadow: 0 10px 26px rgba(47,107,87,.08);
}

.nh-efp-calculator-host .nh-estimator__tile.is-selected:not(.nh-estimator__tile--path) {
    border-color: #2f6b57;
    background: #edf5f1;
    box-shadow: inset 0 0 0 1px #2f6b57;
}

.nh-efp-calculator-host .nh-estimator__form,
.nh-efp-calculator-host .nh-estimator__lead-form {
    max-width: 780px;
    gap: 14px;
}

.nh-efp-calculator-host .nh-estimator__input-row {
    gap: 10px;
}

.nh-efp-calculator-host .nh-estimator__input {
    min-height: 58px;
    padding: 15px 17px;
    border: 1px solid #ccd7d1;
    border-radius: 14px;
    background: #fff;
    font-size: 16px;
    box-shadow: 0 1px 0 rgba(21,45,34,.02);
}

.nh-efp-calculator-host .nh-estimator__input:focus {
    border-color: #2f6b57;
    box-shadow: 0 0 0 4px rgba(47,107,87,.1);
}

.nh-efp-calculator-host .nh-estimator__primary,
.nh-efp-calculator-host .nh-estimator__secondary {
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
}

.nh-efp-calculator-host .nh-estimator__primary {
    background: #e12f38;
    box-shadow: 0 10px 24px rgba(225,47,56,.16);
}

.nh-efp-calculator-host .nh-estimator__primary:hover {
    background: #c8212a;
}

.nh-efp-calculator-host .nh-estimator__secondary {
    background: #eef3f0;
    color: #285b49;
}

.nh-efp-calculator-host .nh-estimator__file-input {
    max-width: 780px;
    padding: 24px;
    border: 1px dashed #9fb6ab;
    border-radius: 16px;
    background: #f9fbfa;
}

.nh-efp-calculator-host .nh-estimator__footer {
    min-height: 58px;
    padding: 10px clamp(24px, 5vw, 64px);
    border-top: 1px solid #e7ece9;
    background: #fbfcfb;
}

.nh-efp-calculator-host .nh-estimator__back,
.nh-efp-calculator-host .nh-estimator__reset {
    padding: 8px 0;
    font-size: 12px;
    font-weight: 800;
}

/* Wynik ma wyglądać jak raport, nie jak kolejne okno chatu. */
.nh-efp-calculator-host .nh-estimator[data-nh-question="estimate"] .nh-estimator__content,
.nh-efp-calculator-host .nh-estimator[data-nh-question="result"] .nh-estimator__content {
    background: #fbfcfb;
}

.nh-efp-calculator-host .nh-estimator__result {
    max-width: 980px;
}

.nh-efp-calculator-host .nh-estimator__masked-amount {
    padding: 22px 24px;
    border-radius: 18px;
    font-size: clamp(30px, 4vw, 44px);
}

.nh-efp-calculator-host .nh-estimator__offer-cards {
    gap: 14px;
}

.nh-efp-calculator-host .nh-estimator__offer-card {
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(21,45,34,.055);
}

/* Stare techniczne boksy z v3 są już usunięte z HTML. */
.nh-efp-under-calculator {
    display: none !important;
}

@media (max-width: 900px) {
    .nh-efp-calculator-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px 22px;
    }

    .nh-efp-calculator-meta {
        justify-content: flex-start;
    }

    .nh-efp-calculator-host .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .nh-efp-calculator-host {
        padding: 0;
        border-radius: 20px;
    }

    .nh-efp-calculator-topbar {
        min-height: 0;
        padding: 16px;
    }

    .nh-efp-calculator-brand {
        align-items: flex-start;
    }

    .nh-efp-calculator-brand small {
        margin-top: 4px;
    }

    .nh-efp-calculator-meta {
        gap: 6px;
    }

    .nh-efp-calculator-meta span {
        min-height: 27px;
        padding: 5px 9px;
        font-size: 10px;
    }

    .nh-efp-calculator-host .nh-estimator--inline .nh-estimator__panel {
        min-height: 0;
        border-radius: 0;
    }

    .nh-efp-calculator-host .nh-estimator__content {
        min-height: 0;
        padding: 30px 18px 34px;
    }

    .nh-efp-calculator-host .nh-estimator h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .nh-efp-calculator-host .nh-estimator__help {
        margin-bottom: 22px;
    }

    .nh-efp-calculator-host .nh-estimator__tiles,
    .nh-efp-calculator-host .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nh-efp-calculator-host .nh-estimator__tile--path {
        grid-template-columns: 46px minmax(0, 1fr) 24px;
        gap: 12px;
        min-height: 108px;
        padding: 16px;
        border-radius: 16px;
    }

    .nh-efp-calculator-host .nh-estimator__tile-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 19px;
    }

    .nh-efp-calculator-host .nh-estimator__tile-title {
        font-size: 15px;
    }

    .nh-efp-calculator-host .nh-estimator__tile-desc {
        font-size: 11.5px;
    }

    .nh-efp-calculator-host .nh-estimator__tile:not(.nh-estimator__tile--path) {
        min-height: 64px;
    }

    .nh-efp-calculator-host .nh-estimator__input {
        min-height: 54px;
        font-size: 16px; /* zapobiega zoomowaniu formularza na iOS */
    }

    .nh-efp-calculator-host .nh-estimator__footer {
        min-height: 54px;
        padding: 8px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nh-efp-calculator-host .nh-estimator__question {
        animation: none;
    }
}

/* v5.0.0 - Lato wszędzie na landingu i w kalkulatorze */
.nh-estimator-fullpage,
.nh-estimator-fullpage button,
.nh-estimator-fullpage input,
.nh-estimator-fullpage select,
.nh-estimator-fullpage textarea,
.nh-estimator-fullpage .nh-estimator,
.nh-estimator-fullpage .nh-estimator button,
.nh-estimator-fullpage .nh-estimator input,
.nh-estimator-fullpage .nh-estimator select,
.nh-estimator-fullpage .nh-estimator textarea {
    font-family: 'Lato', Arial, sans-serif !important;
}

/* Tryb handlowca */
.nh-staff-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 18px;
    border-bottom: 1px solid #24342d;
    background: #14221c;
    color: #fff;
    font-family: 'Lato', Arial, sans-serif;
}

.nh-staff-bar > div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.nh-staff-bar__dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #59d69e;
    box-shadow: 0 0 0 5px rgba(89,214,158,.12);
}

.nh-staff-bar strong {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.nh-staff-bar small {
    color: #a9bbb3;
    font-size: 12px;
}

.nh-staff-bar button {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.nh-efp-calculator-host.is-staff-mode {
    border-color: #304f42;
    box-shadow: 0 34px 90px rgba(22,47,36,.18);
}

.nh-staff-modal,
.nh-staff-modal * {
    box-sizing: border-box;
}

.nh-staff-modal {
    position: fixed;
    inset: 0;
    z-index: 10000010;
    display: grid;
    place-items: center;
    padding: 20px;
    font-family: 'Lato', Arial, sans-serif;
}

.nh-staff-modal.is-hidden {
    display: none !important;
}

.nh-staff-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 10, .72);
    backdrop-filter: blur(7px);
}

.nh-staff-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(470px, 100%);
    padding: 34px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: #fff;
    color: #111713;
    box-shadow: 0 30px 100px rgba(0,0,0,.3);
}

.nh-staff-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f5f3;
    color: #24312b;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
}

.nh-staff-modal__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #2f6b57;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.nh-staff-modal h2 {
    margin: 0 42px 12px 0;
    color: #101713;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.nh-staff-modal__lead {
    margin: 0 0 24px;
    color: #64706a;
    font-size: 14px;
    line-height: 1.6;
}

.nh-staff-modal__form label {
    display: block;
    margin-bottom: 8px;
    color: #27332e;
    font-size: 13px;
    font-weight: 800;
}

.nh-staff-modal__form input {
    width: 100%;
    min-height: 52px;
    margin: 0 0 12px;
    padding: 12px 15px;
    border: 1px solid #ccd8d2;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #111713;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 17px;
}

.nh-staff-modal__form input:focus {
    border-color: #2f6b57;
    box-shadow: 0 0 0 3px rgba(47,107,87,.1);
}

.nh-staff-modal__primary,
.nh-staff-modal__admin,
.nh-staff-modal__disable {
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lato', Arial, sans-serif !important;
    font-size: 13px;
    font-weight: 900;
}

.nh-staff-modal__primary {
    border: 0;
    background: #e12f38;
    color: #fff;
    box-shadow: 0 12px 26px rgba(225,47,56,.18);
}

.nh-staff-modal__admin {
    margin-top: 10px;
    border: 1px solid #ccd8d2;
    background: #fff;
    color: #233029;
}

.nh-staff-modal__disable {
    margin-top: 14px;
    border: 1px solid #e0b7ba;
    background: #fff8f8;
    color: #b5262e;
}

.nh-staff-modal__error {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff0f1;
    color: #ad242c;
    font-size: 12px;
    line-height: 1.45;
}

.nh-staff-modal__active {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 14px;
    border: 1px solid #cbe4d9;
    border-radius: 13px;
    background: #eef8f3;
}

.nh-staff-modal__active.is-hidden,
.nh-staff-modal__form.is-hidden,
.nh-staff-modal__admin.is-hidden,
.nh-staff-modal__disable.is-hidden,
.nh-staff-modal__error.is-hidden {
    display: none !important;
}

.nh-staff-modal__ok {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #2f6b57;
    color: #fff;
    font-weight: 900;
}

.nh-staff-modal__active strong,
.nh-staff-modal__active small {
    display: block;
}

.nh-staff-modal__active strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.nh-staff-modal__active small {
    color: #62706a;
    font-size: 11px;
    line-height: 1.4;
}

.nh-staff-modal__note {
    margin: 15px 0 0;
    color: #8a948f;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

html.nh-staff-modal-open,
html.nh-staff-modal-open body {
    overflow: hidden !important;
}

@media (max-width: 650px) {
    .nh-staff-bar {
        align-items: flex-start;
        padding: 11px 14px;
    }

    .nh-staff-bar > div {
        flex-wrap: wrap;
    }

    .nh-staff-bar small {
        flex-basis: calc(100% - 18px);
        margin-left: 18px;
    }

    .nh-staff-modal {
        align-items: end;
        padding: 0;
    }

    .nh-staff-modal__dialog {
        width: 100%;
        padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
        border-radius: 24px 24px 0 0;
    }
}

.nh-estimator-fullpage h1,
.nh-estimator-fullpage h2,
.nh-estimator-fullpage h3,
.nh-estimator-fullpage h4,
.nh-estimator-fullpage h5,
.nh-estimator-fullpage h6,
.nh-estimator-fullpage p,
.nh-estimator-fullpage a,
.nh-estimator-fullpage span,
.nh-estimator-fullpage strong,
.nh-estimator-fullpage small,
.nh-estimator-fullpage label,
.nh-estimator-fullpage summary,
.nh-estimator-fullpage dt,
.nh-estimator-fullpage dd {
    font-family: 'Lato', Arial, sans-serif !important;
}

/* ==========================================================
   v5.3.0 - kalkulator above the fold + moduł + panel handlowca
   ========================================================== */
.nh-efp-hero--first-screen {
    display: flex;
    align-items: center;
    min-height: calc(100svh - 82px);
    padding: clamp(26px, 3.5vw, 48px) 0;
}

.nh-efp-hero-layout {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(610px, 1.28fr);
    align-items: center;
    gap: clamp(30px, 4vw, 58px);
}

.nh-efp-hero-copy {
    min-width: 0;
    text-align: left;
}

.nh-efp-hero--first-screen .nh-efp-kicker {
    margin-bottom: 12px;
}

.nh-efp-hero--first-screen h1 {
    max-width: 640px;
    margin: 0 0 18px;
    font-size: clamp(38px, 4.35vw, 64px);
    line-height: 1;
    letter-spacing: -.042em;
    text-align: left;
}

.nh-efp-hero--first-screen .nh-efp-hero-lead,
.nh-efp-hero--first-screen .nh-efp-hero-support {
    max-width: 620px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.nh-efp-hero--first-screen .nh-efp-hero-lead {
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.42;
}

.nh-efp-hero--first-screen .nh-efp-hero-support {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.nh-efp-hero--first-screen .nh-efp-hero-actions {
    justify-content: flex-start;
    margin-top: 20px;
}

.nh-efp-hero-proof--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin: 24px 0 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
}

.nh-efp-hero-proof--compact > div {
    min-height: 82px;
    padding: 17px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nh-efp-hero-proof--compact > div:nth-child(2n) {
    border-right: 0;
}

.nh-efp-hero-proof--compact > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.nh-efp-hero-proof--compact strong {
    margin-bottom: 5px;
    font-size: clamp(22px, 2vw, 30px);
}

.nh-efp-hero-proof--compact span {
    font-size: 11px;
}

.nh-efp-calculator-column {
    min-width: 0;
}

.nh-efp-calculator-host--hero {
    max-width: none;
    box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    min-height: 68px;
    padding: 13px 18px;
}

.nh-efp-calculator-host--hero .nh-efp-calculator-brand strong {
    font-size: 14px;
}

.nh-efp-calculator-host--hero .nh-efp-calculator-brand small {
    font-size: 11px;
}

.nh-efp-calculator-host--hero .nh-estimator__content {
    padding: clamp(22px, 2.4vw, 34px) clamp(20px, 2.6vw, 36px) clamp(24px, 2.8vw, 38px);
}

.nh-efp-calculator-host--hero .nh-estimator h2 {
    margin-bottom: 8px;
    font-size: clamp(26px, 2.5vw, 35px);
}

.nh-efp-calculator-host--hero .nh-estimator__help {
    margin-bottom: 18px;
    line-height: 1.5;
}

.nh-efp-calculator-host--hero .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
    gap: 10px;
    margin-top: 16px;
}

.nh-efp-calculator-host--hero .nh-estimator__tile--path {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 96px;
    padding: 15px;
    border-radius: 15px;
}

.nh-efp-calculator-host--hero .nh-estimator__tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
}

.nh-efp-calculator-host--hero .nh-estimator__tile-title {
    margin-bottom: 4px;
    font-size: 14px;
}

.nh-efp-calculator-host--hero .nh-estimator__tile-desc {
    font-size: 10.5px;
    line-height: 1.4;
}

.nh-efp-calculator-host--hero .nh-estimator__footer {
    min-height: 48px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.nh-efp-hero-module-note {
    margin: 10px 10px 0;
    color: rgba(255,255,255,.58);
    font-size: 10.5px;
    line-height: 1.45;
    text-align: center;
}

.nh-efp-hero-module-note code {
    color: rgba(255,255,255,.82);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.nh-efp-process-section {
    padding: 28px 0 34px;
    background: #f8faf9;
}

.nh-efp-process-section .nh-efp-steps {
    margin-bottom: 0;
}

/* Rozszerzenie handlowe oparte na arkuszu "pytania - projekt szczegółowy". */
.nh-staff-details {
    margin: 0;
    border-bottom: 1px solid #dfe7e3;
    background: #f8fbf9;
}

.nh-staff-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    list-style: none;
    color: #23483b;
    font-size: 13px;
    font-weight: 900;
}

.nh-staff-details > summary::-webkit-details-marker {
    display: none;
}

.nh-staff-details > summary::after {
    content: '+';
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5f1eb;
    color: #2f6b57;
    font-size: 18px;
    line-height: 1;
}

.nh-staff-details[open] > summary::after {
    content: '–';
}

.nh-staff-details__body {
    padding: 2px 20px 22px;
}

.nh-staff-details__intro {
    max-width: 860px;
    margin: 0 0 14px;
    color: #65716b;
    font-size: 12px;
    line-height: 1.55;
}

.nh-staff-details__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nh-staff-details__field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.nh-staff-details__field--wide {
    grid-column: 1 / -1;
}

.nh-staff-details__field label {
    color: #26322d;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.4;
}

.nh-staff-details__field textarea,
.nh-staff-details__field input,
.nh-staff-details__field select {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 10px 11px;
    border: 1px solid #ccd8d2;
    border-radius: 10px;
    background: #fff;
    color: #1d2723;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
}

.nh-staff-details__field textarea {
    min-height: 78px;
    resize: vertical;
}

.nh-staff-details__field textarea:focus,
.nh-staff-details__field input:focus,
.nh-staff-details__field select:focus {
    outline: 0;
    border-color: #2f6b57;
    box-shadow: 0 0 0 3px rgba(47,107,87,.10);
}

.nh-staff-details__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.nh-staff-details__save {
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: #2f6b57;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.nh-staff-details__save:disabled {
    cursor: wait;
    opacity: .65;
}

.nh-staff-details__status {
    color: #65716b;
    font-size: 11px;
    line-height: 1.4;
}

.nh-staff-details__status.is-error {
    color: #a8272e;
}

@media (max-width: 1180px) {
    .nh-efp-hero-layout {
        grid-template-columns: minmax(280px, .65fr) minmax(560px, 1.35fr);
        gap: 28px;
    }

    .nh-efp-hero-proof--compact {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .nh-efp-hero--first-screen {
        min-height: calc(100svh - 70px);
        padding: 22px 0 28px;
    }

    .nh-efp-hero-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nh-efp-hero-copy {
        text-align: center;
    }

    .nh-efp-hero--first-screen h1,
    .nh-efp-hero--first-screen .nh-efp-hero-lead {
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .nh-efp-hero--first-screen h1 {
        margin-bottom: 10px;
        font-size: clamp(32px, 5.8vw, 46px);
    }

    .nh-efp-hero--first-screen .nh-efp-hero-lead {
        font-size: 16px;
    }

    .nh-efp-hero--first-screen .nh-efp-hero-support,
    .nh-efp-hero--first-screen .nh-efp-hero-actions,
    .nh-efp-hero-proof--compact {
        display: none;
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        flex-direction: row;
        align-items: center;
        padding: 12px 16px;
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-meta {
        justify-content: flex-end;
    }
}

@media (max-width: 650px) {
    .nh-efp-shell {
        width: min(100% - 22px, 1320px);
    }

    .nh-efp-hero--first-screen {
        padding: 14px 0 18px;
    }

    .nh-efp-hero--first-screen .nh-efp-kicker {
        margin-bottom: 7px;
        font-size: 9px;
    }

    .nh-efp-hero--first-screen h1 {
        margin-bottom: 7px;
        font-size: clamp(26px, 8.3vw, 34px);
        line-height: 1.02;
    }

    .nh-efp-hero--first-screen .nh-efp-hero-lead {
        display: none;
    }

    .nh-efp-calculator-host--hero {
        border-radius: 16px;
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        min-height: 50px;
        padding: 9px 12px;
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-brand {
        gap: 9px;
    }

    .nh-efp-calculator-host--hero .nh-efp-live-dot {
        flex-basis: 9px;
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 4px rgba(59,164,119,.1);
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-brand strong {
        margin: 0;
        font-size: 12px;
    }

    .nh-efp-calculator-host--hero .nh-efp-calculator-brand small,
    .nh-efp-calculator-host--hero .nh-efp-calculator-meta,
    .nh-efp-hero-module-note {
        display: none;
    }

    .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 16px 12px 18px;
    }

    .nh-efp-calculator-host--hero .nh-estimator__eyebrow {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .nh-efp-calculator-host--hero .nh-estimator h2 {
        margin-bottom: 6px;
        font-size: clamp(21px, 6.5vw, 27px);
    }

    .nh-efp-calculator-host--hero .nh-estimator__help {
        margin-bottom: 11px;
        font-size: 11px;
        line-height: 1.4;
    }

    .nh-efp-calculator-host--hero .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 10px;
    }

    .nh-efp-calculator-host--hero .nh-estimator__tile--path {
        display: block;
        min-height: 78px;
        padding: 10px;
        border-radius: 12px;
        text-align: left;
    }

    .nh-efp-calculator-host--hero .nh-estimator__tile-icon {
        display: none;
    }

    .nh-efp-calculator-host--hero .nh-estimator__tile-title {
        margin: 0;
        font-size: 12px;
        line-height: 1.25;
    }

    .nh-efp-calculator-host--hero .nh-estimator__tile-desc {
        margin-top: 5px;
        font-size: 9.5px;
        line-height: 1.3;
    }

    .nh-efp-calculator-host--hero .nh-estimator__tile-arrow {
        display: none;
    }

    .nh-efp-calculator-host--hero .nh-estimator__footer {
        min-height: 42px;
        padding: 4px 12px;
    }

    .nh-efp-process-section {
        padding: 20px 0;
    }

    .nh-efp-process-section .nh-efp-steps {
        grid-template-columns: 1fr;
    }

    .nh-staff-details__grid {
        grid-template-columns: 1fr;
    }

    .nh-staff-details__field--wide {
        grid-column: auto;
    }

    .nh-staff-details__body {
        padding: 2px 14px 16px;
    }

    .nh-staff-details > summary {
        padding: 12px 14px;
    }
}

/* ==========================================================
   v5.3.1 - kalkulator jest pierwszym widocznym elementem /test
   ========================================================== */
body.nh-estimator-tool-page .site-main,
body.nh-estimator-tool-page main.site-main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

.nh-efp-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.nh-efp-tool-first {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 12px 0 18px;
    background:
        radial-gradient(circle at 88% 8%, rgba(225,47,56,.18), transparent 24%),
        radial-gradient(circle at 8% 0%, rgba(74,146,120,.16), transparent 27%),
        linear-gradient(135deg, #0d1512 0%, #14211b 54%, #111a16 100%);
}

.nh-efp-tool-first .nh-efp-hero-gridline {
    z-index: -1;
}

.nh-efp-tool-shell {
    position: relative;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 56px rgba(0,0,0,.25);
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    min-height: 54px;
    padding: 10px 16px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    padding: 18px 24px 20px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    margin-bottom: 6px;
    font-size: clamp(25px, 2.2vw, 32px);
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
    margin-bottom: 12px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
    gap: 8px;
    margin-top: 12px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile--path {
    min-height: 82px;
    padding: 12px 14px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__footer {
    min-height: 42px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.nh-efp-tool-intro {
    padding: clamp(42px, 5vw, 70px) 0;
    background: #fff;
}

.nh-efp-tool-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
}

.nh-efp-tool-intro h2 {
    max-width: 700px;
    margin: 0 0 16px;
    color: #111713;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.035em;
}

.nh-efp-tool-intro p {
    max-width: 720px;
    margin: 0;
    color: #64706a;
    font-size: 16px;
    line-height: 1.7;
}

.nh-efp-tool-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #dfe6e2;
    border-radius: 18px;
    background: #f8faf9;
}

.nh-efp-tool-proof > div {
    min-height: 105px;
    padding: 22px;
    border-right: 1px solid #dfe6e2;
    border-bottom: 1px solid #dfe6e2;
}

.nh-efp-tool-proof > div:nth-child(2n) {
    border-right: 0;
}

.nh-efp-tool-proof > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.nh-efp-tool-proof strong,
.nh-efp-tool-proof span {
    display: block;
}

.nh-efp-tool-proof strong {
    margin-bottom: 6px;
    color: #17211d;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1;
}

.nh-efp-tool-proof span {
    color: #6c7771;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .nh-efp-tool-first {
        padding: 8px 0 12px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 14px 16px 16px;
    }

    .nh-efp-tool-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 650px) {
    .nh-efp-tool-first {
        padding: 4px 0 8px;
    }

    .nh-efp-tool-first .nh-efp-shell {
        width: min(100% - 8px, 1320px);
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero {
        border-radius: 12px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        min-height: 42px;
        padding: 7px 10px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 11px 10px 12px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
        font-size: clamp(20px, 6vw, 25px);
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
        margin-bottom: 8px;
        font-size: 10.5px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator[data-nh-question="project_status"] .nh-estimator__tiles {
        gap: 6px;
        margin-top: 7px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile--path {
        min-height: 68px;
        padding: 8px 9px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile-title {
        font-size: 11.5px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile-desc {
        margin-top: 3px;
        font-size: 8.8px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__footer {
        min-height: 36px;
        padding: 2px 10px;
    }

    .nh-efp-tool-intro {
        padding: 36px 0;
    }

    .nh-efp-tool-intro h2 {
        font-size: 31px;
    }

    .nh-efp-tool-proof {
        grid-template-columns: 1fr 1fr;
    }

    .nh-efp-tool-proof > div {
        min-height: 88px;
        padding: 16px;
    }
}


/* ==========================================================
   v5.3.2 - pasek 01/02/03 bezpośrednio nad kalkulatorem
   ========================================================== */
.nh-efp-tool-first .nh-efp-steps--above-calculator {
    max-width: 1180px;
    margin: 0 auto 10px;
    border-color: rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div {
    min-height: 88px;
    padding: 16px 18px 14px 62px;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
    left: 18px;
    top: 17px;
    width: 32px;
    height: 32px;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator small {
    font-size: 11px;
    line-height: 1.35;
}

/* Trzymamy pasek + pierwszy krok kalkulatora w pierwszym ekranie na typowym laptopie. */
@media (min-width: 901px) and (max-height: 820px) {
    .nh-efp-tool-first {
        padding-top: 8px;
        padding-bottom: 10px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator {
        margin-bottom: 7px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 74px;
        padding-top: 11px;
        padding-bottom: 10px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
        top: 12px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        min-height: 48px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding-top: 14px;
        padding-bottom: 15px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile--path {
        min-height: 74px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
}

@media (max-width: 900px) {
    .nh-efp-tool-first .nh-efp-steps--above-calculator {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 8px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 72px;
        padding: 12px 10px 10px 44px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
        left: 10px;
        top: 12px;
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator strong {
        font-size: 12px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator small {
        font-size: 9px;
        line-height: 1.25;
    }
}

@media (max-width: 650px) {
    .nh-efp-tool-first .nh-efp-steps--above-calculator {
        width: calc(100% - 4px);
        margin-bottom: 5px;
        border-radius: 10px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 54px;
        padding: 8px 5px 7px 31px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
        left: 5px;
        top: 8px;
        width: 21px;
        height: 21px;
        font-size: 8px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator strong {
        margin-bottom: 0;
        font-size: 9.5px;
        line-height: 1.15;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator small {
        display: none;
    }
}

/* ==========================================================
   v5.4.0 - jasny workspace + pełna szerokość formularza
   ========================================================== */
.nh-efp-tool-first {
    padding: 18px 0 28px;
    background:
        radial-gradient(circle at 10% 0%, rgba(47,107,87,.07), transparent 28%),
        radial-gradient(circle at 94% 6%, rgba(225,47,56,.06), transparent 24%),
        linear-gradient(180deg, #f7f9f8 0%, #f1f5f3 100%);
    border-bottom: 1px solid #e2e8e5;
}

.nh-efp-tool-first .nh-efp-hero-gridline {
    opacity: .42;
    background-image:
        linear-gradient(rgba(29,54,44,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,54,44,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.55) 72%, transparent 100%);
}

.nh-efp-tool-first .nh-efp-tool-shell {
    width: min(1480px, calc(100% - 48px));
}

.nh-efp-tool-first .nh-efp-steps--above-calculator {
    width: 100%;
    max-width: none;
    margin: 0 auto 12px;
    border: 1px solid #dbe4df;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(25,53,41,.055);
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div {
    min-height: 84px;
    background: #fff;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
    background: #edf5f1;
    color: #27614e;
    box-shadow: inset 0 0 0 1px rgba(47,107,87,.08);
}

.nh-efp-tool-first .nh-efp-calculator-host--hero {
    width: 100%;
    max-width: none;
    overflow: hidden;
    border: 1px solid #d7e1dc;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(24,52,40,.09);
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    min-height: 58px;
    padding: 11px 18px;
    border-bottom: 1px solid #e3e9e6;
    background: rgba(255,255,255,.98);
}

.nh-efp-tool-first .nh-efp-calculator-brand strong {
    color: #101713;
}

.nh-efp-tool-first .nh-efp-calculator-brand small {
    color: #68746e;
}

.nh-efp-tool-first .nh-efp-calculator-meta span {
    border-color: #dfe7e3;
    background: #f8faf9;
    color: #53605a;
    box-shadow: none;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__panel,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    background: #fff;
}

/* Na pełnej stronie nie ma już „kolumny formularza” 780/1080 px.
   Każde pytanie, input i CTA wykorzystują całą szerokość workspace. */
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    padding: 22px 30px 24px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content > *,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__question,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__form,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__lead-form,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__input-row {
    width: 100%;
    max-width: none;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__input-row {
    display: flex;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__input {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 60px;
    border-radius: 13px;
    border-color: #cbd7d1;
    background: #fff;
    font-size: 17px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__form > .nh-estimator__primary,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__lead-form > .nh-estimator__primary {
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
    border-radius: 12px;
    background: #e62f38;
    box-shadow: 0 10px 24px rgba(230,47,56,.14);
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__form > .nh-estimator__primary:hover,
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__lead-form > .nh-estimator__primary:hover {
    background: #d92932;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    max-width: 1180px;
    font-size: clamp(28px, 2.5vw, 38px);
    letter-spacing: -.025em;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
    max-width: 1040px;
}

.nh-efp-tool-first .nh-estimator__footer {
    border-top: 1px solid #e6ece9;
    background: #fbfcfb;
}

@media (min-width: 901px) and (max-height: 820px) {
    .nh-efp-tool-first {
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 72px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 16px 26px 18px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__input {
        min-height: 54px;
    }
}

@media (max-width: 900px) {
    .nh-efp-tool-first {
        padding: 10px 0 16px;
    }

    .nh-efp-tool-first .nh-efp-tool-shell {
        width: min(100% - 20px, 1480px);
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 16px 16px 18px;
    }
}

@media (max-width: 650px) {
    .nh-efp-tool-first .nh-efp-tool-shell {
        width: min(100% - 10px, 1480px);
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero {
        border-radius: 14px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator {
        border-radius: 12px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 13px 11px 14px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__input {
        min-height: 52px;
        font-size: 16px;
    }
}

@media (min-width: 651px) {
    .nh-efp-tool-first .nh-efp-steps--above-calculator > div + div {
        border-left: 1px solid #e2e8e5;
    }
}

/* ==========================================================
   v5.4.1 - jasne wyjaśnienie celu strony nad kalkulatorem
   ========================================================== */
.nh-efp-tool-first .nh-efp-tool-heading {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto 14px;
    padding: 0 18px;
    text-align: center;
}

.nh-efp-tool-first .nh-efp-tool-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 6px;
    padding: 5px 11px;
    border: 1px solid rgba(47, 107, 87, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #2f6b57;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .055em;
    line-height: 1.2;
    text-transform: uppercase;
}

.nh-efp-tool-first .nh-efp-tool-heading h1 {
    max-width: 980px;
    margin: 0 auto;
    color: #101714;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.nh-efp-tool-first .nh-efp-tool-heading p {
    max-width: 820px;
    margin: 8px auto 0;
    color: #56635d;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.45;
}

@media (min-width: 901px) and (max-height: 820px) {
    .nh-efp-tool-first .nh-efp-tool-heading {
        margin-bottom: 9px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading__eyebrow {
        min-height: 24px;
        margin-bottom: 3px;
        padding: 3px 9px;
        font-size: 10px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading h1 {
        font-size: clamp(25px, 2.5vw, 36px);
    }

    .nh-efp-tool-first .nh-efp-tool-heading p {
        margin-top: 4px;
        font-size: 15px;
    }
}

@media (max-width: 650px) {
    .nh-efp-tool-first .nh-efp-tool-heading {
        margin-bottom: 10px;
        padding: 0 9px;
        text-align: left;
    }

    .nh-efp-tool-first .nh-efp-tool-heading__eyebrow {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading h1 {
        font-size: clamp(25px, 8vw, 34px);
        line-height: 1.1;
    }

    .nh-efp-tool-first .nh-efp-tool-heading p {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.4;
    }
}


/* ==========================================================
   v5.4.2 - spokojniejszy progress bar i poprawiony rytm pionowy
   ========================================================== */
.nh-efp-tool-first {
    padding-top: 24px;
    padding-bottom: 32px;
}

.nh-efp-tool-first .nh-efp-tool-heading {
    max-width: 1120px;
    margin-bottom: 20px;
}

.nh-efp-tool-first .nh-efp-tool-heading__eyebrow {
    margin-bottom: 8px;
}

.nh-efp-tool-first .nh-efp-tool-heading h1 {
    max-width: 1040px;
    letter-spacing: -.03em;
    line-height: 1.12;
}

.nh-efp-tool-first .nh-efp-tool-heading p {
    margin-top: 10px;
    line-height: 1.55;
}

/* Pasek 01/02/03: mniej pustej przestrzeni, treść wyśrodkowana pionowo. */
.nh-efp-tool-first .nh-efp-steps--above-calculator {
    margin-bottom: 14px;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div {
    display: flex;
    min-height: 72px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 22px 14px 64px;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.nh-efp-tool-first .nh-efp-steps--above-calculator strong {
    margin-bottom: 4px;
    line-height: 1.25;
}

.nh-efp-tool-first .nh-efp-steps--above-calculator small {
    line-height: 1.45;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    min-height: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Kolor i wysokość zgodne z wytyczną New-House. */
.nh-efp-calculator-host .nh-estimator__progress {
    height: 7px;
    background: #eef2f0;
}

.nh-efp-calculator-host .nh-estimator__progress span {
    background: #3b7461;
}

/* Więcej oddechu między progress barem, nagłówkiem pytania i odpowiedziami. */
.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    padding: 28px 30px 32px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__eyebrow {
    margin: 0 0 10px;
    line-height: 1.3;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    max-width: 1240px;
    margin: 0 0 14px;
    font-size: clamp(30px, 2.55vw, 42px);
    letter-spacing: -.025em;
    line-height: 1.15;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
    max-width: 1120px;
    margin: 0 0 26px;
    line-height: 1.6;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tiles {
    gap: 12px;
}

.nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile:not(.nh-estimator__tile--path) {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 16px 18px;
    line-height: 1.35;
}

.nh-efp-tool-first .nh-estimator__footer {
    min-height: 58px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 901px) and (max-height: 820px) {
    .nh-efp-tool-first {
        padding-top: 14px;
        padding-bottom: 18px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading {
        margin-bottom: 12px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading h1 {
        line-height: 1.1;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 66px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 22px 28px 24px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
        font-size: clamp(28px, 2.35vw, 37px);
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .nh-efp-tool-first {
        padding-top: 16px;
        padding-bottom: 22px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading {
        margin-bottom: 14px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 66px;
        padding: 11px 10px 11px 44px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
        left: 10px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 22px 18px 24px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
        font-size: clamp(28px, 5vw, 38px);
    }
}

@media (max-width: 650px) {
    .nh-efp-tool-first .nh-efp-tool-heading {
        margin-bottom: 13px;
    }

    .nh-efp-tool-first .nh-efp-tool-heading h1 {
        line-height: 1.14;
    }

    .nh-efp-tool-first .nh-efp-tool-heading p {
        margin-top: 8px;
        line-height: 1.5;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator {
        margin-bottom: 8px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div {
        min-height: 54px;
        padding: 8px 5px 8px 31px;
    }

    .nh-efp-tool-first .nh-efp-steps--above-calculator > div > span {
        left: 5px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 20px 13px 22px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__eyebrow {
        margin-bottom: 8px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
        margin-bottom: 11px;
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.15;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
        margin-bottom: 20px;
    }

    .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile:not(.nh-estimator__tile--path) {
        min-height: 62px;
        padding: 13px 14px;
    }
}

/* ==========================================================
   v5.4.3 - tryb handlowca: brak CRM, osobna wysyłka PDF
   ========================================================== */
.nh-staff-details__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.nh-staff-details__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.nh-staff-details__save,
.nh-staff-details__email {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    cursor: pointer;
}

.nh-staff-details__save {
    border: 1px solid #3b7461;
    background: #fff;
    color: #2f6654;
}

.nh-staff-details__email {
    border: 1px solid #3b7461;
    background: #3b7461;
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 116, 97, .16);
}

.nh-staff-details__save:hover {
    background: #eef5f2;
}

.nh-staff-details__email:hover {
    background: #315f50;
}

.nh-staff-details__save:disabled,
.nh-staff-details__email:disabled {
    cursor: wait;
    opacity: .62;
}

.nh-staff-details__status {
    max-width: 920px;
    min-height: 16px;
    line-height: 1.5;
}

.nh-staff-bar small {
    line-height: 1.35;
}

@media (max-width: 650px) {
    .nh-staff-details__buttons {
        width: 100%;
    }

    .nh-staff-details__save,
    .nh-staff-details__email {
        width: 100%;
    }
}

/* ==========================================================
   v5.6.0 - flat landing / SEO + conversion redesign
   ========================================================== */
.nh-estimator-fullpage.nh-efp-v560,
.nh-estimator-fullpage.nh-efp-v560 * {
    box-shadow: none !important;
}

.nh-estimator-fullpage.nh-efp-v560 {
    --nh-red: #df2f38;
    --nh-red-dark: #bd252d;
    --nh-green: #2f6654;
    --nh-green-dark: #193d31;
    --nh-ink: #16221d;
    --nh-muted: #627068;
    --nh-line: #dbe3df;
    --nh-soft: #f4f7f5;
    --nh-soft-green: #eaf2ee;
    --nh-dark: #17382e;
    background: #fff;
    color: var(--nh-ink);
}

.nh-efp-v560 .nh-efp-shell {
    width: min(1220px, calc(100% - 48px));
}

.nh-efp-v560 #kalkulator,
.nh-efp-v560 #wynik,
.nh-efp-v560 #jak-liczymy,
.nh-efp-v560 #co-wplywa-na-koszt,
.nh-efp-v560 #przyklady,
.nh-efp-v560 #dlaczego-new-house,
.nh-efp-v560 #faq {
    scroll-margin-top: 92px;
}

.nh-efp-v560 .nh-efp-kicker,
.nh-efp-v560 .nh-efp-tool-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--nh-green);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.nh-efp-v560 .nh-efp-kicker::before,
.nh-efp-v560 .nh-efp-tool-heading__eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: currentColor;
}

.nh-efp-v560 .nh-efp-kicker--light {
    color: #c7ddd4;
}

.nh-efp-v560 .nh-efp-section-intro {
    max-width: 820px;
    margin: 0 0 42px;
}

.nh-efp-v560 .nh-efp-section-intro--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: end;
    max-width: none;
}

.nh-efp-v560 .nh-efp-section-intro h2,
.nh-efp-v560 .nh-efp-faq-title h2,
.nh-efp-v560 .nh-efp-sales-copy h2,
.nh-efp-v560 .nh-efp-final-cta h2 {
    margin: 0;
    color: var(--nh-ink);
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.nh-efp-v560 .nh-efp-section-intro p,
.nh-efp-v560 .nh-efp-faq-title p,
.nh-efp-v560 .nh-efp-sales-copy p,
.nh-efp-v560 .nh-efp-final-cta p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 16px;
    line-height: 1.72;
}

/* HERO + CALCULATOR */
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first {
    position: relative;
    min-height: 0;
    padding: clamp(44px, 6vw, 78px) 0 42px;
    background: var(--nh-soft) !important;
}

.nh-efp-v560 .nh-efp-hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, .52fr);
    column-gap: clamp(48px, 8vw, 110px);
    align-items: end;
    margin: 0 0 30px;
}

.nh-efp-v560 .nh-efp-hero-copy .nh-efp-tool-heading__eyebrow {
    grid-column: 1 / -1;
}

.nh-efp-v560 .nh-efp-hero-copy h1 {
    margin: 0;
    max-width: 780px;
    color: var(--nh-ink);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.052em;
    text-wrap: balance;
}

.nh-efp-v560 .nh-efp-hero-lead {
    margin: 0 0 4px;
    color: #536159;
    font-size: 17px;
    line-height: 1.72;
}

.nh-efp-v560 .nh-efp-hero-benefits {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #cfd9d4;
}

.nh-efp-v560 .nh-efp-hero-benefits span {
    position: relative;
    padding-left: 17px;
    color: #3f5048;
    font-size: 13px;
    font-weight: 800;
}

.nh-efp-v560 .nh-efp-hero-benefits span::before {
    content: '';
    position: absolute;
    top: .48em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nh-red);
}

.nh-efp-v560 .nh-efp-calculator-host,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero {
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #cfd9d4;
    border-radius: 16px;
    background: #fff !important;
}

.nh-efp-v560 .nh-efp-calculator-topbar,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--nh-line);
    background: #fff !important;
}

.nh-efp-v560 .nh-efp-calculator-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nh-efp-v560 .nh-efp-live-dot {
    position: relative;
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3b9b72;
}

.nh-efp-v560 .nh-efp-live-dot::after {
    display: none;
}

.nh-efp-v560 .nh-efp-calculator-brand strong,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-brand strong {
    display: block;
    color: #18241f;
    font-size: 14px;
    font-weight: 900;
}

.nh-efp-v560 .nh-efp-calculator-brand small,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-brand small {
    display: block;
    margin-top: 2px;
    color: #6b7871;
    font-size: 12px;
    line-height: 1.4;
}

.nh-efp-v560 .nh-efp-calculator-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.nh-efp-v560 .nh-efp-calculator-meta span,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-meta span {
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid #d9e1dd;
    border-radius: 6px;
    background: #fff;
    color: #526059;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
}

.nh-efp-v560 .nh-efp-calculator-meta span strong {
    color: inherit;
    font-size: inherit;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__progress {
    height: 6px;
    background: #e6ece9;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__progress span {
    background: var(--nh-green);
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__content,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    padding: clamp(30px, 4vw, 50px) clamp(24px, 4.6vw, 56px) clamp(34px, 4vw, 52px);
    background: #fff !important;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__content > * {
    max-width: 1060px;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator h2,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    margin: 0 0 12px;
    color: var(--nh-ink);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__help,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__help {
    margin-bottom: 24px;
    color: #66736c;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile,
.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile--path,
.nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile--path {
    transform: none !important;
    border: 1px solid #d7e0dc;
    border-radius: 10px;
    background: #fff !important;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile:hover,
.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile--path:hover {
    transform: none !important;
    border-color: #7fa18f;
    background: #f6faf8 !important;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile.is-selected {
    border-color: var(--nh-green);
    background: var(--nh-soft-green) !important;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__tile-icon {
    border-radius: 8px;
    background: var(--nh-soft-green);
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__input {
    border: 1px solid #c9d4ce;
    border-radius: 8px;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__input:focus {
    outline: 3px solid rgba(47,102,84,.14);
    outline-offset: 1px;
    border-color: var(--nh-green);
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__primary,
.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__secondary,
.nh-efp-v560 .nh-efp-btn {
    border-radius: 7px;
    transform: none !important;
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__primary {
    background: var(--nh-red);
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__primary:hover {
    background: var(--nh-red-dark);
}

.nh-efp-v560 .nh-efp-calculator-host .nh-estimator__footer {
    border-top: 1px solid var(--nh-line);
    background: #fafbfa;
}

.nh-efp-v560 .nh-efp-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
    border-top: 1px solid #cfd9d4;
    border-bottom: 1px solid #cfd9d4;
}

.nh-efp-v560 .nh-efp-trust-row > div {
    min-height: 86px;
    padding: 18px 22px;
    border-right: 1px solid #cfd9d4;
}

.nh-efp-v560 .nh-efp-trust-row > div:first-child {
    padding-left: 0;
}

.nh-efp-v560 .nh-efp-trust-row > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.nh-efp-v560 .nh-efp-trust-row strong,
.nh-efp-v560 .nh-efp-trust-row span {
    display: block;
}

.nh-efp-v560 .nh-efp-trust-row strong {
    margin-bottom: 4px;
    color: var(--nh-ink);
    font-size: 15px;
}

.nh-efp-v560 .nh-efp-trust-row span {
    color: #6a7770;
    font-size: 12px;
    line-height: 1.45;
}

/* ANCHORS */
.nh-efp-v560 .nh-efp-anchor-nav {
    position: sticky;
    z-index: 30;
    top: 0;
    border-top: 1px solid #e0e6e3;
    border-bottom: 1px solid #e0e6e3;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
}

.nh-efp-v560 .nh-efp-anchor-nav .nh-efp-shell {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nh-efp-v560 .nh-efp-anchor-nav a {
    flex: 0 0 auto;
    padding: 15px 0 13px;
    border-bottom: 2px solid transparent;
    color: #536159;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.nh-efp-v560 .nh-efp-anchor-nav a:hover {
    border-bottom-color: var(--nh-red);
    color: var(--nh-ink);
}

/* RESULT */
.nh-efp-v560 .nh-efp-result-section {
    padding: clamp(76px, 8vw, 112px) 0;
    background: #fff;
}

.nh-efp-v560 .nh-efp-result-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--nh-line);
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-v560 .nh-efp-result-grid article {
    min-height: 260px;
    padding: 30px 26px;
    border: 0;
    border-right: 1px solid var(--nh-line);
    border-radius: 0;
    background: #fff;
}

.nh-efp-v560 .nh-efp-result-grid article:last-child {
    border-right: 0;
}

.nh-efp-v560 .nh-efp-result-grid article > span {
    width: auto;
    height: auto;
    margin: 0 0 48px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--nh-red);
    font-size: 12px;
    font-weight: 900;
}

.nh-efp-v560 .nh-efp-result-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.nh-efp-v560 .nh-efp-result-grid p {
    font-size: 14px;
    line-height: 1.65;
}

/* METHOD */
.nh-efp-v560 .nh-efp-method-section {
    padding: clamp(78px, 8vw, 116px) 0;
    background: var(--nh-soft);
}

.nh-efp-v560 .nh-efp-method-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: clamp(44px, 7vw, 90px);
    align-items: start;
}

.nh-efp-v560 .nh-efp-method-list {
    border-top: 1px solid #ced8d3;
}

.nh-efp-v560 .nh-efp-method-list article {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #ced8d3;
}

.nh-efp-v560 .nh-efp-method-list article > span {
    display: block;
    width: auto;
    height: auto;
    padding-top: 3px;
    border-radius: 0;
    background: transparent;
    color: var(--nh-green);
    font-size: 13px;
}

.nh-efp-v560 .nh-efp-method-list h3 {
    font-size: 19px;
}

.nh-efp-v560 .nh-efp-compare-card {
    position: sticky;
    top: 84px;
    padding: 30px;
    border: 0;
    border-radius: 12px;
    background: var(--nh-dark);
    color: #fff;
}

.nh-efp-v560 .nh-efp-compare-card .nh-efp-compare-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #bcd2c9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nh-efp-v560 .nh-efp-compare-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
}

.nh-efp-v560 .nh-efp-compare-card > p {
    margin: 0;
    color: #bdd0c8;
    font-size: 14px;
    line-height: 1.7;
}

.nh-efp-v560 .nh-efp-compare-good {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.nh-efp-v560 .nh-efp-compare-good strong,
.nh-efp-v560 .nh-efp-compare-good span {
    display: block;
}

.nh-efp-v560 .nh-efp-compare-good strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.nh-efp-v560 .nh-efp-compare-good span {
    color: #bcd2c9;
    font-size: 12px;
    line-height: 1.5;
}

/* FACTORS */
.nh-efp-v560 .nh-efp-factors-section {
    padding: clamp(78px, 8vw, 116px) 0;
    background: #fff;
}

.nh-efp-v560 .nh-efp-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--nh-line);
    background: var(--nh-line);
}

.nh-efp-v560 .nh-efp-factor-grid article {
    min-height: 230px;
    padding: 28px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.nh-efp-v560 .nh-efp-factor-grid article > span {
    display: block;
    margin-bottom: 34px;
    color: var(--nh-red);
    font-size: 11px;
    font-weight: 900;
}

.nh-efp-v560 .nh-efp-factor-grid h3 {
    margin: 0 0 10px;
    color: var(--nh-ink);
    font-size: 19px;
    line-height: 1.25;
}

.nh-efp-v560 .nh-efp-factor-grid p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* EXAMPLES */
.nh-efp-v560 .nh-efp-examples-section {
    padding: clamp(78px, 8vw, 116px) 0;
    background: var(--nh-soft);
}

.nh-efp-v560 .nh-efp-example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.nh-efp-v560 .nh-efp-example-card,
.nh-efp-v560 .nh-efp-example-card--featured {
    position: relative;
    padding: 28px;
    border: 1px solid #d3dcd7;
    border-radius: 10px;
    background: #fff;
    transform: none !important;
}

.nh-efp-v560 .nh-efp-example-card--featured {
    border-color: var(--nh-green);
}

.nh-efp-v560 .nh-efp-example-card--featured::before {
    content: 'Przykład 120 m²';
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-50%);
    padding: 5px 8px;
    border-radius: 4px;
    background: var(--nh-green);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.nh-efp-v560 .nh-efp-example-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-v560 .nh-efp-example-head span {
    color: #5d6a63;
    font-size: 13px;
    font-weight: 800;
}

.nh-efp-v560 .nh-efp-example-head strong {
    color: var(--nh-ink);
    font-size: 14px;
}

.nh-efp-v560 .nh-efp-example-price small,
.nh-efp-v560 .nh-efp-example-price strong {
    display: block;
}

.nh-efp-v560 .nh-efp-example-price small {
    margin-bottom: 6px;
    color: #728078;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.nh-efp-v560 .nh-efp-example-price strong {
    color: var(--nh-ink);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.nh-efp-v560 .nh-efp-example-card dl {
    margin: 24px 0 20px;
}

.nh-efp-v560 .nh-efp-example-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid #edf0ee;
}

.nh-efp-v560 .nh-efp-example-card dt,
.nh-efp-v560 .nh-efp-example-card dd {
    margin: 0;
    font-size: 12px;
}

.nh-efp-v560 .nh-efp-example-card dt {
    color: #758179;
}

.nh-efp-v560 .nh-efp-example-card dd {
    color: var(--nh-ink);
    font-weight: 800;
    text-align: right;
}

.nh-efp-v560 .nh-efp-example-card > a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--nh-red);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.nh-efp-v560 .nh-efp-fineprint {
    max-width: 900px;
    margin: 22px 0 0;
    color: #748078;
    font-size: 11px;
    line-height: 1.6;
}

/* SALES */
.nh-efp-v560 .nh-efp-sales-section {
    padding: clamp(78px, 8vw, 116px) 0;
    background: var(--nh-dark);
    color: #fff;
}

.nh-efp-v560 .nh-efp-sales-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.nh-efp-v560 .nh-efp-sales-copy h2 {
    color: #fff;
}

.nh-efp-v560 .nh-efp-sales-copy p {
    margin-top: 20px;
    color: #b9cdc4;
}

.nh-efp-v560 .nh-efp-sales-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.nh-efp-v560 .nh-efp-sales-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
}

.nh-efp-v560 .nh-efp-sales-points > div {
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.nh-efp-v560 .nh-efp-sales-points strong,
.nh-efp-v560 .nh-efp-sales-points span {
    display: block;
}

.nh-efp-v560 .nh-efp-sales-points strong {
    margin-bottom: 9px;
    color: #fff;
    font-size: 17px;
}

.nh-efp-v560 .nh-efp-sales-points span {
    color: #b9cdc4;
    font-size: 12px;
    line-height: 1.55;
}

.nh-efp-v560 .nh-efp-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.nh-efp-v560 .nh-efp-btn-primary {
    border-color: var(--nh-red);
    background: var(--nh-red);
    color: #fff;
}

.nh-efp-v560 .nh-efp-btn-primary:hover {
    border-color: var(--nh-red-dark);
    background: var(--nh-red-dark);
    color: #fff;
}

.nh-efp-v560 .nh-efp-btn-white {
    border-color: #fff;
    background: #fff;
    color: var(--nh-dark);
}

.nh-efp-v560 .nh-efp-btn-white:hover {
    background: transparent;
    color: #fff;
}

.nh-efp-v560 .nh-efp-text-link {
    color: var(--nh-red);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.nh-efp-v560 .nh-efp-text-link--light {
    color: #fff;
}

/* SEO COPY */
.nh-efp-v560 .nh-efp-seo-copy-section {
    padding: clamp(76px, 8vw, 110px) 0;
    background: #fff;
}

.nh-efp-v560 .nh-efp-copy-columns--compact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--nh-line);
    border-bottom: 1px solid var(--nh-line);
}

.nh-efp-v560 .nh-efp-copy-columns--compact > div {
    padding: 28px 28px 28px 0;
    border-right: 1px solid var(--nh-line);
}

.nh-efp-v560 .nh-efp-copy-columns--compact > div + div {
    padding-left: 28px;
}

.nh-efp-v560 .nh-efp-copy-columns--compact > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.nh-efp-v560 .nh-efp-copy-columns--compact h3 {
    margin: 0 0 10px;
    color: var(--nh-ink);
    font-size: 19px;
    line-height: 1.3;
}

.nh-efp-v560 .nh-efp-copy-columns--compact p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.72;
}

.nh-efp-v560 .nh-efp-internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 24px;
}

.nh-efp-v560 .nh-efp-internal-links a {
    color: var(--nh-green);
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* FAQ */
.nh-efp-v560 .nh-efp-faq-section {
    padding: clamp(78px, 8vw, 116px) 0;
    background: var(--nh-soft);
}

.nh-efp-v560 .nh-efp-faq-layout {
    display: grid;
    grid-template-columns: minmax(290px, .42fr) minmax(0, .58fr);
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}

.nh-efp-v560 .nh-efp-faq-title {
    position: sticky;
    top: 84px;
}

.nh-efp-v560 .nh-efp-faq-title h2 {
    font-size: clamp(32px, 3.6vw, 46px);
}

.nh-efp-v560 .nh-efp-faq-title p {
    margin-top: 18px;
}

.nh-efp-v560 .nh-efp-faq-title .nh-efp-btn {
    margin-top: 24px;
}

.nh-efp-v560 .nh-efp-faq-list {
    border-top: 1px solid #ccd7d1;
}

.nh-efp-v560 .nh-efp-faq-list details {
    border: 0;
    border-bottom: 1px solid #ccd7d1;
    border-radius: 0;
    background: transparent;
}

.nh-efp-v560 .nh-efp-faq-list summary {
    padding: 20px 34px 20px 0;
    color: var(--nh-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.4;
}

.nh-efp-v560 .nh-efp-faq-list details p {
    margin: 0;
    padding: 0 34px 22px 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.72;
}

/* FINAL CTA */
.nh-efp-v560 .nh-efp-final-cta {
    padding: 54px 0;
    background: #e8f0ec;
    color: var(--nh-ink);
}

.nh-efp-v560 .nh-efp-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nh-efp-v560 .nh-efp-final-cta h2 {
    max-width: 780px;
    font-size: clamp(30px, 3.4vw, 44px);
}

.nh-efp-v560 .nh-efp-final-cta p {
    max-width: 720px;
    margin-top: 12px;
}

.nh-efp-v560 .nh-efp-final-cta .nh-efp-kicker--light {
    color: var(--nh-green);
}

.nh-efp-v560 .nh-efp-final-cta .nh-efp-btn-white {
    flex: 0 0 auto;
    border-color: var(--nh-red);
    background: var(--nh-red);
    color: #fff;
}

.nh-efp-v560 .nh-efp-final-cta .nh-efp-btn-white:hover {
    border-color: var(--nh-red-dark);
    background: var(--nh-red-dark);
    color: #fff;
}

/* Accessibility / flat focus */
.nh-efp-v560 a:focus-visible,
.nh-efp-v560 button:focus-visible,
.nh-efp-v560 summary:focus-visible,
.nh-efp-v560 input:focus-visible,
.nh-efp-v560 select:focus-visible,
.nh-efp-v560 textarea:focus-visible {
    outline: 3px solid rgba(47,102,84,.22);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    .nh-efp-v560 .nh-efp-hero-copy {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-hero-lead {
        max-width: 820px;
        margin-top: 20px;
    }

    .nh-efp-v560 .nh-efp-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-v560 .nh-efp-result-grid article:nth-child(2) {
        border-right: 0;
    }

    .nh-efp-v560 .nh-efp-result-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--nh-line);
    }

    .nh-efp-v560 .nh-efp-sales-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nh-efp-v560 .nh-efp-section-intro--split,
    .nh-efp-v560 .nh-efp-method-layout,
    .nh-efp-v560 .nh-efp-faq-layout {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-section-intro--split {
        gap: 18px;
        align-items: start;
    }

    .nh-efp-v560 .nh-efp-compare-card,
    .nh-efp-v560 .nh-efp-faq-title {
        position: static;
    }

    .nh-efp-v560 .nh-efp-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-v560 .nh-efp-trust-row > div:nth-child(2) {
        border-right: 0;
    }

    .nh-efp-v560 .nh-efp-trust-row > div:nth-child(-n+2) {
        border-bottom: 1px solid #cfd9d4;
    }

    .nh-efp-v560 .nh-efp-trust-row > div:first-child,
    .nh-efp-v560 .nh-efp-trust-row > div:nth-child(3) {
        padding-left: 0;
    }

    .nh-efp-v560 .nh-efp-factor-grid,
    .nh-efp-v560 .nh-efp-example-grid,
    .nh-efp-v560 .nh-efp-copy-columns--compact {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-copy-columns--compact > div,
    .nh-efp-v560 .nh-efp-copy-columns--compact > div + div {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--nh-line);
    }

    .nh-efp-v560 .nh-efp-copy-columns--compact > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 650px) {
    .nh-efp-v560 .nh-efp-shell {
        width: min(100% - 28px, 1220px);
    }

    .nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first {
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .nh-efp-v560 .nh-efp-hero-copy h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .nh-efp-v560 .nh-efp-hero-lead {
        font-size: 15px;
        line-height: 1.65;
    }

    .nh-efp-v560 .nh-efp-hero-benefits {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .nh-efp-v560 .nh-efp-calculator-host,
    .nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero {
        border-radius: 10px;
    }

    .nh-efp-v560 .nh-efp-calculator-topbar,
    .nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }

    .nh-efp-v560 .nh-efp-calculator-meta {
        justify-content: flex-start;
    }

    .nh-efp-v560 .nh-efp-calculator-host .nh-estimator__content,
    .nh-efp-v560.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
        padding: 25px 14px 28px;
    }

    .nh-efp-v560 .nh-efp-trust-row {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-trust-row > div,
    .nh-efp-v560 .nh-efp-trust-row > div:first-child,
    .nh-efp-v560 .nh-efp-trust-row > div:nth-child(3) {
        min-height: 0;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid #cfd9d4;
    }

    .nh-efp-v560 .nh-efp-trust-row > div:last-child {
        border-bottom: 0;
    }

    .nh-efp-v560 .nh-efp-anchor-nav .nh-efp-shell {
        gap: 18px;
    }

    .nh-efp-v560 .nh-efp-result-grid {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-result-grid article,
    .nh-efp-v560 .nh-efp-result-grid article:nth-child(2) {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--nh-line);
    }

    .nh-efp-v560 .nh-efp-result-grid article:last-child {
        border-bottom: 0;
    }

    .nh-efp-v560 .nh-efp-result-grid article > span {
        margin-bottom: 20px;
    }

    .nh-efp-v560 .nh-efp-factor-grid {
        border-left: 0;
        border-right: 0;
    }

    .nh-efp-v560 .nh-efp-factor-grid article {
        min-height: 0;
        padding: 24px 4px;
    }

    .nh-efp-v560 .nh-efp-factor-grid article > span {
        margin-bottom: 18px;
    }

    .nh-efp-v560 .nh-efp-example-card,
    .nh-efp-v560 .nh-efp-example-card--featured {
        padding: 22px;
    }

    .nh-efp-v560 .nh-efp-sales-points {
        grid-template-columns: 1fr;
    }

    .nh-efp-v560 .nh-efp-sales-points > div {
        min-height: 0;
    }

    .nh-efp-v560 .nh-efp-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nh-efp-v560 .nh-efp-final-cta .nh-efp-btn-white {
        width: 100%;
    }
}

/* =========================================================
   v5.7.0 — SOFT / LIGHT REDESIGN
   Lighter typography, warmer surfaces, rounded geometry,
   no dark full-width blocks and no decorative box shadows.
   ========================================================= */

.nh-estimator-fullpage.nh-efp-v570 {
    --nh-red: #e6323b;
    --nh-red-dark: #c92730;
    --nh-green: #56786b;
    --nh-green-dark: #46665a;
    --nh-ink: #242b28;
    --nh-muted: #6d746f;
    --nh-line: #e5e6e2;
    --nh-soft: #f8f7f4;
    --nh-soft-green: #eff5f1;
    --nh-warm: #f7f2ee;
    --nh-warm-2: #fcfaf8;
    --nh-dark: #242b28;
    background: #fff;
    color: var(--nh-ink);
    font-family: inherit;
}

/* Keep the landing deliberately shadow-free. */
.nh-efp-v570 .nh-efp-calculator-host,
.nh-efp-v570 .nh-efp-calculator-host *,
.nh-efp-v570 .nh-efp-result-grid article,
.nh-efp-v570 .nh-efp-factor-grid article,
.nh-efp-v570 .nh-efp-example-card,
.nh-efp-v570 .nh-efp-compare-card,
.nh-efp-v570 .nh-efp-sales-points > div,
.nh-efp-v570 .nh-efp-btn {
    box-shadow: none !important;
}

.nh-efp-v570 .nh-efp-shell {
    width: min(1180px, calc(100% - 48px));
}

.nh-efp-v570 .nh-efp-kicker,
.nh-efp-v570 .nh-efp-tool-heading__eyebrow {
    gap: 9px;
    margin-bottom: 16px;
    color: #617c70;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .085em;
}

.nh-efp-v570 .nh-efp-kicker::before,
.nh-efp-v570 .nh-efp-tool-heading__eyebrow::before {
    width: 20px;
    height: 1px;
}

.nh-efp-v570 .nh-efp-section-intro h2,
.nh-efp-v570 .nh-efp-faq-title h2,
.nh-efp-v570 .nh-efp-sales-copy h2,
.nh-efp-v570 .nh-efp-final-cta h2 {
    color: var(--nh-ink);
    font-size: clamp(31px, 3.6vw, 48px);
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.nh-efp-v570 .nh-efp-section-intro p,
.nh-efp-v570 .nh-efp-faq-title p,
.nh-efp-v570 .nh-efp-sales-copy p,
.nh-efp-v570 .nh-efp-final-cta p {
    color: var(--nh-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
}

/* Hero / tool first */
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first {
    padding: clamp(46px, 6vw, 72px) 0 36px;
    background: linear-gradient(180deg, #fbfaf8 0%, #f7f7f4 100%) !important;
}

.nh-efp-v570 .nh-efp-hero-copy {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .55fr);
    column-gap: clamp(44px, 7vw, 90px);
    margin-bottom: 32px;
}

.nh-efp-v570 .nh-efp-hero-copy h1 {
    max-width: 720px;
    color: #222925;
    font-size: clamp(42px, 5.4vw, 62px);
    font-weight: 650;
    line-height: 1.03;
    letter-spacing: -.038em;
}

.nh-efp-v570 .nh-efp-hero-lead {
    color: #636a66;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.nh-efp-v570 .nh-efp-hero-benefits {
    gap: 10px 24px;
    margin-top: 25px;
    padding-top: 18px;
    border-top-color: #e1e2de;
}

.nh-efp-v570 .nh-efp-hero-benefits span {
    color: #565e59;
    font-size: 12.5px;
    font-weight: 600;
}

.nh-efp-v570 .nh-efp-hero-benefits span::before {
    width: 6px;
    height: 6px;
    background: var(--nh-red);
}

/* Calculator shell */
.nh-efp-v570 .nh-efp-calculator-host,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero {
    border-color: #dedfdb;
    border-radius: 24px;
    background: #fff !important;
}

.nh-efp-v570 .nh-efp-calculator-topbar,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
    min-height: 76px;
    padding: 17px 22px;
    border-bottom-color: #e9e9e5;
    background: #fff !important;
}

.nh-efp-v570 .nh-efp-live-dot {
    background: #69a188;
}

.nh-efp-v570 .nh-efp-calculator-brand strong,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-brand strong {
    color: #292f2c;
    font-size: 14px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-calculator-brand small,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-brand small {
    color: #777d79;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-calculator-meta span,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-meta span {
    min-height: 29px;
    padding: 6px 10px;
    border-color: #e4e4df;
    border-radius: 999px;
    background: #fafaf8;
    color: #6c736f;
    font-size: 10px;
    font-weight: 600;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__panel {
    border: 0 !important;
    border-radius: 0 0 24px 24px !important;
    background: #fff !important;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__progress {
    height: 4px;
    background: #f0f0ec;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__progress span {
    background: #78a08f;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__content,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__content {
    min-height: 400px;
    padding: clamp(34px, 4vw, 50px) clamp(24px, 5vw, 58px) clamp(38px, 4vw, 54px);
    background: #fff !important;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__eyebrow {
    color: #648072;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator h2,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    margin-bottom: 10px;
    color: #242b28;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -.025em;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator h3,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator strong,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile-title {
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__help {
    color: #777e79;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.65;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tiles {
    gap: 12px;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile--path,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator__tile--path {
    min-height: 86px;
    border-color: #e0e3df;
    border-radius: 18px;
    background: #fdfdfc !important;
    color: #2b312e;
    font-size: 14px;
    font-weight: 600;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile:hover,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile--path:hover {
    border-color: #b9c9c1;
    background: #f7faf8 !important;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile.is-selected {
    border-color: #9ab6aa;
    background: #f0f6f3 !important;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile-icon {
    border-radius: 13px;
    background: #eef5f1;
    color: #5e8574;
    font-weight: 600;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile-desc {
    color: #818783;
    font-size: 11.5px;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile-arrow {
    color: #89918c;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__input,
.nh-efp-v570 .nh-efp-calculator-host select.nh-estimator__input,
.nh-efp-v570 .nh-efp-calculator-host textarea.nh-estimator__input {
    border-color: #dbdfdb;
    border-radius: 14px;
    background: #fff;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__primary,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__secondary,
.nh-efp-v570 .nh-efp-btn {
    border-radius: 999px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__footer {
    min-height: 58px;
    border-top-color: #ecece8;
    background: #fbfbf9;
    color: #878c88;
    font-size: 11px;
    font-weight: 500;
}

/* Trust row becomes a soft row of mini-cards. */
.nh-efp-v570 .nh-efp-trust-row {
    gap: 10px;
    margin-top: 18px;
    border: 0;
}

.nh-efp-v570 .nh-efp-trust-row > div,
.nh-efp-v570 .nh-efp-trust-row > div:first-child,
.nh-efp-v570 .nh-efp-trust-row > div:last-child {
    min-height: 80px;
    padding: 17px 18px;
    border: 1px solid #e4e5e1;
    border-radius: 17px;
    background: rgba(255,255,255,.76);
}

.nh-efp-v570 .nh-efp-trust-row strong {
    color: #343a37;
    font-size: 13.5px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-trust-row span {
    color: #808681;
    font-size: 11.5px;
}

/* Anchor nav */
.nh-efp-v570 .nh-efp-anchor-nav {
    border-color: #eeeeea;
    background: rgba(255,255,255,.94);
}

.nh-efp-v570 .nh-efp-anchor-nav a {
    color: #707772;
    font-size: 11.5px;
    font-weight: 600;
}

/* Result cards */
.nh-efp-v570 .nh-efp-result-section {
    padding: clamp(70px, 7vw, 94px) 0;
    background: #fff;
}

.nh-efp-v570 .nh-efp-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    background: transparent;
}

.nh-efp-v570 .nh-efp-result-grid article,
.nh-efp-v570 .nh-efp-result-grid article:last-child {
    min-height: 230px;
    padding: 26px 24px;
    border: 1px solid #e6e6e2;
    border-radius: 20px;
    background: #fcfcfa;
}

.nh-efp-v570 .nh-efp-result-grid article > span {
    display: inline-flex;
    width: 34px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    border-radius: 999px;
    background: #fff1f1;
    color: #dc3a42;
    font-size: 10.5px;
    font-weight: 700;
}

.nh-efp-v570 .nh-efp-result-grid h3 {
    color: #303632;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.35;
}

.nh-efp-v570 .nh-efp-result-grid p {
    color: #737a75;
    font-size: 13.5px;
    font-weight: 400;
}

/* Method */
.nh-efp-v570 .nh-efp-method-section {
    padding: clamp(72px, 7vw, 98px) 0;
    background: #f8f7f4;
}

.nh-efp-v570 .nh-efp-method-list {
    border-top-color: #dedfda;
}

.nh-efp-v570 .nh-efp-method-list article {
    border-bottom-color: #dedfda;
}

.nh-efp-v570 .nh-efp-method-list article > span {
    color: #6e8e80;
    font-size: 12px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-method-list h3 {
    color: #303632;
    font-size: 18px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-method-list p {
    color: #727975;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-compare-card {
    top: 78px;
    padding: 30px;
    border: 1px solid #e3ddd7;
    border-radius: 24px;
    background: #fbf7f3;
    color: var(--nh-ink);
}

.nh-efp-v570 .nh-efp-compare-card .nh-efp-compare-label {
    color: #a36e68;
    font-size: 10px;
    font-weight: 700;
}

.nh-efp-v570 .nh-efp-compare-card h3 {
    color: #34302e;
    font-size: 25px;
    font-weight: 650;
    line-height: 1.2;
}

.nh-efp-v570 .nh-efp-compare-card > p {
    color: #77706c;
    font-size: 13.5px;
}

.nh-efp-v570 .nh-efp-compare-good {
    border-top-color: #e8ddd7;
}

.nh-efp-v570 .nh-efp-compare-good strong {
    color: #3c3936;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-compare-good span {
    color: #817975;
}

/* Factors */
.nh-efp-v570 .nh-efp-factors-section {
    padding: clamp(72px, 7vw, 98px) 0;
}

.nh-efp-v570 .nh-efp-factor-grid {
    gap: 12px;
    border: 0;
    background: transparent;
}

.nh-efp-v570 .nh-efp-factor-grid article {
    min-height: 215px;
    padding: 26px;
    border: 1px solid #e6e7e3;
    border-radius: 20px;
    background: #fff;
}

.nh-efp-v570 .nh-efp-factor-grid article > span {
    display: inline-flex;
    width: 32px;
    height: 26px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 999px;
    background: #fff1f1;
    color: #dc3a42;
    font-size: 10px;
    font-weight: 700;
}

.nh-efp-v570 .nh-efp-factor-grid h3 {
    color: #303632;
    font-size: 18px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-factor-grid p {
    color: #747a76;
    font-size: 13.5px;
}

/* Examples: remove the dark price strips entirely. */
.nh-efp-v570 .nh-efp-examples-section {
    padding: clamp(72px, 7vw, 98px) 0;
    background: #f8f7f4;
}

.nh-efp-v570 .nh-efp-example-grid {
    gap: 14px;
}

.nh-efp-v570 .nh-efp-example-card,
.nh-efp-v570 .nh-efp-example-card--featured {
    overflow: visible;
    padding: 24px;
    border: 1px solid #e1e1dc;
    border-radius: 22px;
    background: #fff;
}

.nh-efp-v570 .nh-efp-example-card--featured {
    border-color: #cbd9d2;
    background: #fdfefd;
}

.nh-efp-v570 .nh-efp-example-card--featured::before {
    content: 'Najczęściej liczony metraż';
    top: 17px;
    right: 18px;
    transform: none;
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf5f1;
    color: #648173;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .04em;
}

.nh-efp-v570 .nh-efp-example-head {
    margin: 0 0 20px;
    padding: 0 0 17px;
    border-top: 0;
    border-bottom-color: #ecece8;
}

.nh-efp-v570 .nh-efp-example-head span {
    color: #6f7671;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .04em;
}

.nh-efp-v570 .nh-efp-example-head strong {
    color: #323835;
    font-size: 13px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-example-price {
    margin: 0;
    padding: 18px 18px 17px;
    border: 1px solid #ede6df;
    border-radius: 16px;
    background: #faf6f2;
}

.nh-efp-v570 .nh-efp-example-price small {
    margin-bottom: 7px;
    color: #857d78;
    font-size: 10px;
    font-weight: 500;
}

.nh-efp-v570 .nh-efp-example-price strong {
    color: #3c3734;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 650;
    line-height: 1.2;
}

.nh-efp-v570 .nh-efp-example-card dl {
    margin: 18px 0 16px;
    padding: 0;
}

.nh-efp-v570 .nh-efp-example-card dl > div {
    border-color: #eeeeea;
}

.nh-efp-v570 .nh-efp-example-card dt {
    color: #7b817d;
    font-weight: 400;
}

.nh-efp-v570 .nh-efp-example-card dd {
    color: #363c38;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-example-card > a {
    padding: 8px 0 0;
    color: #d9343c !important;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-fineprint {
    color: #858a86;
}

/* Sales: light, warm and calm instead of a dark wall. */
.nh-efp-v570 .nh-efp-sales-section {
    padding: clamp(72px, 7vw, 98px) 0;
    background: #f6f1ed;
    color: var(--nh-ink);
}

.nh-efp-v570 .nh-efp-sales-layout {
    gap: clamp(42px, 7vw, 86px);
}

.nh-efp-v570 .nh-efp-sales-copy h2 {
    max-width: 620px;
    color: #2f302e;
}

.nh-efp-v570 .nh-efp-sales-copy p {
    color: #716d69;
}

.nh-efp-v570 .nh-efp-sales-section .nh-efp-kicker--light {
    color: #9a6964;
}

.nh-efp-v570 .nh-efp-sales-points {
    gap: 10px;
    border: 0;
}

.nh-efp-v570 .nh-efp-sales-points > div {
    min-height: 138px;
    padding: 22px;
    border: 1px solid #e6ddd6;
    border-radius: 20px;
    background: rgba(255,255,255,.68);
}

.nh-efp-v570 .nh-efp-sales-points strong {
    color: #383937;
    font-size: 15.5px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-sales-points span {
    color: #7b7773;
    font-size: 11.5px;
}

.nh-efp-v570 .nh-efp-btn {
    min-height: 47px;
    padding: 12px 20px;
    font-size: 12.5px;
}

.nh-efp-v570 .nh-efp-btn-white {
    border-color: var(--nh-red);
    background: var(--nh-red);
    color: #fff !important;
}

.nh-efp-v570 .nh-efp-btn-white:hover {
    border-color: var(--nh-red-dark);
    background: var(--nh-red-dark);
    color: #fff !important;
}

.nh-efp-v570 .nh-efp-text-link,
.nh-efp-v570 .nh-efp-text-link--light {
    color: #b7393f !important;
    font-weight: 650;
}

/* SEO copy */
.nh-efp-v570 .nh-efp-seo-copy-section {
    padding: clamp(72px, 7vw, 96px) 0;
}

.nh-efp-v570 .nh-efp-copy-columns--compact {
    gap: 12px;
    border: 0;
}

.nh-efp-v570 .nh-efp-copy-columns--compact > div,
.nh-efp-v570 .nh-efp-copy-columns--compact > div + div,
.nh-efp-v570 .nh-efp-copy-columns--compact > div:last-child {
    padding: 24px;
    border: 1px solid #e7e7e3;
    border-radius: 19px;
    background: #fcfcfa;
}

.nh-efp-v570 .nh-efp-copy-columns--compact h3 {
    color: #343a36;
    font-size: 17.5px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-copy-columns--compact p {
    color: #737975;
    font-size: 13.5px;
}

.nh-efp-v570 .nh-efp-internal-links a {
    color: #607b6f;
    font-weight: 600;
}

/* FAQ */
.nh-efp-v570 .nh-efp-faq-section {
    padding: clamp(72px, 7vw, 98px) 0;
    background: #f8f7f4;
}

.nh-efp-v570 .nh-efp-faq-list {
    border-top: 0;
}

.nh-efp-v570 .nh-efp-faq-list details {
    margin-bottom: 9px;
    border: 1px solid #e2e3df;
    border-radius: 17px;
    background: #fff;
}

.nh-efp-v570 .nh-efp-faq-list summary {
    padding: 18px 46px 18px 20px;
    color: #343a37;
    font-size: 14px;
    font-weight: 650;
}

.nh-efp-v570 .nh-efp-faq-list details p {
    padding: 0 46px 19px 20px;
    color: #747a76;
    font-size: 13.5px;
}

/* Final CTA */
.nh-efp-v570 .nh-efp-final-cta {
    padding: 54px 0;
    background: #eff4f1;
}

.nh-efp-v570 .nh-efp-final-cta .nh-efp-kicker--light {
    color: #668173;
}

.nh-efp-v570 .nh-efp-final-cta .nh-efp-btn-white {
    border-color: var(--nh-red);
    background: var(--nh-red);
    color: #fff !important;
}

/* Typography restraint for all landing headings and labels. */
.nh-efp-v570 h1,
.nh-efp-v570 h2,
.nh-efp-v570 h3,
.nh-efp-v570 h4,
.nh-efp-v570 strong,
.nh-efp-v570 summary,
.nh-efp-v570 a,
.nh-efp-v570 button {
    font-synthesis-weight: none;
}

@media (max-width: 1050px) {
    .nh-efp-v570 .nh-efp-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-efp-v570 .nh-efp-result-grid article,
    .nh-efp-v570 .nh-efp-result-grid article:nth-child(2),
    .nh-efp-v570 .nh-efp-result-grid article:nth-child(-n+2) {
        border: 1px solid #e6e6e2;
    }
}

@media (max-width: 900px) {
    .nh-efp-v570 .nh-efp-hero-copy {
        grid-template-columns: 1fr;
    }

    .nh-efp-v570 .nh-efp-hero-lead {
        max-width: 760px;
        margin-top: 18px;
    }

    .nh-efp-v570 .nh-efp-factor-grid,
    .nh-efp-v570 .nh-efp-example-grid,
    .nh-efp-v570 .nh-efp-copy-columns--compact {
        gap: 10px;
    }

    .nh-efp-v570 .nh-efp-copy-columns--compact > div,
    .nh-efp-v570 .nh-efp-copy-columns--compact > div + div,
    .nh-efp-v570 .nh-efp-copy-columns--compact > div:last-child {
        padding: 22px;
        border: 1px solid #e7e7e3;
    }
}

@media (max-width: 650px) {
    .nh-efp-v570 .nh-efp-shell {
        width: min(100% - 28px, 1180px);
    }

    .nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first {
        padding-top: 30px;
        padding-bottom: 24px;
    }

    .nh-efp-v570 .nh-efp-hero-copy h1 {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.06;
    }

    .nh-efp-v570 .nh-efp-hero-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .nh-efp-v570 .nh-efp-calculator-host,
    .nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero {
        border-radius: 20px;
    }

    .nh-efp-v570 .nh-efp-calculator-topbar,
    .nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-efp-calculator-topbar {
        padding: 15px;
    }

    .nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile,
    .nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile--path {
        border-radius: 15px;
    }

    .nh-efp-v570 .nh-efp-trust-row {
        gap: 8px;
    }

    .nh-efp-v570 .nh-efp-trust-row > div,
    .nh-efp-v570 .nh-efp-trust-row > div:first-child,
    .nh-efp-v570 .nh-efp-trust-row > div:nth-child(3),
    .nh-efp-v570 .nh-efp-trust-row > div:last-child {
        padding: 14px 15px;
        border: 1px solid #e4e5e1;
        border-radius: 15px;
    }

    .nh-efp-v570 .nh-efp-result-grid {
        grid-template-columns: 1fr;
        gap: 9px;
        border: 0;
    }

    .nh-efp-v570 .nh-efp-result-grid article,
    .nh-efp-v570 .nh-efp-result-grid article:nth-child(2),
    .nh-efp-v570 .nh-efp-result-grid article:nth-child(-n+2),
    .nh-efp-v570 .nh-efp-result-grid article:last-child {
        min-height: 0;
        padding: 22px;
        border: 1px solid #e6e6e2;
        border-radius: 18px;
    }

    .nh-efp-v570 .nh-efp-result-grid article > span,
    .nh-efp-v570 .nh-efp-factor-grid article > span {
        margin-bottom: 18px;
    }

    .nh-efp-v570 .nh-efp-factor-grid {
        border: 0;
    }

    .nh-efp-v570 .nh-efp-factor-grid article {
        min-height: 0;
        padding: 22px;
        border: 1px solid #e6e7e3;
        border-radius: 18px;
    }

    .nh-efp-v570 .nh-efp-example-card,
    .nh-efp-v570 .nh-efp-example-card--featured {
        padding: 21px;
        border-radius: 19px;
    }

    .nh-efp-v570 .nh-efp-example-card--featured::before {
        position: static;
        display: inline-flex;
        margin: 0 0 16px;
    }

    .nh-efp-v570 .nh-efp-sales-points {
        gap: 8px;
    }

    .nh-efp-v570 .nh-efp-sales-points > div {
        border: 1px solid #e6ddd6;
        border-radius: 18px;
    }

    .nh-efp-v570 .nh-efp-faq-list details {
        border-radius: 15px;
    }
}

/* v5.7.0 typography polish after visual QA */
.nh-efp-v570 .nh-efp-tool-heading__eyebrow {
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.nh-efp-v570 .nh-efp-hero-copy h1,
.nh-efp-v570 .nh-efp-section-intro h2,
.nh-efp-v570 .nh-efp-faq-title h2,
.nh-efp-v570 .nh-efp-sales-copy h2,
.nh-efp-v570 .nh-efp-final-cta h2 {
    font-weight: 500;
}

.nh-efp-v570 .nh-efp-calculator-host .nh-estimator h2,
.nh-efp-v570.nh-estimator-fullpage .nh-efp-tool-first .nh-efp-calculator-host--hero .nh-estimator h2 {
    font-weight: 500;
}

.nh-efp-v570 .nh-efp-result-grid h3,
.nh-efp-v570 .nh-efp-method-list h3,
.nh-efp-v570 .nh-efp-factor-grid h3,
.nh-efp-v570 .nh-efp-copy-columns--compact h3,
.nh-efp-v570 .nh-efp-compare-card h3,
.nh-efp-v570 .nh-efp-sales-points strong,
.nh-efp-v570 .nh-efp-example-price strong,
.nh-efp-v570 .nh-efp-example-card dd,
.nh-efp-v570 .nh-efp-calculator-brand strong,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator__tile-title,
.nh-efp-v570 .nh-efp-calculator-host .nh-estimator strong {
    font-weight: 600;
}

.nh-efp-v570 .nh-efp-btn,
.nh-efp-v570 .nh-efp-text-link,
.nh-efp-v570 .nh-efp-text-link--light,
.nh-efp-v570 .nh-efp-example-card > a,
.nh-efp-v570 .nh-efp-internal-links a,
.nh-efp-v570 .nh-efp-faq-list summary,
.nh-efp-v570 .nh-efp-hero-benefits span,
.nh-efp-v570 .nh-efp-kicker,
.nh-efp-v570 .nh-efp-tool-heading__eyebrow {
    font-weight: 600;
}
