:root {
    --nh-heading-font: Exo, sans-serif;
    --nh-body-font: "Nunito Sans", sans-serif;
    --nh-navy: #0b084d;
    --nh-navy-2: #11106a;
    --nh-green: #08D336;
    --nh-green-dark: #08D336;
    --nh-ink: #12112f;
    --nh-muted: #5C5A88;
    --nh-soft: #f5f5fa;
    --nh-line: #e5e4ef;
}

html {
    scroll-behavior: smooth;
}

.nh-page {
    --nh-section-space: 110px;
    overflow: hidden;
    color: var(--nh-ink);
    background: #fff;
    font-family: var(--nh-body-font);
}

.text-navy{
    color: var(--nh-navy) !important;
}

.fw-500{
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

/* Landing-page motion system */
.nh-page [data-nh-reveal] {
    opacity: 0;
    transform: translate3d(0, 46px, 0);
    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .95s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--nh-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.nh-page [data-nh-reveal="left"] {
    transform: translate3d(-52px, 0, 0);
}

.nh-page [data-nh-reveal="right"] {
    transform: translate3d(52px, 0, 0);
}

.nh-page [data-nh-reveal="scale"] {
    transform: translate3d(0, 32px, 0) scale(.94);
}

.nh-page [data-nh-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

.nh-hero .row > .col-lg-6:first-child > * {
    opacity: 0;
    animation: nh-hero-copy-in .78s cubic-bezier(.22, 1, .36, 1) forwards;
}

.nh-hero .row > .col-lg-6:first-child > :nth-child(1) { animation-delay: .08s; }
.nh-hero .row > .col-lg-6:first-child > :nth-child(2) { animation-delay: .16s; }
.nh-hero .row > .col-lg-6:first-child > :nth-child(3) { animation-delay: .25s; }
.nh-hero .row > .col-lg-6:first-child > :nth-child(4) { animation-delay: .34s; }
.nh-hero .row > .col-lg-6:first-child > :nth-child(5) { animation-delay: .43s; }

.nh-laptop-wrap {
    opacity: 0;
    animation:
        nh-hero-visual-in 1s .18s cubic-bezier(.22, 1, .36, 1) forwards,
        nh-hero-float 5.5s 1.35s ease-in-out infinite;
}

@keyframes nh-hero-copy-in {
    from { opacity: 0; transform: translate3d(0, 24px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes nh-hero-visual-in {
    from { opacity: 0; transform: translate3d(42px, 18px, 0) scale(.97); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes nh-hero-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -11px, 0); }
}

.nh-page h1,
.nh-page h2,
.nh-page h3,
.nh-page h4 {
    font-family: var(--nh-heading-font);
}

.nh-page h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #04091E;
}

.nh-page h2 span,
.nh-page h1 span {
    color: var(--nh-green);
}

.nh-page p {
    font-family: var(--nh-body-font);
    font-size: 16px;
    line-height: 1.75;
}

.nh-page > .nh-section {
    padding: var(--nh-section-space) 0;
}

.nh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nh-green);
    font-family: Exo, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px !important;
}

.nh-heading {
    max-width: 900px;
    margin-bottom: 54px;
}

.nh-heading p {
    max-width: 820px;
    color: var(--nh-muted);
}

.nh-heading-center {
    text-align: start;
}

.nh-heading-center p {
    margin-right: auto;
    margin-left: auto;
}

.nh-heading-center .nh-eyebrow::before {
    display: none;
}

.nh-heading-light,
.nh-heading-light p {
    color: #fff;
}

.nh-solutions-head {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 80px;
    align-items: end;
}

.nh-solutions-head h2 {
    max-width: 760px;
}

.nh-solutions-head > p {
    max-width: 610px;
    margin: 0 0 7px;
}

.nh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.nh-btn:hover {
    transform: translateY(-2px);
}

.nh-btn-green {
    color: #041f0b;
    background: var(--nh-green);
}

.nh-btn-green:hover {
    color: #041f0b;
    background: #3bed61;
}

.nh-btn-gradient {
    background: linear-gradient(135deg, #0B084D 0%, #08D336 100%);
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(8, 211, 54, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #FFFFFF;
}

.nh-btn-gradient:hover {
        background: linear-gradient(135deg, #0B084D 0%, #08D336 100%);
    box-shadow: 0 6px 20px rgba(8, 211, 54, 0.6);
    transform: translateY(-2px);
}

.nh-btn-white-outline {
    color: #fff;
    border-color: #fff;
    border-radius: 18px;
    background: transparent;
}

.nh-btn-white-outline:hover {
    color: var(--nh-navy);
    border-color: #fff;
    background: #fff;
}

.nh-btn-blue {
    color: #fff;
    background: var(--nh-navy);
}

.nh-btn-blue:hover {
    color: #fff;
    background: #17128c;
}

.nh-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.05);
}

.nh-btn-outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,.12);
}

.nh-btn-white {
    color: var(--nh-navy);
    background: #fff;
}

.nh-btn-white:hover {
    color: var(--nh-navy);
    background: #f1f0ff;
}

/* Shared site button system — hero buttons intentionally excluded */
.nh-page .nh-btn:not(.nh-btn-gradient):not(.hero-button) {
    min-height: 48px;
    gap: 11px;
    padding: 11px 28px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.nh-page .nh-btn:not(.nh-btn-gradient):not(.hero-button) i {
    font-size: 12px;
    transition: transform .25s ease;
}

.nh-page .nh-btn:not(.nh-btn-gradient):not(.hero-button):hover {
    transform: translateY(-2px);
}

.nh-page .nh-btn:not(.nh-btn-gradient):not(.hero-button):hover i {
    transform: translateX(4px);
}

.nh-page .nh-btn-green,
.nh-page .nh-btn-blue {
    border-color: var(--nh-green);
    color: #fff;
    background: var(--nh-green);
}

.nh-page .nh-btn-green:hover,
.nh-page .nh-btn-blue:hover {
    border-color: var(--nh-green-dark);
    color: #fff;
    background: var(--nh-green-dark);
    box-shadow: 0 8px 20px rgba(8,211,54,.2);
}

.nh-page .nh-btn-outline {
    border-color: var(--nh-green);
    color: #fff;
    background: var(--nh-green);
}

.nh-page .nh-btn-outline:hover {
    border-color: var(--nh-green-dark);
    color: #fff;
    background: var(--nh-green-dark);
    box-shadow: 0 8px 20px rgba(8,211,54,.2);
}

.nh-page .nh-btn-white-outline {
    border-color: rgba(255,255,255,.7);
    color: #fff;
    background: transparent;
}

.nh-page .nh-btn-white-outline:hover {
    border-color: #fff;
    color: var(--nh-navy);
    background: #fff;
}

.nh-page .nh-btn-white {
    border-color: #fff;
    color: var(--nh-navy);
    background: #fff;
}

.nh-page .nh-btn-white:hover {
    border-color: var(--nh-green);
    color: #041f0b;
    background: var(--nh-green);
}

.nh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--nh-navy);
    font-weight: 800;
    text-decoration: none;
}

.nh-text-link:hover {
    color: var(--nh-green-dark);
}

.nh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.nh-actions-center {
    justify-content: center;
}

/* Hero */
.nh-hero {
    position: relative;
    isolation: isolate;
    min-height: 730px;
    overflow: hidden;
    padding: 125px 0 180px;
    color: #fff;
    background: #0b174d url('../images/new-home-hero-gradient-2560.png') no-repeat center/100% 100%;
}

.nh-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: url('../images/new-home-hero-wave-pattern-2560.png') no-repeat center/112% 100%;
    mix-blend-mode: screen;
    opacity: .13;
    animation: nh-hero-pattern-drift 14s ease-in-out infinite alternate;
}

@keyframes nh-hero-pattern-drift {
    from { transform: translate3d(-1%, 0, 0) scale(1.02); }
    to { transform: translate3d(1%, -1%, 0) scale(1.06); }
}

.nh-hero .container {
    z-index: 2;
}

.nh-hero h1 {
    max-width: 720px;
    margin: 18px 0 25px;
    font-size: 48px;
    font-weight: 700;
}

.nh-hero-copy {
    max-width: 670px;
    margin-bottom: 34px;
    color: #e0e0f0;
    font-size: 18px !important;
}

.nh-hero-clients {
    max-width: 620px;
    margin-top: 34px;
}

.nh-hero-clients > p {
    margin-bottom: 16px;
    color: var(--nh-green);
    font-family: Exo, sans-serif;
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.nh-hero-clients .nh-logo-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 16px clamp(10px, 1.4vw, 28px);
    width: 100%;
}

.nh-hero-clients .nh-logo-track img {
    width: 100%;
    max-width: 92px;
    height: 90px;
    justify-self: start;
}

.nh-hero-fade {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 250px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 28%, rgba(255,255,255,.68) 74%, #fff 100%);
}

.nh-laptop-wrap {
    position: relative;
    isolation: isolate;
    width: calc(100% + 180px);
    max-width: 820px;
    margin: 20px 0 0 -70px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.nh-laptop-wrap::before {
    position: absolute;
    z-index: 0;
    top: 8%;
    right: 2%;
    bottom: 10%;
    left: 12%;
    border-radius: 50%;
    background: radial-gradient(circle at 58% 42%, rgba(39, 189, 255, .2), rgba(24, 72, 190, .09) 44%, transparent 72%);
    filter: blur(22px);
    content: "";
    pointer-events: none;
}

.nh-laptop-wrap::after {
    position: absolute;
    z-index: 1;
    right: 7%;
    bottom: 1%;
    left: 14%;
    height: 10%;
    border-radius: 50%;
    background: rgba(0, 2, 22, .7);
    filter: blur(18px);
    transform: perspective(500px) rotateX(68deg) translateZ(-28px);
    content: "";
    pointer-events: none;
}

.nh-laptop-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 25px rgba(0, 2, 25, .48)) drop-shadow(15px 12px 18px rgba(0, 0, 0, .28));
    transform: rotateY(-2.5deg) rotateX(1deg) translateZ(14px) scale(1.035);
    transform-origin: 52% 58%;
    transition: filter .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .nh-laptop-wrap:hover .nh-laptop-image {
        filter: drop-shadow(0 34px 30px rgba(0, 2, 25, .55)) drop-shadow(18px 14px 20px rgba(0, 0, 0, .32));
        transform: rotateY(-1deg) rotateX(.25deg) translate3d(0, -5px, 24px) scale(1.045);
    }
}

@media (min-width: 1400px) {
    .nh-laptop-wrap {
        width: min(940px, calc(50vw + 110px));
        max-width: none;
        margin-left: -110px;
    }
}

.nh-foundation{
    padding: 0px 0px 110px 0px !important;
}

.nh-review-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    min-width: 218px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 10px;
    color: var(--nh-ink);
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    bottom: -24px;
    right: clamp(24px, 6vw, 110px);
}

.nh-review-score {
    min-width: 61px;
    padding-right: 16px;
    border-right: 1px solid #e5e6ec;
}

.nh-review-score strong,
.nh-review-score span,
.nh-review-details small {
    display: block;
}

.nh-review-score strong {
    color: #17162d;
    font-size: 21px;
    line-height: 1;
}

.nh-review-score span {
    margin-top: 5px;
    color: #696879;
    font-size: 10px;
    font-weight: 700;
}

.nh-review-details {
    padding-left: 16px;
}

.nh-review-details small {
    margin-top: 5px;
    color: #898895;
    font-size: 8px;
    white-space: nowrap;
}

.nh-stars {
    display: block;
    color: #ffb400;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
}

/* Logos */
.nh-trusted {
    padding: 10px 0 70px;
    text-align: center;
}

.nh-trusted p {
    margin-bottom: 30px;
    color: var(--nh-green-dark);
    font-family: Exo, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.nh-logo-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 52px;
}

.nh-logo-track img {
    width: 128px;
    height: 46px;
    object-fit: contain;
}

/* Foundation */
.nh-who {
    background: linear-gradient(180deg, #fff, #f5f5fa);
}

.nh-foundation-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 80px;
    margin-bottom: 70px;
}

.nh-foundation-head h2 {
    max-width: 650px;
    font-size: 48px;
}

.nh-foundation-head > p {
    max-width: 610px;
    margin: 0 0 5px;
    color: var(--nh-muted);
}

.nh-foundation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr;
    gap: 14px;
    align-items: end;
}

.nh-principle {
    position: relative;
    height: 360px;
    overflow: hidden;
    padding: 30px 26px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, var(--nh-navy-2), var(--nh-navy));
    box-shadow: 0 20px 45px rgba(11,8,77,.14);
}

.nh-principle:nth-child(2) {
    height: 430px;
    color: #fff;
    background: linear-gradient(145deg, var(--nh-green), var(--nh-green-dark));
    box-shadow: 0 26px 55px rgba(8,211,54,.22);
}

.nh-principle > span {
    position: absolute;
    right: 18px;
    bottom: -34px;
    font-family: Exo, sans-serif;
    font-size: 175px;
    font-weight: 800;
    line-height: 1;
    opacity: .1;
}

.nh-principle i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 48px;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,.15);
    font-size: 22px;
}

.nh-principle h3 {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 700;
}

.nh-principle p {
    position: relative;
    z-index: 1;
    max-width: 570px;
    margin-bottom: 0;
    color: inherit;
    opacity: .85;
}

/* Who */
.nh-who h2 {
    max-width: 610px;
}

.nh-who p {
    max-width: 650px;
    color: var(--nh-muted);
}

.nh-stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.nh-stats-panel > div {
    min-height: 200px;
    padding: 32px;
}

.nh-stats-panel > div:nth-child(even) {
    border-right: 0;
}

.nh-stats-panel > div:nth-child(n+3) {
    border-bottom: 0;
}

.nh-stats-panel strong,
.nh-stats-panel span,
.nh-stats-panel small {
    display: block;
}

.nh-stats-panel strong {
    color: var(--nh-green-dark);
    font-family: Exo, sans-serif;
    font-size: 48px;
    line-height: 1;
}

.nh-stats-panel span {
    margin: 8px 0;
    color: var(--nh-navy);
    font-family: Exo, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.nh-stats-panel small {
    color: var(--nh-muted);
}

/* Solutions */
.nh-solutions {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, #08D336 -73.58%, #0B084D 100%);
}

.nh-solutions::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: url('../images/Why Choose Us_ - Cards.webp') no-repeat center center/cover;
    opacity: .18;
}

.nh-solutions .container {
    position: relative;
    z-index: 1;
}

.nh-solutions-head,
.nh-solutions-head > p {
    color: #fff;
}

.nh-solutions-head > p {
    opacity: .82;
}

.tools-section {
    max-width: 1320px;
}

.nh-tools-one-line .tool-row-wrapper {
    margin-bottom: 0;
}

.nh-solution-carousel {
    max-width: none !important;
    margin: 0;
}

.nh-solution-carousel .owl-stage {
    display: flex;
}

.nh-solution-carousel .owl-item {
    display: flex;
    height: auto;
    padding: 0px;
}

.nh-solution-carousel .owl-item .nh-solution-card {
    width: 100%;
}

.nh-solution-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.nh-solution-carousel .owl-nav button.owl-prev,
.nh-solution-carousel .owl-nav button.owl-next {
    position: static;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .45) !important;
    border-radius: 50% !important;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.nh-solution-carousel .owl-nav button.owl-prev:hover,
.nh-solution-carousel .owl-nav button.owl-next:hover {
    border-color: var(--nh-green) !important;
    color: var(--nh-navy);
    background: var(--nh-green);
}

.nh-solution-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.nh-solution-carousel .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .38);
    transition: width .2s ease, background-color .2s ease;
}

.nh-solution-carousel .owl-dot.active span {
    width: 26px;
    background: var(--nh-green);
}

.nh-solution-card {
    display: flex;
    min-width: 0;
    /*min-height: 690px;*/
    height: 100%;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 15px;
    background: #fff;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.nh-solution-card:hover {
    border-color: var(--nh-navy);
    background: var(--nh-navy);
    box-shadow: 0 10px 24px rgba(11, 8, 77, .16);
    transform: translateY(-4px);
}

.nh-solution-card-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.nh-solution-card-icon {
    display: grid;
    color: var(--nh-green);
    font-size: 30px;
    transition: color .3s ease, background-color .3s ease;
    margin-top: 6px;
}

.nh-solution-card h3 {
    color: var(--nh-navy);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    transition: color .3s ease;
}

.nh-solution-card h4 {
    margin: 0 0 14px;
    color: #04091E;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    transition: color .3s ease;
}

.nh-solution-card p {
    margin: 0 0 22px;
    color: var(--nh-muted);
    font-size: 15px;
    line-height: 1.7;
    transition: color .3s ease;
}

.nh-solution-card-points {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

    .nh-solution-card-points li {
        position: relative;
        padding-left: 22px;
        color: var(--nh-muted);
        font-size: 14px;
        line-height: 1.45;
        transition: color .3s ease;
    }

.nh-solution-card-points li::before {
    content: "\f0da";
    position: absolute;
    top: 0;
    left: 2px;
    color: var(--nh-green);
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
}

.nh-solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: auto;
    padding: 10px 0;
    color: var(--nh-green);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, padding .2s ease;
}

.nh-solution-card-link:hover {
    color: #fff;
}

.nh-solution-card-link i {
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.nh-solution-card-link:hover i {
    transform: translateX(3px);
}

.nh-solution-card:hover .nh-solution-card-icon {
    color: var(--nh-green);
}

.nh-solution-card:hover h3 {
    color: var(--nh-green);
}

.nh-solution-card:hover h4,
.nh-solution-card:hover p,
.nh-solution-card:hover .nh-solution-card-points li {
    color: #fff;
}

.nh-solution-shell {
    display: grid;
    grid-template-columns: 315px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 32px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 35px 80px rgba(0,0,0,.22);
}

.nh-solution-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    background: rgba(3,3,39,.28);
}

.nh-solution-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #d7d6e7;
    background: transparent;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.nh-solution-tab span {
    color: #8987aa;
    font-family: Exo, sans-serif;
}

.nh-solution-tab:hover:not(.active) {
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.08);
}

.nh-solution-tab.active {
    border-radius: 12px;
    color: #fff;
    background: var(--nh-green);
}

.nh-solution-tab.active span {
    color: #fff;
}

.nh-solution-panels {
    min-width: 0;
}

.nh-solution-panel {
    position: relative;
    display: none;
    min-height: 690px;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    padding: 55px;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.nh-solution-panel.active {
    display: grid;
    animation: nhPanelIn .35s ease both;
}

@keyframes nhPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nh-solution-watermark {
    position: absolute;
    right: 10px;
    bottom: -70px;
    color: #fff;
    font-family: Exo, sans-serif;
    font-size: 260px;
    font-weight: 800;
    line-height: 1;
    opacity: .035;
}

.nh-panel-kicker {
    color: var(--nh-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nh-solution-panel h3 {
    max-width: 620px;
    margin: 17px 0 12px;
    font-size: clamp(34px, 4vw, 55px);
    font-weight: 700;
    line-height: 1.05;
}

.nh-solution-panel h4 {
    color: #fff;
    font-size: 19px;
    line-height: 1.45;
}

.nh-solution-panel p {
    max-width: 650px;
    color: #c9c8dd;
}

.nh-solution-panel .nh-text-link {
    margin-top: 28px;
    color: var(--nh-green);
}

.nh-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.nh-chip-list span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 8px;
    color: #e9e8f3;
    background: rgba(255,255,255,.07);
    font-size: 12px;
}

.nh-panel-visual {
    position: relative;
    min-height: 340px;
}

.nh-panel-visual::before,
.nh-panel-visual::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(8,211,54,.4);
    border-radius: 50%;
}

.nh-panel-visual::before {
    inset: 42px;
}

.nh-panel-visual::after {
    inset: 90px;
}

.nh-system-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #fff;
    background: #24217c;
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.nh-node-main {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    padding: 20px;
    text-align: center;
    transform: translate(-50%, -50%);
    background: var(--nh-green);
    color: #06220d;
}

.nh-node-main i {
    font-size: 30px;
}

.nh-node-main span {
    font-size: 12px;
    font-weight: 900;
}

.nh-node-one,
.nh-node-two,
.nh-node-three {
    width: 70px;
    height: 70px;
    font-size: 11px;
}

.nh-node-one { top: 5px; left: 50%; transform: translateX(-50%); }
.nh-node-two { right: 0; bottom: 35px; }
.nh-node-three { bottom: 35px; left: 0; }

/* Prototype */
.nh-prototype {
    color: var(--nh-ink);
    background: #fff;
}

.nh-prototype-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: start;
    gap: clamp(50px, 8vw, 130px);
    margin-bottom: 58px;
}

.nh-prototype-title h2 {
    max-width: 650px;
}

.nh-prototype-title h2 span {
    display: block;
}

.nh-prototype-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--nh-muted);
}

.nh-prototype-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nh-prototype-card {
    position: relative;
    padding: 10px 20px;
    border-right: 1px solid #e2e5ec;
    display: flex;
    align-items: start;
    gap: 20px;
}

    .nh-prototype-card:last-child {
        border-right: none;
    }

.nh-prototype-icon {
    line-height: 1;
    color: var(--nh-green);
}

.nh-prototype-icon img {
    width: 50px;
}

.nh-prototype-card h3 {
    margin: 0 0 12px;
    color: var(--nh-ink);
    font-size: 22px;
    font-weight: 700;
}

.nh-prototype-card p {
    margin-bottom: 0;
    color: var(--nh-muted);
    font-size: 16px;
    line-height: 1.65;
}

.nh-prototype-card-understand .nh-prototype-icon i {
    animation: nh-prototype-search 2.8s ease-in-out infinite;
}

.nh-prototype-card-idea .nh-prototype-icon i {
    animation: nh-prototype-bulb 2.3s ease-in-out infinite;
}

.nh-prototype-card-validate .nh-prototype-icon i {
    animation: nh-prototype-check 2.6s ease-in-out infinite;
}

.nh-prototype-card-build .nh-prototype-icon i {
    animation: nh-prototype-code 2.5s ease-in-out infinite;
}

@keyframes nh-prototype-search {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    45% { transform: translate(3px, -2px) rotate(-5deg); }
    70% { transform: translate(-2px, 2px) rotate(3deg); }
}

@keyframes nh-prototype-bulb {
    0%, 100% { color: var(--nh-green-dark); filter: drop-shadow(0 0 0 rgba(8,211,54,0)); transform: scale(1); }
    50% { color: #08d336; filter: drop-shadow(0 0 7px rgba(8,211,54,.72)); transform: scale(1.08); }
}

@keyframes nh-prototype-check {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.12); }
    60% { transform: scale(.96); }
}

@keyframes nh-prototype-code {
    0%, 100% { transform: translateX(0); }
    35% { transform: translateX(-3px); }
    65% { transform: translateX(3px); }
}

/* Process */
.nh-process {
    position: relative;
    background:
        radial-gradient(circle at 8% 14%, rgba(8,211,54,.08), transparent 23%),
        #f6f6fa;
}

.nh-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.1fr);
    grid-template-areas:
        "head head"
        "visual track";
    column-gap: clamp(56px, 7vw, 105px);
    row-gap: 46px;
    align-items: center;
}

.nh-process-head {
    display: grid;
    grid-area: head;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.1fr);
    gap: clamp(56px, 7vw, 105px);
    align-items: end;
}

.nh-process-copy {
    max-width: 580px;
}

.nh-process-copy h2 {
    margin-bottom: 24px;
}

.nh-process-description {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--nh-muted);
}

.nh-process-visual {
    position: relative;
    grid-area: visual;
    overflow: hidden;
    max-height: 650px;
    height: 100%;
    margin: 0;
    border: 1px solid var(--nh-line);
    border-radius: 30px 30px 100px 30px;
    background: var(--nh-navy);
    box-shadow: 0 24px 55px rgba(11,8,77,.16);
}

.nh-process-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 50%, rgba(11,8,77,.72));
}

.nh-process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 61%;
}

.nh-process-visual figcaption {
    position: absolute;
    right: 32px;
    bottom: 27px;
    left: 28px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #fff;
    font-family: Exo, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
}

.nh-process-visual figcaption i {
    color: var(--nh-green);
    font-size: 16px;
}

.nh-process-track {
    grid-area: track;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nh-process-track li {
        display: grid;
        min-height: 112px;
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 20px;
        padding: 20px 26px;
        border-bottom: 1px solid #04091E33;
        transition: background .2s ease;
    }

.nh-process-track li:last-child {
    border-bottom: 0;
}

.nh-process-track li:hover {
    background: #fafaff;
}

.nh-process-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #04091E;
    box-shadow: 0 10px 24px rgba(11,8,77,.2);
    font-size: 19px;
}


.nh-process-icon img {
    width: 31px;
}
.nh-process-track h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #04091E;
}

.nh-process-track p {
    margin: 0;
    color: var(--nh-muted);
    font-size: 14px;
    line-height: 1.45;
}

.nh-process-number {
    align-self: start;
    padding-top: 3px;
    color: #aaa8bb;
    font-family: Exo, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

/* Industries */
.nh-industries {
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/small-service-lines.webp);
}

.tools-grid-container {
    padding: 10px;
}

.nh-industries-head {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 80px;
    align-items: start;
}

.nh-industries-head h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.nh-industries-head > p {
    max-width: 610px;
    margin: 0 0 7px;
}

.nh-industry-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 215px;
    gap: 16px;
    margin-bottom: 40px;
}

.nh-industry-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    color: var(--nh-navy);
    background: linear-gradient(145deg, #f8f9ff, #e1e4fb);
    box-shadow: 0 22px 55px rgba(3,2,42,.24);
    isolation: isolate;
    transition: transform .3s ease, box-shadow .3s ease;
}

.nh-industry-card:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.nh-industry-card-photo {
    color: #fff;
    background: #0b174d;
}

.nh-industry-card-photo::before {
    display: none;
}

.nh-industry-card-photo .nh-industry-overlay {
    color: #fff;
}

.nh-industry-card-photo .nh-industry-overlay p {
    color: rgba(255,255,255,.88);
}

.nh-industry-card-photo .nh-industry-overlay a,
.nh-industry-card-photo .nh-industry-overlay a i {
    color: #fff;
}

.nh-industry-card:nth-child(2) {
    grid-column: 4 / 9;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #e5f9ea, #c8f1d2);
}

.nh-industry-card:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #f7f7fc, #d9daf0);
}

.nh-industry-card:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    background: linear-gradient(145deg, #eff1ff, #d7dcfa);
}

.nh-industry-card:nth-child(5) {
    grid-column: 4 / 9;
    grid-row: 2 / 4;
    background: linear-gradient(145deg, #f5f6ff, #dfe3ff);
}

.nh-industry-card:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #e7faeb, #ccefd4);
}

.nh-industry-card.nh-industry-card-photo {
    color: #fff;
    background: #0b174d;
}

.nh-industry-card.nh-industry-card-photo::before {
    display: none;
}

.nh-industry-card::before {
    position: absolute;
    top: -65px;
    right: -55px;
    z-index: -1;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(11,8,77,.08);
    border-radius: 50%;
    content: "";
}

.nh-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(3,2,42,.32);
}

.nh-industry-card img {
    position: absolute;
    top: 34px;
    right: 32px;
    width: 118px;
    height: 118px;
    object-fit: contain;
    opacity: .96;
    transition: transform .4s ease;
}

.nh-industry-card:hover img {
    transform: translateY(-4px) rotate(-2deg) scale(1.04);
}

.nh-industry-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 28px;
    background: linear-gradient(180deg, rgba(4, 7, 35, 0) 0%, rgb(4 7 35 / 43%) 40%, rgb(4 7 35 / 76%) 70%, rgb(4 7 35 / 94%) 100%);
}

.nh-industry-overlay h3 {
    max-width: 90%;
    margin: 0 0 9px;
    font-size: 22px;
    line-height: 1.15;
}

.nh-industry-overlay p {
    max-width: 94%;
    margin: 0 0 14px;
    color: #4f4c70;
    font-size: 13px;
    line-height: 1.48;
}

.nh-industry-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--nh-navy);
    font-weight: 800;
    text-decoration: none;
}

.nh-industry-overlay a i {
    color: var(--nh-green-dark);
    font-size: 12px;
    transition: transform .2s ease;
}

.nh-industry-overlay a:hover i {
    transform: translateX(4px);
}

.nh-industry-card:nth-child(1) img,
.nh-industry-card:nth-child(3) img {
    top: 55px;
    right: 50%;
    width: 155px;
    height: 155px;
    transform: translateX(50%);
}

.nh-industry-card:nth-child(1):hover img,
.nh-industry-card:nth-child(3):hover img {
    transform: translateX(50%) translateY(-4px) rotate(-2deg) scale(1.04);
}

.nh-industry-card:nth-child(5) img {
    top: 40px;
    right: 42px;
    width: 178px;
    height: 178px;
}

.nh-industry-card:nth-child(5) .nh-industry-overlay {
    max-width: 66%;
}

.nh-industry-card:nth-child(2) .nh-industry-overlay,
.nh-industry-card:nth-child(4) .nh-industry-overlay,
.nh-industry-card:nth-child(6) .nh-industry-overlay {
    max-width: calc(100% - 128px);
}

.nh-industry-card:nth-child(2) .nh-industry-overlay h3,
.nh-industry-card:nth-child(4) .nh-industry-overlay h3,
.nh-industry-card:nth-child(6) .nh-industry-overlay h3 {
    font-size: 19px;
}

.nh-industry-card:nth-child(2) .nh-industry-overlay p,
.nh-industry-card:nth-child(4) .nh-industry-overlay p,
.nh-industry-card:nth-child(6) .nh-industry-overlay p {
    overflow: hidden;
    display: -webkit-box;
    margin-bottom: 9px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.nh-industry-card.nh-industry-card-photo .nh-industry-overlay {
    max-width: none;
}

.nh-industry-card.nh-industry-card-photo > .nh-industry-photo {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: none;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.nh-industry-card.nh-industry-card-photo:hover > .nh-industry-photo {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.045);
}

/* Products */
.nh-products {
    background: #fff;
}

.nh-products-head {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 80px;
    align-items: end;
}

.nh-products-head h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.nh-products-head > p {
    max-width: 610px;
    margin: 0 0 7px;
}

.nh-product-carousel {
    position: relative;
    margin-bottom: 38px;
    outline: none;
}

.nh-product-viewport {
    overflow-x: auto;
    border: 1px solid var(--nh-line);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(11,8,77,.1);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.nh-product-viewport::-webkit-scrollbar {
    display: none;
}

.nh-product-track {
    display: flex;
}

.nh-product-slide {
    display: grid;
    min-width: 100%;
    min-height: 520px;
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.nh-product-slide-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 48px;
}

.nh-product-slide-copy::before {
    position: absolute;
    top: 44px;
    left: 0;
    width: 4px;
    height: 58px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--nh-green), var(--nh-navy));
    content: "";
}

.nh-product-name {
    color: var(--nh-green-dark);
    font-family: Exo, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nh-product-slide h3 {
    margin: 18px 0 20px;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.nh-product-slide p {
    margin: 0 0 27px;
    color: var(--nh-muted);
    font-size: 16px;
    line-height: 1.65;
}

.nh-product-slide-copy > a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    color: var(--nh-navy);
    font-weight: 900;
    text-decoration: none;
}

.nh-product-slide-copy > a i {
    color: var(--nh-green-dark);
    transition: transform .2s ease;
}

.nh-product-slide-copy > a:hover i {
    transform: translateX(4px);
}

.nh-product-visual {
    position: relative;
    display: flex;
    align-items: center;
    padding: 44px 42px;
    background:
        radial-gradient(circle at 88% 8%, rgba(8,211,54,.14), transparent 27%),
        linear-gradient(145deg, #f5f7fb, #edf0f7);
}

.nh-product-visual::before,
.nh-product-visual::after {
    position: absolute;
    border: 1px solid rgba(11,8,77,.08);
    border-radius: 50%;
    content: "";
}

.nh-product-visual::before {
    top: -120px;
    right: -75px;
    width: 330px;
    height: 330px;
}

.nh-product-visual::after {
    right: 52px;
    bottom: -130px;
    width: 250px;
    height: 250px;
}

.nh-product-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(11,8,77,.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(11,8,77,.16);
}

.nh-product-navigation {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    margin-top: 24px;
}

.nh-product-counter {
    display: flex;
    align-items: baseline;
    gap: 7px;
    min-width: 76px;
    color: #aaa8ba;
    font-family: Exo, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.nh-product-counter strong {
    color: var(--nh-navy);
    font-size: 21px;
}

.nh-product-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.nh-product-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c8c7d5;
    transition: width .25s ease, background .25s ease;
}

.nh-product-dots button[aria-current="true"] {
    width: 34px;
    background: linear-gradient(90deg, var(--nh-navy), var(--nh-green-dark));
}

.nh-product-arrows {
    display: flex;
    gap: 10px;
}

.nh-product-arrows button {
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--nh-line);
    border-radius: 50%;
    color: var(--nh-navy);
    background: #fff;
    box-shadow: 0 10px 25px rgba(11,8,77,.08);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nh-product-arrows button:hover {
    color: #fff;
    background: var(--nh-navy);
    transform: translateY(-2px);
}

.nh-product-dots button:focus-visible,
.nh-product-arrows button:focus-visible,
.nh-product-carousel:focus-visible {
    outline: 3px solid rgba(8,211,54,.42);
    outline-offset: 4px;
}

/* Work */
.nh-work,
.nh-security {
    background: radial-gradient(circle at 8% 14%, rgba(8,211,54,.08), transparent 23%), #f6f6fa;
}

.nh-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.nh-heading-row > div {
    max-width: 860px;
}

.nh-heading-row h2 {
    margin-bottom: 0;
}

.nh-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nh-work-card {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-rows: 240px minmax(140px, 1fr);
    overflow: hidden;
    border-radius: 16px;
    color: var(--nh-navy);
    background: #fff;
    box-shadow: 0 18px 45px rgba(11,8,77,.07);
    text-decoration: none;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.nh-work-card:hover {
    box-shadow: 0 26px 55px rgba(11,8,77,.13);
}

.nh-work-media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 15%, rgba(8,211,54,.18), transparent 28%),
        linear-gradient(135deg, #e7e9ee 0%, #fafafa 62%, #eef0f4 100%);
}

.nh-work-media::before {
    position: absolute;
    top: -90px;
    right: -55px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(11,8,77,.1);
    border-radius: 50%;
    content: "";
}

.nh-work-media::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(11,8,77,.13));
    content: "";
    pointer-events: none;
}

.nh-work-card:nth-child(2) .nh-work-media {
    background:
        radial-gradient(circle at 15% 20%, rgba(8,211,54,.14), transparent 30%),
        linear-gradient(145deg, #f7f7f8 0%, #e1e4e9 100%);
}

.nh-work-card:nth-child(3) .nh-work-media {
    background:
        radial-gradient(circle at 82% 75%, rgba(8,211,54,.15), transparent 30%),
        linear-gradient(135deg, #e4e6eb 0%, #fbfbfc 100%);
}

.nh-work-media img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.nh-work-media-mark {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    color: rgba(11,8,77,.55);
    transform: translate(-50%, -50%);
}

.nh-work-media-mark i {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(11,8,77,.1);
    border-radius: 18px;
    font-size: 23px;
    background: rgba(255,255,255,.74);
    box-shadow: 0 12px 28px rgba(11,8,77,.08);
}

.nh-work-media-mark span {
    color: rgba(11,8,77,.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nh-work-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 17px;
}

.nh-work-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nh-work-card-meta > span {
    color: var(--nh-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nh-work-card-meta small {
    overflow: hidden;
    color: #77778c;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nh-work-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.nh-work-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.nh-work-arrow {
    display: grid;
    flex: 0 0 46px;
    place-items: center;
    color: var(--nh-navy);
}

.nh-work-card:hover .nh-work-arrow {
    color: var(--nh-green);
    transform: translateX(4px);
}

/* Testimonials */
.nh-testimonials {
    overflow: hidden;
    color: var(--nh-ink);
    background: url('../images/contact-us-hero-section.webp') no-repeat center center/cover;
}

.nh-testimonials .nh-heading {
    margin-bottom: 48px;
}

.nh-testimonials .nh-heading h2 {
    color: var(--nh-navy);
}

.nh-testimonials .nh-heading h2 span {
    color: var(--nh-green);
}

.nh-testimonial-marquee {
    display: grid;
    width: 100%;
    gap: 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.nh-testimonial-row {
    overflow: hidden;
}

.nh-testimonial-track,
.nh-testimonial-sequence {
    display: flex;
    width: max-content;
    gap: 18px;
}

.nh-testimonial-track {
    animation: nh-testimonial-scroll 48s linear infinite;
    will-change: transform;
}

.nh-testimonial-row:nth-child(2) .nh-testimonial-track {
    animation-direction: reverse;
    animation-duration: 54s;
}

.nh-testimonial-marquee:hover .nh-testimonial-track {
    animation-play-state: paused;
}

.nh-testimonial-card {
    position: relative;
    display: flex;
    width: 330px;
    min-height: 220px;
    flex: 0 0 330px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--nh-line);
    border-radius: 14px;
    background: #F2F3F5;
    box-shadow: 0 12px 32px rgba(11,8,77,.07);
}

.nh-quote {
    height: 26px;
    color: var(--nh-green);
    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1;
}

.nh-quote-closing {
    position: absolute;
    top: 132px;
    right: 24px;
    height: auto;
    line-height: .65;
}

.nh-testimonial-card > p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 84px;
    margin: 6px 0 22px;
    color: #343248;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.nh-testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.nh-client-person {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.nh-client-person img,
.nh-client-person > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    object-fit: cover;
    color: #fff;
    background: var(--nh-navy);
    font-weight: 900;
}

.nh-client-person strong,
.nh-client-person small {
    display: block;
}

.nh-client-person small {
    color: var(--nh-muted);
    font-size: 11px;
}

.nh-client-person strong {
    overflow: hidden;
    color: var(--nh-navy);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nh-testimonial-stars {
    flex: 0 0 auto;
    padding-bottom: 2px;
    color: #ffc400;
    font-size: 12px;
    letter-spacing: 1px;
}

.nh-solution-card-icon img{
    width: 60px !important;
}

@keyframes nh-testimonial-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

/* Leadership */
.nh-leadership {
    background: #fff;
}

.nh-leadership-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(390px, 1.16fr) minmax(300px, .92fr);
    align-items: start;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
}

.nh-leader-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 64px 10px 64px 54px;
    color: var(--nh-navy);
    background: transparent;
}

.nh-leader-copy .nh-eyebrow {
    color: var(--nh-green);
}

.nh-leader-copy h2 {
    width: 450px;
    margin: 0px 0 20px;
    color: var(--nh-navy);
    /*font-size: clamp(34px, 2.65vw, 44px);*/
    line-height: 1.1;
}

.nh-leader-copy p {
    max-width: 425px;
    margin-bottom: 28px;
    color: var(--nh-muted);
    font-size: 15px;
    line-height: 1.65;
}

.nh-leader-photo {
    position: relative;
    z-index: 1;
    display: flex;
    /*min-height: 700px;*/
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

.nh-leader-photo > img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(48vw, 620px);
    max-width: none;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center bottom;
    /*filter: drop-shadow(0 18px 13px rgba(0,0,0,.28));*/
    transition: transform .5s ease;
}

.nh-leadership{
    padding: 110px 0px 20px 0px !important;
}


.nh-leadership-card:hover .nh-leader-photo > img {
    transform: translateY(-4px);
}

.nh-leader-photo-label {
    display: none;
}

.nh-leader-profile {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px 130px 58px 20px;
    color: var(--nh-navy);
    background: transparent;
    text-align: end;
    gap: 100px;
}


    .nh-leader-profile strong,
    .nh-leader-profile span {
        display: block;
    }

    .nh-leader-profile strong {
        font-family: Exo, sans-serif;
        color: var(--nh-navy);
        font-size: 30px;
        line-height: 1.15;
    }

    .nh-leader-profile span {
        color: var(--nh-navy);
        font-size: 14px;
    }

.text-theme-mute {
    color: var(--nh-muted) !important;
}

.nh-leader-strengths i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: #041f0b;
    background: var(--nh-green);
    font-size: 8px;
}

.nh-leader-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--nh-green);
    font-weight: 900;
    text-decoration: none;
}

.nh-leader-link i {
    transition: transform .2s ease;
}

.nh-leader-link:hover {
    color: var(--nh-green);
}

.nh-leader-link:hover i {
    transform: translateX(4px);
}

/* Security */
.nh-security .row {
    --bs-gutter-x: 5.5rem;
}

.nh-security h2 {
    max-width: 520px;
    margin: 10px 0 18px;
}

.nh-security p {
    color: var(--nh-muted);
}

.nh-security .col-lg-5 > p {
    max-width: 510px;
    margin-bottom: 22px;
}

.nh-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.nh-security-grid article {
    display: grid;
    min-height: 142px;
    padding: 27px 30px;
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-content: start;
    background: transparent;
}

.nh-security-grid article:nth-child(odd) {
    border-right: 1px solid var(--nh-line);
}

.nh-security-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--nh-line);
}

    .nh-security-grid i,
    .nh-security-grid img {
        display: grid;
        width: 50px;
        height: 50px;
        margin: 0;
        grid-row: 1 / span 2;
        place-items: center;
        align-self: start;
        border: 1px solid rgba(11,8,77,.05);
        border-radius: 12px;
        color: var(--nh-navy);
        background: #e9e8fa;
        box-shadow: 0 6px 16px rgba(11,8,77,.08);
        font-size: 20px;
        padding: 5px;
    }

.nh-security-grid article:nth-child(2) img,
.nh-security-grid article:nth-child(3) img {
    color: #063812;
    background: #d0f9d9;
}

.nh-security-grid h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.25;
}

.nh-security-grid p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Final CTA */
.nh-final {
    background: #fff;
}

.nh-final-card {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    border-radius: 15px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/small-service-lines.webp);
    text-align: center;
}

.nh-final-card > * {
    position: relative;
    z-index: 1;
}

.nh-final-card h2 {
    max-width: 830px;
    margin-right: auto;
    margin-left: auto;
}

.nh-final-card p {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: #d6d5e5;
}

.nh-final-card .nh-actions {
    margin-top: 35px;
}

@media (max-width: 1199px) {
    .nh-solution-shell {
        grid-template-columns: 275px 1fr;
    }

    .nh-solution-panel {
        grid-template-columns: 1fr;
        padding: 45px;
    }

    .nh-panel-visual {
        display: none;
    }

    .nh-process-layout {
        grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr);
        column-gap: 48px;
        row-gap: 42px;
    }

    .nh-process-head {
        grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr);
        gap: 48px;
    }

    .nh-process-track li {
        padding-right: 22px;
        padding-left: 22px;
    }
}

@media (max-width: 1200px) {

    .nh-hero h1,
    .nh-page h2 {
        font-size: 37px !important;
    }

    .nh-foundation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nh-principle {
        height: 300px !important;
    }

    .nh-prototype-flow {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .nh-prototype-card {
        border-right: none;
    }

    .nh-leader-copy h2 {
        width: 330px;
    }

    .nh-leader-profile {
        padding: 64px 20px 58px 20px;
    }

    .nh-product-showcase {
        position: relative;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        padding: 40px 24px;
        border-radius: 26px;
    }
}

@media (max-width: 991px) {
    .nh-prototype-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 44px;
    }

    .nh-prototype-description {
        max-width: 720px;
        margin-top: 0;
    }

    .nh-prototype-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nh-home-page .navbar-collapse {
        width: min(82vw, 360px);
        max-width: 100%;
        padding: 22px 18px;
        box-shadow: 18px 0 45px rgba(11,8,77,.2);
    }

    .nh-solutions-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nh-solutions-head > p {
        max-width: 720px;
    }

    .nh-industries-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nh-industries-head > p {
        max-width: 720px;
        margin-bottom: 0;
    }

    .nh-products-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nh-products-head > p {
        max-width: 720px;
        margin-bottom: 0;
    }

    .nh-home-page .navbar-collapse .navbar-nav .nav-link {
        color: #212121 !important;
    }

    .nh-home-page .navbar-collapse .navbar-brand {
        display: flex;
        width: 100%;
        max-width: 230px;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 15px 18px;
        border-radius: 18px;
        background: var(--nh-navy);
    }

    .nh-home-page .navbar-collapse .navbar-brand img {
        max-width: 100%;
        height: auto;
    }

    .nh-page {
        --nh-section-space: 80px;
    }

    .nh-hero {
        padding-top: 165px;
    }

    .nh-laptop-wrap {
        width: 100%;
        max-width: 700px;
        margin: 70px auto 0;
    }

    .nh-foundation-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .nh-foundation-head > p {
        max-width: 720px;
    }

    .nh-foundation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nh-principle,
    .nh-principle-large {
        grid-column: auto;
    }

    .nh-solution-shell {
        display: block;
    }

    .nh-solution-tabs {
        flex-direction: row;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .nh-solution-tabs::-webkit-scrollbar {
        display: none;
    }

    .nh-solution-tab {
        flex: 0 0 220px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 0;
        scroll-snap-align: start;
    }

    .nh-industry-grid,
    .nh-work-grid,
    .nh-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .nh-testimonial-grid .nh-testimonial-card:last-child {
        grid-column: 1 / -1;
    }

    .nh-leadership-card {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
    }

    .nh-leader-copy {
        grid-column: 1 / -1;
        padding: 54px;
    }

    .nh-leader-photo,
    .nh-leader-profile {
        min-height: 500px;
    }

    .nh-leader-photo > img {
        max-width: 380px;
        height: auto;
    }

    .nh-leader-profile {
        padding: 44px 0 44px 34px;
    }

    .nh-process-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "visual"
            "track";
        gap: 50px;
    }

    .nh-process-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nh-process-copy {
        max-width: 760px;
    }

    .nh-process-visual {
        max-width: 760px;
        min-height: 0;
        height: 390px;
    }

    .nh-process-track {
        max-width: 760px;
    }

    .nh-product-slide {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .nh-product-slide-copy {
        padding: 44px 38px 30px;
    }

    .nh-product-slide-copy::before {
        top: 36px;
    }

    .nh-product-visual {
        padding: 30px 34px 38px;
    }

    .nh-industry-grid {
        grid-auto-rows: 360px;
    }

    .nh-industry-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .nh-industry-card:nth-child(n) .nh-industry-overlay {
        max-width: none;
    }

    .nh-industry-card:nth-child(n) img {
        top: 28px;
        right: 50%;
        width: 110px;
        height: 110px;
        transform: translateX(50%);
    }

    .nh-industry-card:nth-child(n):hover img {
        transform: translateX(50%) translateY(-4px) rotate(-2deg) scale(1.04);
    }

    .nh-industry-overlay p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .nh-leadership {
        padding: 82px 0 44px !important;
    }

    .nh-leadership-card {
        grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
        align-items: stretch;
        border: 1px solid #ececf5;
        border-radius: 28px;
        background: linear-gradient(145deg, #fff 0%, #fafaff 100%);
        box-shadow: 0 24px 60px rgba(11, 8, 77, .08);
    }

    .nh-leader-copy {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 36px;
        align-items: center;
        padding: 44px 42px 38px;
        border-bottom: 1px solid #ececf5;
    }

    .nh-leadership .nh-leader-copy h2 {
        width: auto;
        max-width: 100%;
        margin: 0;
        font-size: 38px !important;
    }

    .nh-leader-copy p {
        width: auto;
        max-width: none;
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
    }

    .nh-leader-photo,
    .nh-leader-profile {
        min-width: 0;
        min-height: 360px;
    }

    .nh-leader-photo {
        overflow: hidden;
        background: radial-gradient(circle at 50% 78%, rgba(8, 211, 54, .08), transparent 62%);
    }

    .nh-leader-photo > img {
        width: min(43vw, 330px);
        max-width: 100%;
    }

    .nh-leadership .nh-leader-profile {
        justify-content: center;
        gap: 32px;
        padding: 38px 34px;
        border-left: 1px solid #ececf5;
        text-align: start;
    }

    .nh-leader-profile strong {
        font-size: 27px;
    }

    .nh-leader-profile .nh-text-link {
        justify-content: flex-start !important;
    }
}

@media (max-width: 767px) {
    .nh-prototype-head {
        margin-bottom: 34px;
    }

    .nh-prototype-title h2 {
        margin-bottom: 24px;
    }

    .nh-prototype-card {
        min-height: 0;
        padding: 12px 0px;
    }

    .nh-solution-card {
        min-height: 0;
        padding: 25px 22px 22px;
    }

    .nh-solution-card h3 {
        min-height: 0;
    }

    .nh-page .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .nh-page h1,
    .nh-page h2,
    .nh-page h3,
    .nh-page h4,
    .nh-page a {
        overflow-wrap: anywhere;
    }

    .nh-eyebrow {
        max-width: 100%;
        font-size: 11px;
        letter-spacing: .12em;
        white-space: normal;
    }

    .nh-page h2 {
        font-size: clamp(32px, 8.5vw, 36px);
        line-height: 1.12;
    }

    .nh-page p {
        font-size: 15px;
    }

    .nh-page {
        --nh-section-space: 66px;
    }

    .nh-hero {
        min-height: auto;
        padding: 132px 0 92px;
    }

    .nh-hero h1 {
        margin: 15px 0 20px;
        font-size: clamp(36px, 10vw, 42px);
        line-height: 1.08;
    }

    .nh-hero-copy {
        margin-bottom: 28px;
        font-size: 16px !important;
        line-height: 1.65;
    }

    .nh-actions .nh-btn {
        width: 100%;
    }

    .nh-hero-clients {
        margin-top: 28px;
    }

    .nh-laptop-wrap {
        margin-top: 48px;
    }

    .nh-review-card {
        right: auto;
        left: 0;
    }

    .nh-foundation-grid,
    .nh-prototype-flow,
    .nh-industry-grid,
    .nh-work-grid,
    .nh-testimonial-grid,
    .nh-security-grid {
        grid-template-columns: 1fr;
    }

    .nh-foundation-head,
    .nh-solutions-head,
    .nh-industries-head,
    .nh-products-head {
        margin-bottom: 42px;
        gap: 18px;
    }

    .nh-foundation-grid {
        gap: 16px;
        align-items: stretch;
    }

    .nh-principle,
    .nh-principle:nth-child(2) {
        height: auto;
        min-height: 290px;
        padding: 28px 25px;
    }

    .nh-principle i {
        margin-bottom: 38px;
    }

    .nh-solution-tabs {
        gap: 3px;
        padding: 10px;
    }

    .nh-solution-tab {
        flex-basis: 190px;
        min-height: 58px;
        padding: 13px 12px;
    }

    .nh-industry-grid {
        grid-auto-rows: auto;
        gap: 14px;
    }

    .nh-industry-card {
        min-height: 350px;
        border-radius: 24px;
    }

    .nh-industry-overlay {
        padding: 24px;
    }

    .nh-industry-card:nth-child(n) img {
        top: 26px;
        right: 24px;
        width: 108px;
        height: 108px;
        transform: none;
    }

    .nh-industry-card:nth-child(n):hover img {
        transform: translateY(-4px) rotate(-2deg) scale(1.04);
    }

    .nh-industry-overlay p,
    .nh-industry-card:nth-child(2) .nh-industry-overlay p,
    .nh-industry-card:nth-child(4) .nh-industry-overlay p,
    .nh-industry-card:nth-child(6) .nh-industry-overlay p {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .nh-work-grid {
        gap: 18px;
    }

    .nh-work-card {
        min-height: 0;
        grid-template-rows: 220px minmax(175px, auto);
    }

    .nh-testimonial-card {
        width: 290px;
        min-height: 215px;
        flex-basis: 290px;
        padding: 22px;
    }

    .nh-client-person {
        right: 28px;
        bottom: 27px;
        left: 28px;
    }

    .nh-testimonial-grid .nh-testimonial-card:last-child {
        grid-column: auto;
    }

    .nh-product-viewport {
        border-radius: 26px;
    }

    .nh-product-slide-copy {
        padding: 36px 24px 24px;
    }

    .nh-product-slide-copy::before {
        top: 30px;
        height: 48px;
    }

    .nh-product-slide h3 {
        font-size: 31px;
    }

    .nh-product-slide p {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .nh-product-visual {
        padding: 18px 18px 26px;
    }

    .nh-product-visual img {
        border-radius: 14px;
    }

    .nh-product-navigation {
        gap: 14px;
        margin-top: 20px;
    }

    .nh-product-arrows button {
        width: 44px;
        height: 44px;
    }

    .nh-stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 30px;
    }

    .nh-stats-panel > div {
        border-right: 1px solid var(--nh-line);
        border-bottom: 1px solid var(--nh-line) !important;
    }

    .nh-stats-panel > div:nth-child(even) {
        border-right: 0;
    }

    .nh-stats-panel > div:nth-child(n + 3) {
        border-bottom: 0 !important;
    }

    .nh-solution-panel {
        min-height: 0;
        padding: 32px 24px;
    }

    .nh-solution-panel h3 {
        font-size: 33px;
    }

    .nh-process-visual {
        height: 285px;
        margin-top: 30px;
        border-radius: 26px 26px 76px 26px;
    }

    .nh-process-track {
        border-radius: 26px;
    }

    .nh-process-track li {
        min-height: 0;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 17px;
        padding: 20px 18px;
    }

    .nh-process-icon {
        width: 52px;
        height: 52px;
        font-size: 17px;
    }

    .nh-process-number {
        position: absolute;
        top: 20px;
        right: 18px;
    }

    .nh-process-track li {
        position: relative;
    }

    .nh-process-track h3 {
        padding-right: 38px;
        font-size: 18px;
    }

    .nh-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .nh-leadership-card {
        min-height: 0;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .nh-leader-copy,
    .nh-leader-photo,
    .nh-leader-profile {
        width: 100%;
        min-width: 0;
    }

    .nh-leader-copy {
        grid-column: auto;
        padding: 38px 28px;
    }

    .nh-leader-copy h2 {
        width: auto;
        max-width: 100%;
    }

    .nh-leader-copy p {
        width: 100%;
        max-width: 100%;
    }

    .nh-leader-photo {
        min-height: 0;
        padding-top: 12px;
    }

    .nh-leader-photo > img {
        width: min(86vw, 330px);
        max-width: 100%;
        height: auto;
    }

    .nh-leader-profile {
        min-height: 0;
        padding: 42px 28px;
        border-top: 1px solid #dedfe7;
        border-left: 0;
        gap: 34px;
        text-align: start;
    }

    .nh-leader-profile .nh-text-link {
        justify-content: flex-start !important;
    }

    .nh-security-grid article {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--nh-line);
    }

    .nh-security-grid article:last-child {
        border-bottom: 0;
    }

    .nh-security-grid i {
        margin: 0;
    }

    .nh-final-card {
        padding: 60px 25px;
        border-radius: 38px;
    }

    .nh-final-card .nh-actions {
        margin-top: 28px;
    }


    .nh-products-intro {
        display: block;
    }

    .nh-products-layout .nh-products-head {
        margin-bottom: 26px;
    }

    .nh-products-layout .nh-product-navigation {
        grid-template-columns: auto auto 1fr;
        align-items: center;
    }

    .nh-products-layout .nh-product-dots {
        grid-row: auto;
        grid-column: auto;
    }

    .nh-product-showcase {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .nh-products-layout .nh-product-track {
        display: block;
    }

    .nh-products-layout .nh-product-slide {
        min-height: 350px;
    }

    .nh-products-layout .nh-product-visual {
        height: 100%;
        flex-basis: auto;
        padding: 0;
    }

    .nh-foundation-grid {
        grid-template-columns: 1fr;
    }

    .nh-foundation {
        padding: 0px 0px 20px 0px !important;
    }

    .nh-stats-panel > div {
        min-height: 132px;
        padding: 18px 14px;
    }

    .nh-stats-panel strong {
        font-size: 38px;
    }

    .nh-stats-panel span {
        margin: 6px 0 5px;
        font-size: 15px;
    }

    .nh-stats-panel small {
        font-size: 12px;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .nh-page .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nh-page h2 {
        font-size: 31px !important;
    }

    .nh-principle h3 {
        font-size: 25px;
    }

    .nh-solution-card h3 {
        font-size: 25px;
    }

    .nh-prototype-card h3 {
        font-size: 20px;
    }

    .nh-page {
        --nh-section-space: 58px;
    }

    .nh-hero {
        padding: 118px 0 78px;
    }

    .nh-hero h1 {
        font-size: 34px !important;
    }

    .nh-laptop-wrap {
        margin-top: 44px;
    }

    .nh-review-card {
        min-width: 180px;
        padding: 12px 13px;
    }

    .nh-review-score {
        min-width: 53px;
        padding-right: 12px;
    }

    .nh-review-score strong {
        font-size: 18px;
    }

    .nh-review-details {
        padding-left: 12px;
    }

    .nh-hero-clients .nh-logo-track {
        gap: 14px 8px;
    }

    .nh-hero-clients .nh-logo-track img {
        width: 100%;
        max-width: 68px;
        height: 30px;
    }

    .nh-principle {
        min-height: 260px;
        padding: 26px 23px;
    }

    .nh-principle:nth-child(2) {
        min-height: 260px;
    }

    .nh-solution-tab {
        flex-basis: 170px;
        font-size: 13px;
    }

    .nh-solution-panel {
        padding: 28px 20px;
    }

    .nh-solution-panel h3 {
        font-size: 30px;
    }

    .nh-chip-list {
        gap: 8px;
    }

    .nh-chip-list span {
        padding: 8px 10px;
        font-size: 11px;
    }

    .nh-process-visual {
        height: 245px;
        border-radius: 22px 22px 58px 22px;
    }

    .nh-process-visual figcaption {
        right: 18px;
        bottom: 19px;
        left: 18px;
        font-size: 12px;
    }

    .nh-process-track li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 15px;
    }

    .nh-process-icon {
        width: 48px;
        height: 48px;
    }

    .nh-leader-photo {
        min-height: 0;
    }

    .nh-leader-photo > img {
        width: min(86vw, 290px);
        max-width: 290px;
        height: auto;
    }

    .nh-leader-copy h2 {
        font-size: clamp(28px, 8.5vw, 31px);
    }

    .nh-leader-copy {
        padding: 34px 20px;
    }

    .nh-leader-profile {
        padding: 36px 22px;
    }

    .nh-industry-card {
        min-height: 335px;
    }

    .nh-industry-overlay {
        padding: 22px 20px;
    }

    .nh-industry-card:nth-child(n) img {
        top: 22px;
        right: 20px;
        width: 94px;
        height: 94px;
        transform: none;
    }

    .nh-product-slide-copy {
        padding: 32px 20px 22px;
    }

    .nh-product-slide h3 {
        font-size: 28px;
    }

    .nh-product-visual {
        padding: 14px 14px 22px;
    }

    .nh-product-navigation {
        grid-template-columns: 1fr auto;
    }

    .nh-product-dots {
        grid-row: 2;
        grid-column: 1 / -1;
    }

    .nh-product-arrows button {
        width: 42px;
        height: 42px;
    }

    .nh-work-card {
        min-height: 0;
        grid-template-rows: 215px minmax(170px, auto);
    }

    .nh-work-content {
        padding: 23px 22px 25px;
    }

    .nh-work-card-meta {
        align-items: flex-start;
    }

    .nh-work-card-meta small {
        white-space: normal;
        text-align: right;
    }

    .nh-work-card-title {
        gap: 14px;
    }

    .nh-work-card h3 {
        font-size: 20px;
    }

    .nh-work-arrow {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .nh-testimonial-card {
        width: 276px;
        flex-basis: 276px;
        padding: 21px;
    }

    .nh-client-person {
        right: 24px;
        left: 24px;
    }

    .nh-final-card {
        padding: 50px 20px;
        border-radius: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    .nh-prototype-icon i {
        animation: none !important;
    }
}

/* Reference-aligned product showcase */
.nh-products-layout {
    display: grid;
    grid-template-columns: minmax(260px, .68fr) minmax(0, 1.62fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 0;
}

.nh-products-intro {
    position: relative;
    z-index: 2;
    padding: 24px 0;
}

.nh-products-layout .nh-products-head {
    display: block;
    margin-bottom: 24px;
}

.nh-products-layout .nh-products-head h2 {
    max-width: 440px;
    margin: 10px 0 16px;
    line-height: 1.08;
}

.nh-products-layout .nh-products-head > p {
    max-width: 410px;
    margin: 0;
    color: var(--nh-muted);
    font-size: 13px;
    line-height: 1.6;
}

.nh-product-showcase {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 40px 24px;
    border-radius: 26px 0 0 26px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, #08D336 -73.58%, #0B084D 100%);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .nh-product-showcase {
        width: calc(100% + ((100vw - 1140px) / 2) + 5px);
    }
}

@media (min-width: 1400px) {
    .nh-product-showcase {
        width: calc(100% + ((100vw - 1320px) / 2) + 5px);
    }
}

/*.nh-product-showcase::before {
    position: absolute;
    top: -120px;
    right: -65px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}*/

.nh-product-showcase::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url('../images/Why Choose Us_ - Cards.webp') no-repeat right center / cover;
    content: "";
    opacity: .28;
    pointer-events: none;
}

@media (min-width: 1200px) {
    .nh-product-showcase::after {
        position: absolute;
        z-index: 3;
        top: 0;
        right: 0;
        bottom: 0;
        width: 36px;
        background: linear-gradient(90deg, rgba(11, 8, 77, 0) 0%, rgba(11, 8, 77, .35) 45%, #0b084d 100%);
        content: "";
        pointer-events: none;
    }
}

.nh-products-layout .nh-product-viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nh-products-layout .nh-product-track {
    display: block;
}

.nh-products-layout .nh-product-track::after {
    display: none;
    content: none;
}

.nh-products-layout .nh-product-track .owl-stage-outer {
    overflow: hidden;
}

.nh-products-layout .nh-product-track .owl-stage {
    display: flex;
    align-items: stretch;
}

.nh-products-layout .nh-product-track .owl-item {
    display: flex;
    min-width: 0;
    padding: 0px;
}

.nh-products-layout .nh-product-slide {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 380px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    color: #fff;
    background: var(--nh-navy);
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
    isolation: isolate;
    cursor: pointer;
}

.nh-products-layout .nh-product-slide::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,7,38,.04) 20%, rgba(5,7,38,.28) 48%, rgba(5,7,38,.96) 100%);
    content: "";
    transition: background .35s ease;
}

.nh-products-layout .nh-product-visual {
    position: absolute;
    display: block;
    height: 100%;
    inset: 0;
    padding: 0;
    overflow: hidden;
    background: #edf0f7;
}

.nh-products-layout .nh-product-visual::before,
.nh-products-layout .nh-product-visual::after {
    display: none;
}

.nh-products-layout .nh-product-visual img {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s ease, filter .35s ease;
}

.nh-products-layout .nh-product-slide-copy {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    color: #fff;
}

.nh-products-layout .nh-product-slide-copy::before {
    display: none;
}

.nh-products-layout .nh-product-name {
    color: var(--nh-green);
    font-size: 10px;
    letter-spacing: .1em;
}

.nh-products-layout .nh-product-slide h3 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.nh-products-layout .nh-product-slide p {
    display: -webkit-box;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 12.5px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px);
    transition: max-height .35s ease, margin .35s ease, opacity .25s ease, transform .35s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.nh-products-layout .nh-product-slide-copy > a {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: max-height .35s ease, margin .35s ease, opacity .25s ease, transform .35s ease;
}

.nh-products-layout .nh-product-slide-copy > a i {
    color: var(--nh-green);
}

.nh-products-layout .nh-product-slide:hover::after,
.nh-products-layout .nh-product-slide:focus::after,
.nh-products-layout .nh-product-slide:focus-within::after {
    background: linear-gradient(180deg, rgba(8,211,54,.32) 0%, rgba(5,156,39,.82) 48%, rgba(3,92,25,.97) 100%);
}

.nh-products-layout .nh-product-slide:hover .nh-product-visual img,
.nh-products-layout .nh-product-slide:focus .nh-product-visual img,
.nh-products-layout .nh-product-slide:focus-within .nh-product-visual img {
    filter: saturate(.78);
    transform: scale(1.045);
}

.nh-products-layout .nh-product-slide:hover p,
.nh-products-layout .nh-product-slide:focus p,
.nh-products-layout .nh-product-slide:focus-within p {
    max-height: 62px;
    margin: 12px 0 14px;
    opacity: 1;
    transform: translateY(0);
}

.nh-products-layout .nh-product-slide:hover .nh-product-slide-copy > a,
.nh-products-layout .nh-product-slide:focus .nh-product-slide-copy > a,
.nh-products-layout .nh-product-slide:focus-within .nh-product-slide-copy > a {
    max-height: 28px;
    margin-top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nh-products-layout .nh-product-navigation {
    display: flex;
    justify-content: flex-start;
    margin-top: 0;
}

.nh-products-layout .nh-product-counter {
    align-self: center;
}

.nh-products-layout .nh-product-arrows button {
    width: 42px;
    height: 42px;
}

.nh-products-layout .nh-product-dots {
    grid-column: 1 / -1;
    justify-content: flex-start;
}

.nh-product-explore {
    margin-top: 20px;
}

    @media (max-width: 991px) {
    .nh-products-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .nh-products-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0 30px;
        align-items: end;
        padding: 0;
    }

    .nh-products-layout .nh-products-head {
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

        .nh-products-layout .nh-products-head h2,
        .nh-products-layout .nh-products-head > p {
            max-width: 650px;
        }

    .nh-products-layout .nh-product-navigation {
        align-self: end;
    }

    .nh-product-explore {
        align-self: start;
    }
}

@media (max-width: 480px) {
    .nh-products-layout .nh-product-navigation {
        grid-template-columns: auto 1fr;
    }

    .nh-products-layout .nh-product-dots {
        grid-row: 2;
        grid-column: 1 / -1;
    }
}
