.nr-page {
    --nr-ink: #0f172a;
    --nr-muted: #526076;
    --nr-border: #dfe7ef;
    --nr-soft: #f5f8fb;
    --nr-primary: #009a49;
    --nr-primary-dark: #007a3a;
    --nr-blue: #3157b7;
    color: var(--nr-ink);
    background: #fff;
}

.nr-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(0, 179, 89, 0.18), transparent 32%),
        linear-gradient(135deg, #071c15 0%, #0f2c22 48%, #112b40 100%);
    color: #fff;
    padding: 56px 0 50px;
}

.nr-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.nr-breadcrumb a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
}

.nr-breadcrumb a:hover {
    color: #fff;
}

.nr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(255,255,255,0.07);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.nr-hero h1 {
    max-width: 850px;
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin: 0 0 18px;
}

.nr-hero .nr-lead {
    max-width: 780px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
}

.nr-review-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 24px;
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
}

.nr-review-line strong {
    color: #fff;
}

.nr-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 42px;
    align-items: start;
    padding: 48px 0 72px;
}

.nr-article {
    min-width: 0;
}

.nr-article p,
.nr-article li {
    color: #334155;
    font-size: 1rem;
    line-height: 1.78;
}

.nr-article h2 {
    margin: 46px 0 16px;
    color: var(--nr-ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.nr-article h3 {
    margin: 30px 0 10px;
    color: var(--nr-ink);
    font-size: 1.2rem;
    font-weight: 800;
}

.nr-article a {
    color: #1769aa;
    text-underline-offset: 3px;
}

.nr-answer {
    border: 1px solid #a7d9be;
    border-left: 5px solid var(--nr-primary);
    border-radius: 14px;
    background: #f1fbf6;
    padding: 22px 24px;
    margin-bottom: 28px;
}

.nr-answer > strong {
    display: block;
    color: #075b32;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.nr-answer p {
    margin: 0;
    color: #173f2c;
    font-size: 1.04rem;
}

.nr-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 34px;
}

.nr-stat {
    padding: 20px;
    border: 1px solid var(--nr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.nr-stat span {
    display: block;
    color: var(--nr-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin-bottom: 6px;
}

.nr-stat strong {
    display: block;
    color: var(--nr-ink);
    font-size: 1.65rem;
    letter-spacing: -0.03em;
}

.nr-stat small {
    display: block;
    color: var(--nr-muted);
    margin-top: 3px;
}

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

.nr-card {
    border: 1px solid var(--nr-border);
    border-radius: 15px;
    background: #fff;
    padding: 22px;
}

.nr-card h3 {
    margin-top: 0;
}

.nr-card p:last-child,
.nr-card ul:last-child {
    margin-bottom: 0;
}

.nr-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: nr-step;
}

.nr-steps li {
    position: relative;
    padding: 2px 0 24px 52px;
    counter-increment: nr-step;
}

.nr-steps li::before {
    content: counter(nr-step);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e7f8ef;
    color: #08733c;
    font-weight: 800;
}

.nr-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 38px;
    bottom: 4px;
    width: 2px;
    background: #d8eee2;
}

.nr-steps strong {
    display: block;
    color: var(--nr-ink);
    margin-bottom: 3px;
}

.nr-callout {
    border-radius: 14px;
    background: #eff4ff;
    border: 1px solid #cbd8fb;
    padding: 20px 22px;
    margin: 24px 0;
}

.nr-callout.warning {
    background: #fff8e8;
    border-color: #efd899;
}

.nr-callout p:last-child {
    margin-bottom: 0;
}

.nr-table-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 12px;
}

.nr-table-search {
    min-width: min(100%, 320px);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 0.95rem;
}

.nr-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--nr-border);
    border-radius: 14px;
    background: #fff;
}

.nr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    min-width: 610px;
}

.nr-table th,
.nr-table td {
    padding: 13px 15px;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
    vertical-align: middle;
}

.nr-table th {
    background: #f4f7fa;
    color: #3f4b5e;
    font-size: 0.78rem;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.nr-table tbody tr:last-child td {
    border-bottom: 0;
}

.nr-table tbody tr:hover {
    background: #f9fbfc;
}

.nr-number {
    font-weight: 800;
    color: var(--nr-ink);
    white-space: nowrap;
}

.nr-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nr-source-note {
    color: var(--nr-muted);
    font-size: 0.88rem;
    margin-top: 12px;
}

.nr-faq {
    border-top: 1px solid var(--nr-border);
    padding: 20px 0;
}

.nr-faq:last-child {
    border-bottom: 1px solid var(--nr-border);
}

.nr-faq h3 {
    margin: 0 0 8px;
    font-size: 1.06rem;
}

.nr-faq p {
    margin: 0;
}

.nr-cta {
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 15%, rgba(255,255,255,0.12), transparent 30%),
        linear-gradient(135deg, #063b24, #0a6b3b);
    color: #fff;
    padding: 32px;
    margin: 40px 0;
}

.nr-cta h2 {
    color: #fff;
    margin: 0 0 10px;
}

.nr-cta p {
    color: rgba(255,255,255,0.82);
    max-width: 680px;
}

.nr-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.nr-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 10px;
    background: #fff;
    color: #075b32 !important;
    font-weight: 800;
    text-decoration: none;
}

.nr-button.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff !important;
}

.nr-sidebar {
    position: sticky;
    top: 22px;
}

.nr-side-card {
    border: 1px solid var(--nr-border);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 16px;
    background: #fff;
}

.nr-side-card h2 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.nr-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nr-side-links li + li {
    border-top: 1px solid #edf1f5;
}

.nr-side-links a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 0;
    color: #263548;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
}

.nr-side-links a:hover,
.nr-side-links a[aria-current="page"] {
    color: var(--nr-primary-dark);
}

.nr-side-cta {
    background: #0f2c22;
    color: #fff;
    border: 0;
}

.nr-side-cta p {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.6;
}

.nr-side-cta .nr-button {
    width: 100%;
}

.nr-index-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--nr-border);
    color: var(--nr-muted);
    font-size: 0.84rem;
}

@media (max-width: 991px) {
    .nr-layout {
        grid-template-columns: 1fr;
    }

    .nr-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .nr-side-card {
        margin-bottom: 0;
    }
}

@media (max-width: 700px) {
    .nr-hero {
        padding: 42px 0 38px;
    }

    .nr-layout {
        padding: 34px 0 54px;
    }

    .nr-stat-grid,
    .nr-grid-2,
    .nr-sidebar {
        grid-template-columns: 1fr;
    }

    .nr-stat-grid {
        gap: 10px;
    }

    .nr-cta {
        padding: 25px 22px;
    }
}
