/* --- Contact Modal Styles --- */
/* --- Testimonial slider --- */
.nh-testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 180px;
}
.nh-testimonial-slide {
    display: none;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    transform: translateY(32px);
}
.nh-testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: none;
}
.nh-testimonial-slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.nh-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b3c7db;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}
.nh-testimonial-dot.active {
    background: var(--nh-primary);
}

/* --- Dummy mobile screenshot --- */
.nh-mobile-mock {
    width: 210px;
    height: 420px;
    border-radius: 32px;
    background: #f7fbff;
    box-shadow: 0 8px 32px -8px #0e6db7cc;
    border: 2.5px solid #e3eaf2;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.nh-mobile-notch {
    width: 60px;
    height: 8px;
    background: #e3eaf2;
    border-radius: 8px;
    margin: 12px auto 18px auto;
}
.nh-mobile-widget {
    width: 170px;
    height: 260px;
    background: linear-gradient(135deg, #eaf4ff 60%, #d7eaff 100%);
    border-radius: 18px;
    margin: 0 auto;
    box-shadow: 0 2px 12px -4px #0e6db733;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.nh-mobile-bubble {
    width: 120px;
    height: 22px;
    border-radius: 12px;
    background: #cbe6ff;
    margin: 10px 0 0 0;
}
.nh-mobile-bubble.user {
    background: #0e6db7;
    color: #fff;
    margin-left: 40px;
}
/* --- Animation for hero and CTA --- */
.nh-fadein {
    opacity: 0;
    transform: translateY(32px);
    animation: nh-fadein-up 1.1s cubic-bezier(.23,1.02,.32,1) 0.1s forwards;
}
.nh-fadein-delayed {
    opacity: 0;
    transform: translateY(32px);
    animation: nh-fadein-up 1.1s cubic-bezier(.23,1.02,.32,1) 0.45s forwards;
}
@keyframes nh-fadein-up {
    to {
        opacity: 1;
        transform: none;
    }
}

/* --- Dummy SVG logo style --- */
.nh-logo-svg {
    width: 72px;
    height: 32px;
    display: block;
    margin: 0 auto 0.2rem auto;
    filter: grayscale(1) contrast(1.2) brightness(1.1);
    opacity: 0.82;
    transition: filter 0.2s, opacity 0.2s;
}
.nh-logo-svg:hover {
    filter: none;
    opacity: 1;
}
:root {
    --nh-bg: #eef3f8;
    --nh-ink: #0f2235;
    --nh-muted: #465e74;
    --nh-primary: #0e6db7;
    --nh-primary-strong: #0a4f88;
    --nh-card: #ffffff;
    --nh-soft: #e6edf5;
    /* Swap this to test different hero backgrounds, e.g. url('img/hero-bg-01.jpg') */
    --nh-hero-bg-image: url('../img/bg4.png');
    --nh-hero-bg-overlay: linear-gradient(180deg, rgba(238, 243, 248, 0.08), rgba(238, 243, 248, 0.38));
    --nh-hero-bg-image-position: center bottom;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: radial-gradient(1200px 500px at 70% -10%, #d7ecff 0%, transparent 60%), var(--nh-bg);
    color: var(--nh-ink);
    line-height: 1.55;
    font-size: 16px;
}

h1,
h2,
h3,
.nh-brand-text {
    font-family: "Space Grotesk", sans-serif;
}

a {
    text-decoration: none;
}

.py-lg-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

html {
    scroll-padding-top: 90px;
}

.nh-nav-wrap {
    backdrop-filter: blur(8px);
    background: rgba(238, 243, 248, 0.82);
    border-bottom: 1px solid rgba(15, 34, 53, 0.08);
}

.nh-nav .navbar-toggler {
    border-color: rgba(15, 34, 53, 0.18);
    padding: 0.42rem 0.55rem;
}

.nh-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(14, 109, 183, 0.2);
}

.nh-nav .nav-link {
    color: var(--nh-muted);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.6rem;
    padding: 0.38rem 0.68rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nh-nav .nav-link:hover,
.nh-nav .nav-link:focus-visible {
    color: var(--nh-ink);
    background: rgba(15, 34, 53, 0.06);
}

.nh-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nh-logo-sm {
    width: 28px;
    height: 28px;
}

.nh-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
    color: var(--nh-ink);
    line-height: 1;
}

.nh-brand-blue {
    color: #54a5e2;
}

.nh-lang-switch {
    background: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    border: 1px solid rgba(15, 34, 53, 0.13);
    border-radius: 999px;
    overflow: hidden;
}

.nh-lang-switch a {
    color: var(--nh-muted);
    padding: 0.24rem 0.58rem;
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nh-lang-switch a.active {
    background: rgba(14, 109, 183, 0.16);
    color: var(--nh-primary-strong);
}

.nh-nav .nh-btn-link {
    color: var(--nh-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 0.7rem;
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nh-nav .nh-btn-link:hover,
.nh-nav .nh-btn-link:focus-visible {
    color: var(--nh-primary-strong);
    background: rgba(14, 109, 183, 0.08);
}

.nh-btn-primary {
    background: linear-gradient(135deg, var(--nh-primary), #1f8ad8);
    color: #fff;
    border: 0;
    border-radius: 0.8rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.nh-btn-primary:hover {
    background: linear-gradient(135deg, #0c5e9d, var(--nh-primary));
    color: #fff;
}

.nh-nav .nh-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-height: 40px;
    padding: 0.5rem 1rem;
    border-radius: 0.7rem;
    box-shadow: 0 8px 18px -12px rgba(14, 109, 183, 0.75);
}

.nh-nav .btn.btn-sm {
    min-height: 34px;
    padding-top: 0;
    padding-bottom: 0;
}

.nh-nav .nh-btn-link.btn-sm {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
}

.nh-nav .nh-btn-primary.btn-sm {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.nh-btn-outline {
    border: 2px solid rgba(14, 109, 183, 0.4);
    color: var(--nh-primary-strong);
    border-radius: 0.8rem;
    font-weight: 700;
    padding: 0.56rem 1rem;
    background: #fff;
}

.nh-btn-outline:hover {
    border-color: var(--nh-primary);
    color: var(--nh-primary);
}

.nh-btn-lg {
    padding: 0.9rem 1.2rem;
    min-height: 48px;
}

.nh-hero {
    position: relative;
    overflow: hidden;
    background-image: var(--nh-hero-bg-overlay), var(--nh-hero-bg-image);
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-position: center, var(--nh-hero-bg-image-position);
}

.nh-hero::before,
.nh-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    z-index: -1;
}

.nh-hero::before {
    width: 420px;
    height: 420px;
    right: -130px;
    top: -120px;
    background: rgba(36, 152, 224, 0.24);
}

.nh-hero::after {
    width: 340px;
    height: 340px;
    left: -120px;
    bottom: -130px;
    background: rgba(12, 80, 140, 0.16);
}

.nh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--nh-primary-strong);
    border: 1px solid rgba(14, 109, 183, 0.2);
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.nh-gradient-text {
    background: linear-gradient(135deg, var(--nh-primary-strong), #32a6ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nh-hero .display-4 {
    font-size: clamp(2.25rem, 4.8vw, 3.95rem);
    font-weight: 700 !important;
    color: #17314a;
}

.nh-hero-sub {
    max-width: 50ch;
    color: #4f667b;
    font-size: 1.02rem;
}

.nh-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--nh-muted);
    font-size: 0.93rem;
    font-weight: 600;
}

.nh-proof i {
    color: var(--nh-primary);
}

.nh-proof-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(224, 236, 248, 0.35));
    border-top: 1px solid rgba(15, 34, 53, 0.07);
    border-bottom: 1px solid rgba(15, 34, 53, 0.07);
}

.nh-proof-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nh-primary-strong);
    background: rgba(14, 109, 183, 0.09);
    border: 1px solid rgba(14, 109, 183, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

.nh-logo-pill {
    border: 1px solid rgba(15, 34, 53, 0.14);
    background: #fff;
    color: #2c4860;
    border-radius: 0.85rem;
    padding: 0.65rem 0.6rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px -16px rgba(10, 43, 72, 0.7);
}

.nh-logo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
}

.nh-logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #0a4f88, #2e9ae4);
    letter-spacing: 0.03em;
}

.nh-logo-label {
    color: #2c4860;
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.nh-logo-marquee-wrap {
    position: relative;
}

.nh-logo-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.25rem 0;
}

.nh-logo-marquee::before,
.nh-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    pointer-events: none;
    z-index: 3;
}

.nh-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--nh-bg) 0%, rgba(238, 243, 248, 0) 100%);
}

.nh-logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--nh-bg) 0%, rgba(238, 243, 248, 0) 100%);
}

.nh-logo-lane {
    display: flex;
    align-items: center;
    width: max-content;
}

.nh-logo-group {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3.5vw, 2.8rem);
    flex-shrink: 0;
    padding-right: clamp(1.5rem, 3.5vw, 2.8rem);
}

.nh-logo-flat {
    display: inline-flex;
    align-items: center;
    opacity: 0.72;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nh-logo-flat:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nh-logo-image {
    display: block;
    width: clamp(148px, 14vw, 196px);
    height: auto;
    filter: grayscale(1) brightness(1.35) contrast(0.76);
}

.nh-logo-marquee:not(.is-animated) .nh-logo-lane {
    width: 100%;
    justify-content: center;
}

.nh-logo-marquee.is-animated .nh-logo-lane {
    animation: nh-logo-scroll-loop 34s linear infinite;
}

.nh-logo-marquee.is-animated:hover .nh-logo-lane {
    animation-play-state: paused;
}

@keyframes nh-logo-scroll-loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.nh-testimonial-card {
    border-color: rgba(14, 109, 183, 0.16);
}

.nh-testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.nh-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nh-testimonial-meta strong {
    color: #10273b;
    font-size: 0.94rem;
}

.nh-testimonial-meta span {
    color: var(--nh-muted);
    font-size: 0.87rem;
    font-weight: 600;
}

.nh-showcase-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(230, 238, 246, 0.45));
}

.nh-showcase-shell {
    background: #fff;
    border: 1px solid rgba(15, 34, 53, 0.12);
    border-radius: 1.1rem;
    box-shadow: 0 18px 34px -26px rgba(10, 43, 72, 0.65);
    padding: 1rem;
}

.nh-showcase-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nh-showcase-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid rgba(15, 34, 53, 0.14);
    background: #f8fbff;
    color: #284760;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
}

.nh-showcase-tabs .nav-link.active {
    background: var(--nh-primary);
    border-color: var(--nh-primary);
    color: #fff;
}

.nh-showcase-points li {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    color: #344e64;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.nh-showcase-points i {
    color: var(--nh-primary);
    margin-top: 0.15rem;
}

.nh-screen-mock {
    border: 1px solid rgba(15, 34, 53, 0.14);
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #f9fcff, #eff6fd);
    overflow: hidden;
}

.nh-screen-top {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.7rem;
    background: rgba(14, 109, 183, 0.12);
    border-bottom: 1px solid rgba(15, 34, 53, 0.1);
}

.nh-screen-top span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 109, 183, 0.55);
}

.nh-screen-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
    padding: 0.9rem;
}

.nh-screen-col {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 34, 53, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.nh-screen-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(13, 78, 133, 0.16);
    margin-bottom: 0.5rem;
}

.nh-screen-bubble {
    height: 14px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.nh-screen-bubble.bot {
    background: rgba(14, 109, 183, 0.22);
}

.nh-screen-bubble.user {
    margin-left: auto;
    background: rgba(14, 109, 183, 0.42);
}

.w-85 {
    width: 85%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.nh-use-case-card {
    border-color: rgba(10, 79, 136, 0.16);
}

.nh-use-case-list li {
    color: #3b556d;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.nh-use-case-list li strong {
    color: #15314a;
}

.nh-security-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(224, 235, 246, 0.35));
}

.nh-security-card h3 {
    color: #163149;
    font-weight: 800;
}

.nh-security-card i {
    color: var(--nh-primary);
}

.nh-comparison-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(228, 237, 246, 0.4));
}

.nh-comparison-wrap {
    border: 1px solid rgba(15, 34, 53, 0.14);
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 34px -30px rgba(10, 43, 72, 0.7);
}

.nh-comparison-mobile {
    display: grid;
    gap: 0.9rem;
}

.nh-comparison-card {
    background: #fff;
    border: 1px solid rgba(15, 34, 53, 0.12);
    border-radius: 1rem;
    box-shadow: 0 14px 28px -26px rgba(10, 43, 72, 0.7);
    overflow: hidden;
}

.nh-comparison-card-title {
    margin: 0;
    padding: 1rem 1rem 0.8rem;
    font-size: 1rem;
    font-weight: 800;
    color: #13304a;
    border-bottom: 1px solid rgba(15, 34, 53, 0.08);
}

.nh-comparison-card-list {
    margin: 0;
}

.nh-comparison-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(15, 34, 53, 0.08);
}

.nh-comparison-card-row:first-child {
    border-top: 0;
}

.nh-comparison-card-row dt,
.nh-comparison-card-row dd {
    margin: 0;
}

.nh-comparison-card-row dt {
    color: #355068;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nh-comparison-card-row dd {
    text-align: right;
    color: #344f66;
    font-size: 0.95rem;
    font-weight: 700;
}

.nh-comparison-card-row.is-best {
    background: rgba(14, 109, 183, 0.09);
}

.nh-comparison-card-row.is-best dd {
    color: #0f4a7a;
}

.nh-comparison-table {
    min-width: 760px;
    margin: 0;
}

.nh-comparison-table thead th {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #355068;
    background: #f5f9fe;
    border-bottom: 1px solid rgba(15, 34, 53, 0.1);
}

.nh-comparison-table tbody td {
    color: #344f66;
    font-size: 0.95rem;
    border-color: rgba(15, 34, 53, 0.08);
}

.nh-comparison-table tbody td:first-child {
    color: #132d45;
    font-weight: 700;
}

.nh-comparison-best {
    background: rgba(14, 109, 183, 0.1) !important;
    color: #0f4a7a !important;
    font-weight: 800;
}

.nh-cookie-manage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(15, 34, 53, 0.2);
    background: #fff;
    color: #1a3850;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.nh-cookie-manage:hover {
    border-color: var(--nh-primary);
    color: var(--nh-primary);
}

.nh-cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 0.7rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
}

.nh-cookie-banner-inner {
    width: min(760px, 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
    border: 1px solid rgba(15, 34, 53, 0.14);
    box-shadow: 0 18px 36px -24px rgba(10, 43, 72, 0.32);
    border-radius: 1rem;
    padding: 0.95rem;
    backdrop-filter: blur(8px);
}

.nh-cookie-banner-inner p {
    color: #3f5870;
}

.nh-cookie-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.nh-cookie-heading-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.nh-cookie-heading-wrap h3 {
    font-size: 1.02rem;
    color: #163149;
}

.nh-cookie-heading-wrap p {
    max-width: 62ch;
    font-size: 0.92rem;
    line-height: 1.45;
}

.nh-cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, rgba(14, 109, 183, 0.14), rgba(14, 109, 183, 0.06));
    color: var(--nh-primary);
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(14, 109, 183, 0.08);
}

.nh-cookie-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(15, 34, 53, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: #38536a;
    border-radius: 999px;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.nh-cookie-close:hover {
    border-color: rgba(14, 109, 183, 0.28);
    color: var(--nh-primary);
}

.nh-cookie-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.nh-cookie-option {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: #203c55;
    font-weight: 700;
    padding: 0.72rem 0.78rem;
    border-radius: 0.88rem;
    border: 1px solid rgba(15, 34, 53, 0.08);
    background: rgba(247, 251, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.nh-cookie-option input {
    margin: 0.18rem 0 0;
    accent-color: var(--nh-primary);
}

.nh-cookie-option-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.nh-cookie-option-copy strong {
    color: #183650;
    font-size: 0.9rem;
    line-height: 1.25;
}

.nh-cookie-option-copy small {
    color: #5a7388;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 500;
}

.nh-cookie-option.is-required {
    background: rgba(14, 109, 183, 0.06);
    border-color: rgba(14, 109, 183, 0.12);
}

.nh-cookie-actions {
    align-items: center;
    gap: 0.55rem !important;
}

.nh-cookie-actions .btn,
.nh-cookie-save {
    min-height: 42px;
    padding-top: 0.58rem;
    padding-bottom: 0.58rem;
}

.nh-cookie-save {
    border: 1px solid rgba(15, 34, 53, 0.12);
    background: #eef4fa;
    color: #183650;
    border-radius: 0.8rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.nh-cookie-save:hover {
    border-color: rgba(14, 109, 183, 0.18);
    color: var(--nh-primary);
    background: #f5f9fd;
}

.nh-cookie-links {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 34, 53, 0.08);
    font-size: 0.8rem;
}
.nh-contact-modal .modal-dialog {
    max-width: 520px;
}

.nh-contact-modal-content {
    border: 1px solid rgba(15, 34, 53, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 26px 70px -35px rgba(15, 34, 53, 0.65);
}

.nh-contact-modal-header {
    border: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(140deg, #0f2235 0%, #1b3f63 100%);
    color: #fff;
}

.nh-contact-modal-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nh-contact-modal-heading .modal-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
}

.nh-contact-modal-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.nh-contact-modal .btn-close {
    filter: invert(1) grayscale(1) brightness(1.8);
    opacity: 0.8;
}

.nh-contact-modal .btn-close:hover {
    opacity: 1;
}

.nh-contact-modal-body {
    padding: 1.1rem 1.2rem 1rem;
    color: var(--nh-ink);
    font-weight: 600;
}

.nh-contact-modal-footer {
    border-top: 1px solid rgba(15, 34, 53, 0.08);
    padding: 0.9rem 1.2rem 1.1rem;
}

.nh-contact-modal-success .nh-contact-modal-header {
    background: linear-gradient(140deg, #0d5f46 0%, #1f8d63 100%);
}

.nh-contact-modal-warning .nh-contact-modal-header {
    background: linear-gradient(140deg, #8a5a00 0%, #c88400 100%);
}

.nh-contact-modal-error .nh-contact-modal-header {
    background: linear-gradient(140deg, #7e1f2b 0%, #b63a49 100%);
}

@media (max-width: 576px) {
    .nh-contact-modal .modal-dialog {
        margin: 1rem;
    }

    .nh-contact-modal-body,
    .nh-contact-modal-header,
    .nh-contact-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.nh-section-title {
    font-size: clamp(1.7rem, 2.6vw, 2.45rem);
    line-height: 1.2;
}

.nh-section-sub {
    color: var(--nh-muted);
    max-width: 62ch;
    font-size: 1.02rem;
}

.nh-about-sub {
    max-width: 72ch;
}

.nh-card {
    padding: 1.3rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 34, 53, 0.1);
    background: var(--nh-card);
    box-shadow: 0 12px 28px -24px rgba(12, 38, 63, 0.6);
}

.nh-card p,
.nh-step p,
.nh-pricing-card li,
.nh-accordion .accordion-body {
    color: #425a70 !important;
    font-size: 0.98rem;
}

.nh-card h3,
.nh-step h3,
.nh-pricing-card h3 {
    font-weight: 800;
}

.nh-step {
    position: relative;
    padding: 1.4rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 34, 53, 0.1);
    background: #f8fbff;
}

.nh-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--nh-primary);
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.nh-section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(230, 237, 245, 0.45));
}

.nh-pricing-card {
    position: relative;
    padding: 1.4rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 34, 53, 0.12);
    background: #fff;
    box-shadow: 0 14px 30px -26px rgba(10, 43, 72, 0.75);
}

.nh-pricing-popular {
    border-color: rgba(14, 109, 183, 0.45);
    box-shadow: 0 20px 45px -30px rgba(14, 109, 183, 0.7);
}

.nh-popular-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--nh-primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.2rem 0.62rem;
    font-size: 0.76rem;
    font-weight: 700;
}

.nh-price {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.nh-price small {
    font-size: 0.88rem;
    color: var(--nh-muted);
    font-weight: 600;
    margin-left: 0.25rem;
}

.nh-pricing-card li {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    color: #30495f;
}

.nh-pricing-card li i {
    color: var(--nh-primary);
}

.nh-pricing-limits-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #6d7f90;
    margin: 0 0 0.55rem;
}

.nh-pricing-limits {
    padding: 0.72rem 0.8rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(15, 34, 53, 0.12);
    background: #f8fbff;
}

.nh-pricing-limits li {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.42rem;
    color: #4e667d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.nh-pricing-limits li:last-child {
    margin-bottom: 0;
}

.nh-pricing-limits li i {
    color: #2d78be;
}

.nh-pricing-limits-plain {
    background: transparent;
    border-color: rgba(15, 34, 53, 0.08);
}

.nh-pricing-limits-plain li {
    color: #607789;
}

.nh-pricing-details {
    margin-bottom: 0;
}

.nh-pricing-details .nh-pricing-limits {
    margin-top: 0;
}

.nh-btn-ghost {
    border: 1px solid rgba(15, 34, 53, 0.2);
    color: #0f3f67;
    border-radius: 0.8rem;
    font-weight: 700;
    background: #fff;
}

.nh-btn-ghost:hover {
    border-color: rgba(14, 109, 183, 0.45);
    color: #0f3f67;
    background: #f4f9ff;
}

.nh-pricing-compare-wrap {
    margin-top: 0.35rem;
    border: 1px solid rgba(15, 34, 53, 0.12);
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 30px -24px rgba(10, 43, 72, 0.55);
}

.nh-pricing-compare-table {
    margin: 0;
}

.nh-pricing-compare-table thead th {
    border-bottom: 1px solid rgba(15, 34, 53, 0.15);
    color: #355a78;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: #f3f8fd;
}

.nh-pricing-compare-table tbody td {
    border-bottom: 1px solid rgba(15, 34, 53, 0.08);
    color: #30495f;
    font-weight: 600;
}

.nh-pricing-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.nh-pricing-compare-table tbody td:first-child {
    color: #1c3650;
    font-weight: 700;
}

.nh-pricing-note {
    color: #5e7387;
    font-size: 0.88rem;
}

.nh-accordion {
    max-width: 860px;
}

.nh-accordion .accordion-item {
    border-radius: 0.8rem;
    border: 1px solid rgba(15, 34, 53, 0.12);
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.nh-accordion .accordion-button {
    font-weight: 700;
    background: #fff;
}

.nh-accordion .accordion-button:not(.collapsed) {
    color: var(--nh-primary-strong);
    background: #eef7ff;
}

.nh-accordion .accordion-button:focus {
    box-shadow: none;
}

.nh-cta {
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #0e5d9d, #1b86d3);
    color: #fff;
    padding: clamp(1.25rem, 3vw, 2.3rem);
}

.nh-cta p {
    max-width: 62ch;
    opacity: 0.94;
    font-size: 1.02rem;
}

.nh-btn-light {
    background: #fff;
    border: 0;
    color: #0a4f88;
    border-radius: 0.8rem;
    font-weight: 800;
}

.nh-btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.62);
    color: #fff;
    border-radius: 0.8rem;
    font-weight: 800;
}

.nh-btn-outline-light:hover {
    color: #fff;
    border-color: #fff;
}

.nh-footer {
    border-top: 1px solid rgba(15, 34, 53, 0.1);
    background: #f6f9fd;
    color: #4f6478;
}

@media (max-width: 991.98px) {
    .nh-nav .navbar-collapse {
        margin-top: 0.8rem;
        border: 1px solid rgba(15, 34, 53, 0.1);
        border-radius: 0.9rem;
        padding: 0.9rem;
        background: rgba(255, 255, 255, 0.92);
    }

    .nh-nav .nav-link {
        padding: 0.62rem 0.3rem;
        font-size: 1rem;
    }

    .nh-lang-switch {
        margin-bottom: 0.2rem;
    }

    .nh-nav .btn {
        min-height: 44px;
    }

    .nh-nav .btn.btn-sm {
        min-height: 44px;
    }

    .nh-nav .nh-btn-link,
    .nh-nav .nh-btn-primary {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .nh-badge {
        font-size: 0.75rem;
    }

    .nh-proof {
        gap: 0.75rem !important;
    }

    .nh-proof span {
        font-size: 0.85rem;
    }

    .nh-hero-sub {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .nh-hero .display-4 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .nh-section-sub {
        font-size: 1rem;
        line-height: 1.6;
    }

    .nh-card p,
    .nh-step p,
    .nh-pricing-card li,
    .nh-accordion .accordion-body {
        font-size: 1.02rem;
        line-height: 1.62;
    }

    .nh-card,
    .nh-step,
    .nh-pricing-card,
    .nh-accordion .accordion-item {
        border-color: #d1dbe8;
        box-shadow: 0 12px 24px -20px rgba(10, 43, 72, 0.5);
    }

    .nh-btn-lg {
        width: 100%;
    }

    .nh-nav .nav-link {
        font-size: 1.03rem;
        font-weight: 700;
    }

    .nh-pricing-card {
        padding-top: 1.7rem;
    }

    .nh-pricing-limits {
        padding: 0.68rem 0.72rem;
    }

    .nh-pricing-compare-table thead th,
    .nh-pricing-compare-table tbody td {
        font-size: 0.9rem;
    }

    .nh-popular-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.68rem;
        padding: 0.18rem 0.5rem;
    }

    .nh-cta {
        border-radius: 1rem;
    }

    .nh-logo-pill {
        font-size: 0.84rem;
        padding: 0.6rem 0.45rem;
    }

    .nh-showcase-shell {
        padding: 0.75rem;
    }

    .nh-showcase-tabs .nav-link {
        font-size: 0.84rem;
        padding: 0.4rem 0.7rem;
    }

    .nh-screen-body {
        grid-template-columns: 1fr;
    }

    .nh-logo-marquee::before,
    .nh-logo-marquee::after {
        width: 30px;
    }

    .nh-cookie-banner {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.45rem;
    }

    .nh-cookie-banner-inner {
        border-radius: 0.85rem;
        padding: 0.8rem;
    }

    .nh-cookie-header {
        gap: 0.75rem;
    }

    .nh-cookie-heading-wrap {
        gap: 0.65rem;
    }

    .nh-cookie-icon {
        width: 2rem;
        height: 2rem;
    }

    .nh-cookie-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .nh-cookie-option {
        padding: 0.68rem 0.75rem;
    }

    .nh-cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nh-cookie-actions .btn,
    .nh-cookie-save {
        width: 100%;
        justify-content: center;
    }

    .nh-comparison-card-row {
        padding: 0.75rem 0.9rem;
    }

    .nh-comparison-card-row dt {
        max-width: 46%;
    }

    .nh-comparison-card-row dd {
        max-width: 54%;
    }
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .nh-logo-image {
        width: clamp(160px, 14.5vw, 214px);
    }
}
