.ns-impl {
    padding: 123px 0 127px;
    background: rgba(252, 252, 252, 1);
}
.ns-impl__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}
.ns-impl__header {
    text-align: center;
    margin-bottom: 42px;
}
span.ns-impl__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
    letter-spacing: 0.14em;
}
.ns-impl__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.ns-impl__subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}
.ns-impl__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}
.ns-impl__step {
    display: flex;
    flex-direction: column;
    gap: 0;
}
span.ns-impl__num {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0D5AFF;
    line-height: 28px;
    margin-bottom: 10px;
}
.ns-impl__step-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    line-height: 27px;
    margin: 0 0 16px;
}
.ns-impl__step-body {
    margin-bottom: 20px;
}
.ns-impl__step-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 26px;
    margin: 0 0 16px;
}
/* ── Tick checklist ── */
.ns-impl__check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ns-impl__check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
}
li.ns-impl__check-item:before {
    display: none;
}
li.ns-impl__check-item svg {
    min-width: 22px;
    margin-top: 1px;
}
.ns-impl__check-item span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 22px;
}
/* ── Your involvement callout ── */
.ns-impl__callout {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: auto;
    background: #fff;
}
.ns-impl__callout p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
    line-height: 22px;
    margin: 0;
}
.ns-impl__callout strong {
    font-weight: 700;
    color: #111827;
}
/* ── Responsive ── */
@media (max-width: 1024px) {
    .ns-impl__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 48px;
    }
    .ns-impl__title {
        font-size: 34px;
    }
        .ns-impl__container {
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    .ns-impl {
        padding: 56px 0 64px;
    }
    .ns-impl__container {
        padding: 0 15px;
    }
    .ns-impl__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ns-impl__title {
        font-size: 26px;
        line-height: 36px;
    }
    span.ns-impl__num {
        font-size: 14px;
    }
}
