/* =============================================================================
   /new-home landing page — isolated styles
   All selectors are scoped to body.nh-page / #new-landing-page.
   Do not reuse these classes on other pages.
   Responsive rule: font-size must never go below 16px on any section.
   ============================================================================= */

body.nh-page {
    --bs-primary: #002d66;
    --bs-secondary: #0099b4;
    --bs-primary-rgb: 0, 45, 102;
    --bs-secondary-rgb: 0, 153, 180;
    --bs-link-color: #0099b4;
    --bs-link-hover-color: #002d66;
    --bs-body-font-family:
        "Figtree", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --bs-font-sans-serif:
        "Figtree", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --bs-body-color: #002d66;
    --bs-heading-color: #002d66;

    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family:
        "Figtree",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    color: #002d66;
}

#new-landing-page {
    --nh-primary: #002d66;
    --nh-secondary: #0099b4;
    --nh-primary-deep: #001a3d;
    --nh-primary-soft: #e8eef5;
    --nh-secondary-soft: #e6f7fa;
    --nh-grey: #f4f7fa;
    --nh-muted: #5a6b80;
    --nh-text: #002d66;
    --nh-white: #ffffff;
    --nh-radius: 12px;
    --nh-shadow: 0 8px 24px rgba(0, 45, 102, 0.08);

    font-family:
        "Figtree",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    color: var(--nh-text);
    background: var(--nh-white);
    overflow-x: clip;
}

#new-landing-page h1,
#new-landing-page h2,
#new-landing-page h3,
#new-landing-page h4,
#new-landing-page h5,
#new-landing-page h6 {
    font-family:
        "Figtree",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--nh-primary);
}

#new-landing-page h1 {
    font-weight: 800;
}
#new-landing-page h2 {
    font-weight: 700;
}
#new-landing-page h3 {
    font-weight: 600;
}
#new-landing-page h4,
#new-landing-page h5,
#new-landing-page h6 {
    font-weight: 600;
}

#new-landing-page p,
#new-landing-page li {
    font-weight: 400;
}

#new-landing-page a:not(.btn) {
    color: var(--nh-secondary);
}

#new-landing-page a:not(.btn):hover {
    color: var(--nh-primary);
}

#new-landing-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

#new-landing-page .container {
    max-width: 1360px;
}

/* Bootstrap button overrides — this page only */
body.nh-page .btn {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
}

body.nh-page .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
}

body.nh-page .btn-primary:hover,
body.nh-page .btn-primary:focus {
    background-color: #001a3d;
    border-color: #001a3d;
    color: #ffffff;
}

body.nh-page .btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
}

body.nh-page .btn-secondary:hover,
body.nh-page .btn-secondary:focus {
    background-color: #007a90;
    border-color: #007a90;
    color: #ffffff;
}

body.nh-page .btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: transparent;
}

body.nh-page .btn-outline-primary:hover,
body.nh-page .btn-outline-primary:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
}

body.nh-page .btn-outline-secondary {
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    background-color: transparent;
}

body.nh-page .btn-outline-secondary:hover,
body.nh-page .btn-outline-secondary:focus {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
}

#new-landing-page .nh-section {
    width: 100%;
    position: relative;
}

#new-landing-page .nh-section[id] {
    scroll-margin-top: 120px;
}

#new-landing-page .nh-card {
    background: var(--nh-white);
    border-radius: var(--nh-radius);
    box-shadow: var(--nh-shadow);
}

/* Header */
#new-landing-page .nh-header {
    position: fixed;
    top: 0;
    background: transparent;
    z-index: 1030;
    width: 100%;
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}

#new-landing-page .nh-header::before {
    content: "";
    display: block;
    height: 8px;
    background: linear-gradient(90deg, #0099b4 0%, #002d66 100%);
    transition: height 0.25s ease;
}

#new-landing-page .nh-header .navbar {
    min-height: 76px;
    transition: min-height 0.25s ease;
}

#new-landing-page .nh-header-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
}

#new-landing-page .nh-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: 10px;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

#new-landing-page .nh-menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nh-primary);
    border-radius: 2px;
}

#new-landing-page .nh-header-desktop-nav {
    display: none;
}

#new-landing-page .nh-header-actions {
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

#new-landing-page .nh-header-logo {
    width: 276px;
    height: auto;
    transition: width 0.25s ease;
}

#new-landing-page .nh-header .navbar-brand {
    margin-right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-width: 0;
    transition: padding 0.25s ease;
}

#new-landing-page .nh-header .nav-link {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    padding: 0.65rem 0 12px;
    position: relative;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        font-size 0.25s ease,
        padding 0.25s ease;
}

#new-landing-page .nh-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: url("../assets/landing/nh-nav-active.svg") no-repeat center
        bottom;
    background-size: 100% 8px;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

#new-landing-page .nh-header .nav-link:hover,
#new-landing-page .nh-header .nav-link:focus {
    color: #000000;
}

#new-landing-page .nh-header .nav-link.active {
    color: #000000;
    font-weight: 600;
}

#new-landing-page .nh-header .nav-link:hover::after,
#new-landing-page .nh-header .nav-link:focus::after,
#new-landing-page .nh-header .nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
}

#new-landing-page .nh-header-btn {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 8px;
    padding: 0.45rem 1.15rem;
    white-space: nowrap;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        height 0.25s ease,
        font-size 0.25s ease,
        padding 0.25s ease;
}

#new-landing-page .nh-header.is-compact {
    background: linear-gradient(90deg, #ffffff 0%, #eef6fa 100%);
    box-shadow: 0 8px 20px rgba(0, 45, 102, 0.08);
}

#new-landing-page .nh-header.is-compact::before {
    height: 4px;
}

#new-landing-page .nh-header.is-compact .navbar {
    min-height: 56px;
}

#new-landing-page .nh-header.is-compact .nh-header-logo {
    width: 180px;
}

#new-landing-page .nh-header.is-compact .navbar-brand {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

#new-landing-page .nh-header.is-compact .nav-link {
    font-size: 18px;
    padding: 0.35rem 0 8px;
}

#new-landing-page .nh-header.is-compact .nh-header-btn {
    height: 40px;
    font-size: 16px;
    padding: 0.25rem 0.9rem;
}

#new-landing-page .nh-header .btn-outline-primary {
    color: var(--nh-primary);
    border-color: var(--nh-primary);
    background-color: #ffffff;
}

#new-landing-page .nh-header .btn-secondary {
    color: #ffffff;
    background-color: var(--nh-secondary);
    border-color: var(--nh-secondary);
}

#new-landing-page .nh-header .btn-outline-primary:hover,
#new-landing-page .nh-header .btn-outline-primary:focus,
#new-landing-page .nh-header .btn-secondary:hover,
#new-landing-page .nh-header .btn-secondary:focus {
    color: #ffffff;
    background-color: var(--nh-primary);
    border-color: var(--nh-primary);
}

#new-landing-page .nh-offcanvas {
    width: min(320px, 100%);
    font-family: "Figtree", system-ui, sans-serif;
    border-right: 0;
}

#new-landing-page .nh-offcanvas .offcanvas-header {
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e8eef5;
}

#new-landing-page .nh-offcanvas-brand img {
    width: 160px;
    height: auto;
}

#new-landing-page .nh-offcanvas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nh-primary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

#new-landing-page .nh-offcanvas-nav .nav-link {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    padding: 0.85rem 0;
    white-space: normal;
}

#new-landing-page .nh-offcanvas-nav .nav-link.active {
    font-weight: 600;
    color: var(--nh-primary);
}

@media (min-width: 1365px) {
    #new-landing-page .nh-menu-toggle {
        display: none !important;
    }

    #new-landing-page .nh-header-desktop-nav {
        display: flex;
        flex: 1 1 auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 39px;
        margin-left: 0;
        margin-right: 0;
    }

    #new-landing-page .nh-header-actions {
        margin-left: 0;
    }
}

@media (max-width: 1364.98px) {
    #new-landing-page .nh-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        margin-right: 0;
    }

    #new-landing-page .nh-header-desktop-nav {
        display: none !important;
    }

    #new-landing-page .nh-header-actions {
        margin-left: 0;
    }

    #new-landing-page .nh-header .navbar {
        min-height: 64px;
    }

    #new-landing-page .nh-header-logo {
        width: 180px;
    }

    #new-landing-page .nh-header .navbar-brand {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #new-landing-page .nh-header-btn {
        height: 44px;
        font-size: 16px;
        padding: 0.25rem 0.9rem;
    }

    #new-landing-page .nh-header.is-compact .nh-header-logo {
        width: 150px;
    }

    #new-landing-page .nh-header.is-compact .nh-header-btn {
        height: 38px;
        font-size: 16px;
        padding: 0.2rem 0.75rem;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-offcanvas-nav .nav-link {
        padding: 10px 0;
    }

    #new-landing-page .nh-header-logo {
        width: 130px;
    }

#new-landing-page .nh-menu-toggle {
	width: 20px;
	height: 40px;
	margin-right: 0;
}
    #new-landing-page .nh-header-btn {
        height: 38px;
        font-size: 16px;
        padding: 0.2rem 0.65rem;
    }

    #new-landing-page .nh-header-actions {
        gap: 6px;
    }

    #new-landing-page .nh-header.is-compact .nh-header-logo {
        width: 110px;
    }
}

@media (max-width: 575.98px) {
    #new-landing-page .nh-header .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    #new-landing-page .nh-header-logo {
        width: 108px;
    }

    #new-landing-page .nh-header-btn {
        height: 36px;
        font-size: 16px;
        padding: 0.15rem 0.5rem;
    }

    #new-landing-page .nh-header.is-compact .nh-header-logo {
        width: 114px;
    }
}

/* Hero stage — background runs behind the transparent header */
#new-landing-page .nh-hero-stage {
    background-color: #f5f9fc;
    background-image: url("../assets/landing/hero-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: 130px;
}

#new-landing-page .nh-hero {
    background: transparent;
    padding: 40px 0 150px;
}

#new-landing-page .nh-hero-visual {
    position: relative;
    z-index: 3;
}

#new-landing-page .container.nh-hero-container {
    max-width: 1770px;
    width: 100%;
}

#new-landing-page .nh-hero-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--nh-primary);
    margin: 0 0 16px;
}

#new-landing-page .nh-hero-line-teal {
    color: var(--nh-secondary);
}

#new-landing-page .nh-hero-line-navy {
    color: var(--nh-primary);
}

#new-landing-page .nh-hero-divider {
    display: block;
    width: 60px;
    height: 6px;
    border: 0;
    margin: 0 0 24px;
}

.nh-hero-lead-new{
     font-weight: 700 !important;
}

#new-landing-page .nh-hero-lead {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 14px;
    max-width: 620px;
}

#new-landing-page .nh-hero-actions {
    gap: 15px;
    margin-top: 28px;
}

#new-landing-page .nh-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 8px;
    min-height: 50px;
    padding: 0.7rem 1.1rem;
    white-space: normal;
    text-align: left;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

#new-landing-page .nh-hero-btn-icon,
#new-landing-page .nh-hero-btn-arrow {
    display: inline-flex;
    flex-shrink: 0;
}
#new-landing-page .nh-hero-btn-arrow {
    margin: 0 5px;
}
#new-landing-page .nh-hero-btn-icon {
    margin-right: 4px;
}
#new-landing-page .nh-hero-btn-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

#new-landing-page .nh-hero-btn-primary .nh-hero-btn-icon img {
    width: 32.4px;
    height: auto;
}

#new-landing-page .nh-hero-btn-outline .nh-hero-btn-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
}

#new-landing-page .nh-hero-btn-arrow svg {
    width: 11px;
    height: 20px;
    display: block;
}

#new-landing-page .nh-hero-btn-primary {
    background-color: var(--nh-secondary);
    border: 1px solid var(--nh-secondary);
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

#new-landing-page .nh-hero-btn-outline {
    background-color: #ffffff;
    border: 2px solid var(--nh-primary);
    color: var(--nh-primary);
    font-size: 22px;
    font-weight: 600;
}

#new-landing-page .nh-hero-btn-primary:hover,
#new-landing-page .nh-hero-btn-primary:focus,
#new-landing-page .nh-hero-btn-outline:hover,
#new-landing-page .nh-hero-btn-outline:focus {
    background-color: var(--nh-primary);
    border-color: var(--nh-primary);
    color: #ffffff;
}

#new-landing-page .nh-hero-points {
    display: flex;
    align-items: start;
    list-style: none;
    margin: 12px 0 0;
    padding: 15px 20px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 12px;
}

#new-landing-page .nh-hero-points li {
    display: flex;
    align-items: start;
    gap: 8px;
    min-width: 0;
    font-family: "Figtree", system-ui, sans-serif;

    font-size: 16px;
    line-height: 26px;
    color: #031c42;
    padding: 0px 15px;
}

#new-landing-page .nh-hero-points li:first-child {
    padding-left: 0;
}

#new-landing-page .nh-hero-points li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 41px;
    background: #b8dce3;
    margin-left: 15px;
    margin-right: auto;
    flex-shrink: 0;
    align-self: center;
}

#new-landing-page .nh-hero-point-icon {
    display: inline-flex;
    color: var(--nh-primary);
    flex-shrink: 0;
}

#new-landing-page .nh-hero-point-icon img {
    width: 30px;
    object-fit: contain;
}

#new-landing-page .nh-hero-visual img {
    width: 100%;
    height: auto;
    margin-left: auto;
}

/* 2. Value pillars — overlaps hero wave */
#new-landing-page .nh-icon-bar {
    position: relative;
    z-index: 1;
    margin-top: -246px;
    padding: 290px 0 30px;
    background-image: url("../assets/landing/bg-1.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

#new-landing-page .nh-icon-bar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px 24px;
    min-height: 0;
}

#new-landing-page .nh-icon-bar-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

#new-landing-page .nh-icon-bar-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 200px;
    background: url("../assets/landing/card-devider.svg") center / 100% 100%
        no-repeat;
    pointer-events: none;
}

#new-landing-page .nh-icon-bar-icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: radial-gradient(
        circle at 32% 28%,
        #b8f3d8 0%,
        #2ec4a0 42%,
        #0099b4 100%
    );
    box-shadow: 0 8px 22px rgba(0, 153, 180, 0.4);
}

#new-landing-page .nh-icon-bar-icon:has(img) {
    background: none;
    box-shadow: none;
    border-radius: 0;
}

#new-landing-page .nh-icon-bar-icon img {
    width: 74px;
    height: 74px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-icon-bar-item h3 {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.nh-icon-bar-item-new p{
    color: #000 !important;
}

.nh-icon-bar-item-new h3{
    color: #002D66 !important;
}

#new-landing-page .nh-icon-bar-item p {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 1699px) {
    #new-landing-page .nh-hero {
        padding-bottom: 140px;
    }
}
@media (max-width: 1599px) {
    #new-landing-page .nh-header .nav-link {
        font-size: 18px;
    }
    #new-landing-page .nh-header-logo {
        width: 199px;
    }
    #new-landing-page .nh-header-btn {
        font-size: 18px;
    }
}

@media (max-width: 1499px) {
    #new-landing-page .nh-hero{ padding-top:30px;}
    #new-landing-page .container {
	max-width: 1360px;
	padding-left: 30px;
	padding-right: 30px;
}
    #new-landing-page .nh-hero-stage {
        padding-top: 100px;
    }
    #new-landing-page .nh-header-btn {
	font-size: 16px;
	height: 44px;
}
#new-landing-page .nh-header-desktop-nav {
	gap: 10px;
}
#new-landing-page .nh-header-bar{ gap: 20px;}
}
@media (max-width: 1199.98px) {
    #new-landing-page .nh-icon-bar {
        margin-top: 0;
        padding: 32px 20px;
        background: #002d66;
        background-image: none;
        border-top: 4px solid #f0cb54;
    }

    #new-landing-page .nh-icon-bar .container {
        padding-left: 0;
        padding-right: 0;
    }

    #new-landing-page .nh-icon-bar-item:not(:last-child)::after {
        display: none;
    }

    #new-landing-page .nh-icon-bar-item {
        padding:0px 38px;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-icon-bar {
        margin-top: 0;
        padding: 24px 16px;
    }

    #new-landing-page .nh-icon-bar-item {
        padding: 12px 0;
    }
}

/* 3. The Problem */
#new-landing-page .nh-problem {
    padding: 88px 0 20px;
    background-color: #ffffff;
    background-image: url("../assets/landing/bg-2.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

#new-landing-page .nh-problem .container {
    max-width: 1200px;
}

#new-landing-page .nh-problem-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

#new-landing-page .nh-problem-label-text {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0;
    color: #ff3f3f;
    white-space: nowrap;
}

#new-landing-page .nh-problem-label-line {
    display: block;
    flex: 0 0 515px;
    width: 515px;
    height: 8px;
    max-width: none;
    object-fit: none;
}

#new-landing-page .nh-problem-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 10px;
}

#new-landing-page .nh-problem-title-navy,
#new-landing-page .nh-problem-title-teal {
    display: block;
}

#new-landing-page .nh-problem-title-navy {
    color: #002d66;
}

#new-landing-page .nh-problem-title-teal {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 64px;
    letter-spacing: 0;
    text-align: center;
    color: #0099b4;
}

#new-landing-page .nh-problem-nowrap {
    white-space: nowrap;
}

#new-landing-page .nh-problem-intro {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    max-width: none;
    margin: 0 auto 20px;
}

#new-landing-page .nh-problem-card {
    background: #ffd8d8;
    border: 2px solid #ffd8d8;
    border-radius: 20px;
    overflow: hidden;
}

#new-landing-page .nh-problem-card-banner {
    background: #ffd8d8;
    color: #ff0000;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    padding: 13px 24px 15px;
}

#new-landing-page .nh-problem-card-body {
    position: relative;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 30px;
}

#new-landing-page .nh-problem-col {
    padding: 0;
}

#new-landing-page .nh-problem-col:first-child {
    padding-right: 30px;
}

#new-landing-page .nh-problem-col:last-child {
    padding-left: 30px;
}

#new-landing-page .nh-problem-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

#new-landing-page .nh-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-problem-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 5px;
    background: url("../assets/landing/alert.svg") center / contain no-repeat;
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-problem {
        padding: 40px 0 48px;
        background-size: cover;
    }

    #new-landing-page .nh-problem-card-body {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    #new-landing-page .nh-problem-title {
        font-size: 30px;
        line-height: 38px;
    }

    #new-landing-page .nh-problem-title-teal {
        font-size: 36px;
        line-height: 44px;
    }

    #new-landing-page .nh-problem-col:first-child,
    #new-landing-page .nh-problem-col:last-child {
        padding: 0;
        width: 100%;
        max-width: 100%;
        display: block;
        justify-self: stretch;
    }

    #new-landing-page .nh-problem-col:last-child {
        padding-top: 0;
    }

    #new-landing-page .nh-problem-list {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    #new-landing-page .nh-problem-col:last-child .nh-problem-list,
    #new-landing-page .nh-problem-col:last-child .nh-problem-list li {
        margin-left: 0;
        padding-left: 0;
    }

    #new-landing-page .nh-problem-list li::before {
        width: 16px;
        height: 16px;
        margin-top: 4px;
        background-size: 16px 16px;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-problem-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-problem-title-teal {
        font-size: 32px;
        line-height: 40px;
    }
}

/* 4. Transformation banner */

#new-landing-page .nh-banner .container {
    max-width: 1200px;
}

#new-landing-page .nh-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 2px solid #d4ddf4;
    box-sizing: border-box;
}

/* 4b. Before/After comparison banner */

#new-landing-page .nh-compare-inner {
    display: flex;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    border: 2px solid #a4d7e2;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    background: #f8f9fb;
    margin-top: 0px;
}

/* Left panel */
#new-landing-page .nh-compare-left {
    flex: 0 0 420px;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 14px 0 0px;
    position: relative;
}

/* Right panel */
#new-landing-page .nh-compare-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 0 24px;
}

/* Labels */
#new-landing-page .nh-compare-label {
    margin: 0 auto 20px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

#new-landing-page .nh-compare-label--red {
    color: #e82424;
}

#new-landing-page .nh-compare-label--teal {
    color: #0099b4;
    width: 100%;
    justify-content: center;
}

#new-landing-page .nh-compare-dot {
    font-weight: 400;
}

/* Left image — flush bottom */
#new-landing-page .nh-compare-img-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#new-landing-page .nh-compare-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

/* Arrow — absolutely centered between panels */
#new-landing-page .nh-compare-arrow {
    flex: 0 0 auto;
    margin: 0 -10px 0 -29px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#new-landing-page .nh-compare-arrow img {
    height: 462px;
    display: block;
    display: block;
    object-fit: contain;
    position: relative;
    left: auto;
    border-radius: 50%;
    transform: none;
}

/* Cards row */
#new-landing-page .nh-compare-cards {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1 1 auto;
    padding-bottom: 40px;
}

#new-landing-page .nh-compare-card {
    flex: 1 1 0;
    background: #ffffff;
    border: 1px solid #ceedf4;
    border-bottom: 4px solid #0099b4;
    border-radius: 16px;
    padding: 20px 14px;
    box-shadow: 0 8px 24px 0 rgba(0, 153, 180, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
    text-align: center;
    gap: 8px;
    box-sizing: border-box;
    position: relative;
}

/* Gold chain connector between cards */
#new-landing-page .nh-compare-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    width: 37px;
    height: 22px;
    background: url("../assets/landing/connector.png") center no-repeat;
    z-index: 1;
}

#new-landing-page .nh-compare-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

#new-landing-page .nh-compare-card h4 {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: #002d66;
}

#new-landing-page .nh-compare-card p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
    color: #000000;
}

/* Responsive */
@media (max-width: 1199.98px) {
    #new-landing-page .nh-compare-inner {
        flex-wrap: wrap;
    }
    #new-landing-page .nh-compare-left {
        flex: 0 0 100%;
        width: 100%;
        flex-direction: row;
        align-items: flex-end;
        padding: 32px 24px 0;
        gap: 24px;
    }
    #new-landing-page .nh-compare-img-wrap {
        flex: 0 0 auto;
        align-items: flex-end;
    }
    #new-landing-page .nh-compare-img-wrap img {
        max-width: 200px;
    }
    #new-landing-page .nh-compare-arrow {
        display: none;
    }
    #new-landing-page .nh-compare-right {
        flex: 0 0 100%;
        padding: 24px 24px 0;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-compare-left {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px 0;
    }
    #new-landing-page .nh-compare-right {
        padding: 24px 20px 0;
    }
    #new-landing-page .nh-compare-cards {
        flex-wrap: wrap;
        gap: 12px;
        padding-bottom: 28px;
    }
    #new-landing-page .nh-compare-card {
        flex: 0 0 calc(50% - 6px);
    }
    #new-landing-page .nh-compare-card:not(:last-child)::after {
        display: none;
    }
}

/* 5. Governance risk quote */
#new-landing-page .nh-quote {
    padding: 20px 0 20px;
}

#new-landing-page .nh-quote .container {
    max-width: 1200px;
}

#new-landing-page .nh-quote-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 16px 30px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #002d66;
    background-color: #002d66;
    background-image: url("../assets/landing/right-image.webp");
    background-position: right center;
    background-size: 436px 100%;
    background-repeat: no-repeat;
}

#new-landing-page .nh-quote-gold,
#new-landing-page .nh-quote-white {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0;
}

#new-landing-page .nh-quote-gold {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 46px;
    letter-spacing: 0;
    text-align: left;
    color: #d9b84f;
    margin-bottom: 0px;
}

#new-landing-page .nh-quote-white {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-quote-card {
        min-height: 0;
    }

    #new-landing-page .nh-quote-gold {
        font-size: 22px;
        line-height: 32px;
    }

    #new-landing-page .nh-quote-white {
        font-size: 24px;
        line-height: 32px;
    }
}

/* 6. The DiraOne Solution */
#new-landing-page .nh-solution {
    padding: 80px 0 80px;
    background-color: transparent;
    background-image: url("../assets/landing/bg-3.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

#new-landing-page .nh-solution .container {
    width: 100%;
}

#new-landing-page .nh-solution-card {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding: 64px;
    background: #ffffff;
    border: 4px solid #002d66;
    border-radius: 50px;
    box-sizing: border-box;
}

#new-landing-page .nh-solution-card::before,
#new-landing-page .nh-solution-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

#new-landing-page .nh-solution-card::before {
    left: 4px;
    top: 4px;
    background: linear-gradient(131.19deg, #0099b4 -160.4%, #ffffff 51.7%);
    border-radius: 42px 0 0 0;
}

#new-landing-page .nh-solution-card::after {
    right: 4px;
    top: 4px;
    background: linear-gradient(228.81deg, #0099b4 -160.4%, #ffffff 51.7%);
    border-radius: 0 42px 0 0;
}

#new-landing-page .nh-solution-check {
    position: absolute;
    top: -71.245px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 0;
    width: 142.49px;
    height: 142.49px;
}

#new-landing-page .nh-solution-check img {
    width: 142.49px;
    height: 142.49px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-solution-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
    margin: 5px 0 5px;
}

#new-landing-page .nh-solution-label-text {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #0099b4;
    white-space: nowrap;
    flex-shrink: 0;
}

#new-landing-page img.nh-solution-label-line {
    display: block;
    height: 8px;
    min-width: 0;
    flex: 1 1 0;
    background: none;
    object-fit: contain;
}

#new-landing-page .nh-solution-label-line-left {
    max-width: 375px;
    object-position: right center;
}

#new-landing-page .nh-solution-label-line-right {
    max-width: 379px;
    object-position: left center;
}

#new-landing-page .nh-solution-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 0px;
}

#new-landing-page .nh-solution-title-navy,
#new-landing-page .nh-solution-title-teal {
    display: block;
}

#new-landing-page .nh-solution-title-navy {
    color: #002d66;
}

#new-landing-page .nh-solution-title-teal {
    color: #0099b4;
}

#new-landing-page .nh-solution-intro {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin: 0 0 85px;
}

#new-landing-page .nh-solution-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin: 72px 0 40px;
}

#new-landing-page .nh-solution-step {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    padding: 90px 20px 24px;
    background: #ffffff;
    border: 2px solid #a4d7e2;
    border-radius: 30px;
    box-sizing: border-box;
    overflow: visible;
}

#new-landing-page .nh-solution-step-icon {
    position: absolute;
    top: -71.835px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 74px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #002d66;
    z-index: 2;
}

#new-landing-page .nh-solution-step-icon:has(img) {
    width: 143.67px;
    height: 143.67px;
    background: none;
    border-radius: 0;
}

#new-landing-page .nh-solution-step-icon img {
    width: 143.67px;
    height: 143.67px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-solution-step-num {
    position: absolute;
    left: 50%;
    bottom: -10.885px;
    transform: translateX(-50%);
    width: 41.77px;
    height: 41.77px;
    border-radius: 50%;
    background: #d9b84f;
    border: 3px solid #ffffff;
    box-sizing: border-box;
    color: #ffffff;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

#new-landing-page .nh-solution-step h3 {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
    margin: 0 0 12px;
}

#new-landing-page .nh-solution-step p {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin: 0;
}

#new-landing-page .nh-solution-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#new-landing-page .nh-solution-arrow img {
    width: auto;
    height: 28px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-solution-note {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    background: #e8f5f8;
    border-radius: 20px;
}

#new-landing-page .nh-solution-note-icon {
    flex-shrink: 0;
    line-height: 0;
    width: 90px;
    height: 90px;
}

#new-landing-page .nh-solution-note-icon img {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-solution-note-copy {
    min-width: 0;
}

#new-landing-page .nh-solution-note p {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    text-align: left;
}

#new-landing-page .nh-solution-note p.nh-solution-note-strong {
    display: block;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-solution-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-solution-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 80px;
        margin-top: 72px;
    }

    #new-landing-page .nh-solution-arrow {
        justify-content: center;
        padding: 0;
        transform: rotate(90deg);
    }

    #new-landing-page .nh-solution-intro br,
    #new-landing-page .nh-solution-step p br,
    #new-landing-page .nh-solution-note p br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-solution-title {
        font-size: 32px;
        line-height: 40px;
    }

    #new-landing-page .nh-solution-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 7. Capabilities slider */
#new-landing-page .nh-capabilities {
    background: #ffffff;
    padding: 0px 0 20px;
    overflow: visible;
}

#new-landing-page .nh-capabilities .container {
    overflow: visible;
}

#new-landing-page .nh-cap-title {
    margin: 0 auto 28px;
    max-width: 1100px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

#new-landing-page .nh-cap-slider {
    position: relative;
}

#new-landing-page .nh-cap-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9b84f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        opacity 0.2s ease;
}

#new-landing-page .nh-cap-nav-prev {
    left: -76px;
}

#new-landing-page .nh-cap-nav-next {
    right: -76px;
}

#new-landing-page .nh-cap-nav img {
    width: 14px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

#new-landing-page .nh-cap-nav-prev img {
    transform: rotate(180deg);
}

#new-landing-page .nh-cap-nav:hover:not(:disabled) {
    background: #c4a43d;
}

#new-landing-page .nh-cap-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

#new-landing-page .nh-cap-viewport {
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

#new-landing-page .nh-cap-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

#new-landing-page .nh-cap-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

#new-landing-page .nh-cap-card {
    flex: 1 1 0;
    align-self: flex-start;
    width: auto;
    max-width: none;
    min-width: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff 46.67%, #e8f5f8 100%);
    border: 2px solid #a4d7e2;
    border-radius: 30px;
    box-shadow: 0px 5px 0px 0px #0099b4;
    margin-bottom: 8px;
    box-sizing: border-box;
}

#new-landing-page .nh-cap-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 -30px 20px;
    padding: 0 30px 20px;
    border-bottom: 1px solid #a4d7e2;
}

#new-landing-page .nh-cap-card-icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    line-height: 0;
}

#new-landing-page .nh-cap-card-icon:empty {
    border-radius: 50%;
    background: #002d66;
}

#new-landing-page .nh-cap-card-icon img {
    width: 96px;
    height: 96px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-cap-card-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-cap-lead {
    margin: 0 0 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-cap-manage {
    margin: 0 0 7px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-cap-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 0 0 24px;
    flex: none;
    align-content: start;
}

#new-landing-page .nh-cap-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}

#new-landing-page .nh-cap-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-cap-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    flex-shrink: 0;
    background: url("../assets/landing/tick.webp") center / 18px 18px no-repeat;
}

#new-landing-page .nh-cap-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #bcdfe6;
    border-radius: 20px;
}

#new-landing-page .nh-cap-foot-icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    line-height: 0;
}

#new-landing-page .nh-cap-foot-icon:empty {
    border-radius: 50%;
    background: #002d66;
}

#new-landing-page .nh-cap-foot-icon img {
    width: 74px;
    height: 74px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-cap-foot p {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-cap-foot-copy {
    flex: 1;
    min-width: 0;
}

#new-landing-page .nh-cap-foot p.nh-cap-foot-label {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

#new-landing-page .nh-cap-wide-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    flex: none;
    margin: 0 0 14px;
    align-items: start;
    min-width: 0;
}

#new-landing-page .nh-cap-wide-col {
    min-width: 0;
}

#new-landing-page .nh-cap-wide-col .nh-cap-list,
#new-landing-page .nh-cap-pack .nh-cap-list {
    margin-bottom: 0;
}

#new-landing-page .nh-cap-pack {
    min-width: 0;
    padding: 24px;
    background: linear-gradient(
        180deg,
        #bcdfe6 -42.79%,
        rgba(255, 255, 255, 0) 87.22%
    );
    border-radius: 20px;
}

#new-landing-page .nh-cap-pack-title {
    margin: 0 0 12px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-cap-pack .nh-cap-lead {
    margin-bottom: 16px;
}

@media (max-width: 1519.98px) {
    #new-landing-page .nh-cap-nav-prev {
        left: 0;
        transform: translate(-50%, -50%);
    }

    #new-landing-page .nh-cap-nav-next {
        right: 0;
        transform: translate(50%, -50%);
    }
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-cap-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-cap-card-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-capabilities {
        padding-top: 0;
    }

    #new-landing-page .nh-cap-slider {
        padding-bottom: 72px;
    }

    #new-landing-page .nh-cap-nav {
        top: auto;
        bottom: 0;
        width: 40px;
        height: 40px;
    }

    #new-landing-page .nh-cap-nav-prev {
        left: calc(50% - 48px);
        transform: none;
    }

    #new-landing-page .nh-cap-nav-next {
        right: calc(50% - 48px);
        transform: none;
    }

    #new-landing-page .nh-cap-nav img {
        width: 9px;
        height: 16px;
    }

    #new-landing-page .nh-cap-slide {
        display: contents;
    }

    #new-landing-page .nh-cap-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    #new-landing-page .nh-cap-wide-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #new-landing-page .nh-cap-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    #new-landing-page .nh-cap-list {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-cap-card-icon,
    #new-landing-page .nh-cap-card-icon img {
        width: 72px;
        height: 72px;
    }

    #new-landing-page .nh-cap-foot-icon,
    #new-landing-page .nh-cap-foot-icon img {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-cap-slider {
        padding-bottom: 41px;
    }

    #new-landing-page .nh-cap-nav {
        top: auto;
        bottom: 0;
        width: 48px;
        height: 48px;
    }

    #new-landing-page .nh-cap-nav-prev {
        left: calc(50% - 36px);
        transform: none;
    }

    #new-landing-page .nh-cap-nav-next {
        right: calc(50% - 36px);
        transform: none;
    }

    #new-landing-page .nh-cap-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-cap-title br {
        display: none;
    }

    #new-landing-page .nh-cap-slide {
        flex-direction: column;
        gap: 16px;
    }

    #new-landing-page .nh-cap-card {
        width: 100%;
        max-width: 100%;
    }

    #new-landing-page .nh-cap-card {
        padding: 20px;
        border-radius: 24px;
    }

    #new-landing-page .nh-cap-card-head {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-cap-card-title {
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-cap-pack-title {
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-cap-pack {
        padding: 16px;
    }

    #new-landing-page .nh-cap-card-icon,
    #new-landing-page .nh-cap-card-icon img {
        width: 72px;
        height: 72px;
    }

    #new-landing-page .nh-cap-foot {
        align-items: flex-start;
    }

    #new-landing-page .nh-cap-foot-icon,
    #new-landing-page .nh-cap-foot-icon img {
        width: 56px;
        height: 56px;
    }

    #new-landing-page .nh-cap-lead,
    #new-landing-page .nh-cap-manage,
    #new-landing-page .nh-cap-list li,
    #new-landing-page .nh-cap-foot p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* 8. Board intelligence */
#new-landing-page .nh-intel {
    background: #f1feff;
    padding: 40px 0 80px;
}

#new-landing-page .nh-intel-card {
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 30px;
}

#new-landing-page .nh-intel-main {
    padding: 15px 28px 50px;
    background: #ffffff;
    border: 2px solid #a4d7e2;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    box-sizing: border-box;
}

#new-landing-page .nh-intel-title {
    margin: 0 auto 20px;
    max-width: 1100px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

#new-landing-page .nh-intel-intro {
    margin: 0 0 6px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-intel-topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 0 0 28px;
}

#new-landing-page .nh-intel-topics ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}

#new-landing-page .nh-intel-topics li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-intel-example-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 10px;
    min-width: 0;
    margin: 0;
    white-space: nowrap;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-intel-topics li::before,
#new-landing-page .nh-intel-example-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

#new-landing-page .nh-intel-topics li::before {
    background: url("../assets/landing/tick.webp") center / 18px 18px no-repeat;
}

#new-landing-page .nh-intel-example-list li::before {
    background: url("../assets/landing/white-tick.webp") center / 18px 18px
        no-repeat;
}

#new-landing-page .nh-intel-metrics {
    padding: 20px;
    background: linear-gradient(
        180deg,
        #bcdfe6 -42.79%,
        rgba(255, 255, 255, 0) 87.22%
    );
    border-radius: 20px;
    box-sizing: border-box;
}

#new-landing-page .nh-intel-metrics-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 20px;
}

#new-landing-page .nh-intel-metrics-label span {
    flex-shrink: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
    white-space: nowrap;
}

#new-landing-page .nh-intel-metrics-line {
    flex: 1 1 0;
    min-width: 0;
    max-height: 8px;
    object-fit: contain;
}

#new-landing-page .nh-intel-metrics-line-left {
    flex: none;
    width: 160px;
    max-width: 160px;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: right center;
}

#new-landing-page .nh-intel-metrics-line-right {
    flex: none;
    width: 160px;
    max-width: 160px;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
}

#new-landing-page .nh-intel-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    min-height: 0;
    padding: 16px 40px;
    background: #ffffff;
    border: 1px solid #a4d7e2;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}

#new-landing-page .nh-intel-metric-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    line-height: 0;
}

#new-landing-page .nh-intel-metric-icon:empty {
    border-radius: 50%;
    background: #d9b84f;
}

#new-landing-page .nh-intel-metric-icon img {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-intel-metric p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

#new-landing-page .nh-intel-metrics-nav {
    display: none;
}

#new-landing-page .nh-intel-metrics-btn {
width: 30px;
  height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9b84f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#new-landing-page .nh-intel-metrics-btn img {
    width: 9px;
    height: 16px;
    filter: brightness(0) invert(1);
}

#new-landing-page .nh-intel-metrics-btn-prev img {
    transform: rotate(180deg);
}

#new-landing-page .nh-intel-visual {
    width: 100%;
    height: auto;
}

#new-landing-page .nh-intel-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-intel-example {
    padding: 0 0 32px;
    background: #002d66;
    border-radius: 0 0 30px 30px;
}

#new-landing-page .nh-intel-example-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 411px;
    margin: 0 0 10px;
    padding: 12px 40px 12px 28px;
    background: linear-gradient(90deg, #0099b4 0%, #002d66 75.1%);
    border-radius: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
    box-sizing: border-box;
}

#new-landing-page .nh-intel-example-bulb {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

#new-landing-page .nh-intel-example-body {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
}

#new-landing-page .nh-intel-example-ask-col {
    flex: 0 1 427px;
    max-width: 427px;
    min-width: 0;
}

#new-landing-page .nh-intel-example-list-col {
    flex: 1 1 0;
    min-width: 0;
}

#new-landing-page .nh-intel-example-divider {
    display: block;
    width: auto;
    height: 174px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
}

#new-landing-page .nh-intel-example-ask {
    margin: 0 0 0px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-intel-example-quote {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #f0cb54;
}

#new-landing-page .nh-intel-example-lead {
    margin: 0 0 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-intel-example-list {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 45px;
    row-gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#new-landing-page .nh-intel-example-note {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #fae383;
}

#new-landing-page .nh-intel-example-note-icon {
    width: 17.5px;
    height: 17.5px;
    margin-top: 5px;
    flex-shrink: 0;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-intel-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-intel-example-quote {
        font-size: 32px;
        line-height: 40px;
    }

    #new-landing-page .nh-intel-example-body {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-intel {
        padding: 32px 0 56px;
    }

    #new-landing-page .nh-intel-main {
        padding: 28px;
    }

    #new-landing-page .nh-intel-example {
        padding: 0 0 24px;
    }

    #new-landing-page .nh-intel-example-tag {
        padding: 12px 24px 12px 20px;
    }

    #new-landing-page .nh-intel-example-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    #new-landing-page .nh-intel-example-body {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    #new-landing-page .nh-intel-example-ask-col {
        flex: 1 1 auto;
    }

    #new-landing-page .nh-intel-example-divider {
        display: none;
    }

    #new-landing-page .nh-intel-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 12px;
    }

    #new-landing-page .nh-intel-topics {
        grid-template-columns: 1fr 1fr;
    }

    #new-landing-page .nh-intel-example-list {
        grid-template-columns: repeat(2, max-content);
        grid-template-rows: none;
        grid-auto-flow: row;
        column-gap: 32px;
    }
    
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-intel-main {
        padding: 20px;
    }

    #new-landing-page .nh-intel-example {
        padding: 0 0 20px;
    }

    #new-landing-page .nh-intel-example-tag {
        padding: 10px 20px 10px 16px;
        font-size: 22px;
        line-height: 28px;
    }

    #new-landing-page .nh-intel-example-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-intel-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-intel-title br {
        display: none;
    }

    #new-landing-page .nh-intel-intro {
        font-size: 20px;
        line-height: 32px;
    }

    #new-landing-page .nh-intel-metrics-label span {
        font-size: 22px;
        line-height: 32px;
    }

    #new-landing-page .nh-intel-topics {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-intel-example-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        row-gap: 12px;
    }

    #new-landing-page .nh-intel-example-list li {
        white-space: normal;
    }

    #new-landing-page .nh-intel-example-quote {
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    #new-landing-page .nh-intel-metrics-line {
        display: none;
    }
}

/* 9. Integrations */
#new-landing-page .nh-integrate {
    padding: 60px 0 0px;
}

#new-landing-page .nh-integrate-card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 71.245px auto 0;
    box-sizing: border-box;
}

#new-landing-page .nh-integrate-badge {
    position: absolute;
    top: -71.245px;
    left: 50%;
    z-index: 2;
    width: 142.49px;
    height: 142.49px;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    line-height: 0;
}

#new-landing-page .nh-integrate-badge img {
    width: 142.49px;
    height: 142.49px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-integrate-main {
    padding: 58px 48px 40px;
    background: #ffffff;
    border: 2px solid #a4d7e2;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    box-sizing: border-box;
}

#new-landing-page .nh-integrate-title {
    margin: -10px auto 6px;
    max-width: none;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0;
    text-align: center;
    color: #163354;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

#new-landing-page .nh-integrate-rule {
    display: block;
    width: 50px;
    height: 5px;
    margin: 0 auto 35px;
}

#new-landing-page .nh-integrate-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 203px));
    justify-content: space-between;
    gap: 26px;
}

#new-landing-page .nh-integrate-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 203px;
    height: 93px;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #a4d7e2;
    border-radius: 15px;
    box-sizing: border-box;
}

#new-landing-page .nh-integrate-logo img {
    max-width: 100%;
    max-height: 61px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-integrate-principles {
    padding: 25px 30px 30px;
    background-color: #002d66;
    background-image: url("../assets/landing/bg-4.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 20px 20px;
}

#new-landing-page .nh-integrate-principles-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 22px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    color: #f0cb54;
    white-space: nowrap;
}

#new-landing-page .nh-integrate-principles-line {
    flex: none;
    width: 160px;
    max-width: 160px;
    height: auto;
    max-height: none;
    object-fit: contain;
}

#new-landing-page .nh-integrate-principles-line-left {
    object-position: right center;
}

#new-landing-page .nh-integrate-principles-line-right {
    object-position: left center;
}

#new-landing-page .nh-integrate-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

#new-landing-page .nh-integrate-principle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

#new-landing-page .nh-integrate-principle-icon,
#new-landing-page img.nh-integrate-principle-icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    display: block;
    object-fit: none;
    line-height: 0;
}

#new-landing-page .nh-integrate-principle p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-integrate-main {
        padding: 88px 28px 32px;
    }

    #new-landing-page .nh-integrate-principles {
        padding: 28px 28px 32px;
    }
}
@media (min-width: 1200px) {
    .nh-dira-title {
        white-space: nowrap;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-integrate {
        padding: 0 0 36px;
    }

    #new-landing-page .nh-integrate-logos {
        grid-template-columns: repeat(2, minmax(0, 203px));
        justify-content: center;
    }

    #new-landing-page .nh-integrate-principles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    #new-landing-page .nh-integrate-principle-icon,
    #new-landing-page img.nh-integrate-principle-icon {
        transform: scale(0.82);
        transform-origin: center center;
    }

    #new-landing-page .nh-integrate-principle {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    #new-landing-page .nh-integrate-principle p {
        text-align: center;
    }

    #new-landing-page .nh-integrate-title {
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-integrate-main {
        padding:63px 20px 24px;
    }

    #new-landing-page .nh-integrate-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 12px;
    }

    #new-landing-page .nh-integrate-logo {
        width: 100%;
        max-width: 203px;
        height: 93px;
        justify-self: center;
    }

    #new-landing-page .nh-integrate-principles {
        padding: 24px 20px 28px;
    }

    #new-landing-page .nh-integrate-principles-label {
        font-size: 22px;
        line-height: 32px;
        gap: 10px;
    }

    #new-landing-page .nh-integrate-principles-line {
        width: 48px;
        max-width: 48px;
    }
}

/* 10. My Dira */
#new-landing-page .nh-dira {
    background-image: url("../assets/landing/bg-5.webp");
    background-position: center top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 334px 0 80px;
}

#new-landing-page .nh-dira-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
    grid-template-areas:
        "copy phones"
        "provides promise";
    gap: 28px 48px;
    align-items: start;
}

#new-landing-page .nh-dira-copy {
    grid-area: copy;
}

#new-landing-page .nh-dira-phones {
    grid-area: phones;
}

#new-landing-page .nh-dira-provides {
    grid-area: provides;
}

#new-landing-page .nh-dira-promise {
    grid-area: promise;
}

#new-landing-page .nh-dira-title {
    margin: 0 0 10px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-dira-intro {
    margin: 0 0 20px;
    max-width: 640px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-dira-access {
    padding: 0;
    background: #002d66;
    border: 2px solid #a4d7e2;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

#new-landing-page .nh-dira-access-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 16px 20px;
    background: #a4d7e2;
    border-radius: 18px 18px 0 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-dira-access-icon,
#new-landing-page .nh-dira-identity-icon,
#new-landing-page .nh-dira-provide-icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: contain;
    border-radius: 0;
    background: none;
}

#new-landing-page .nh-dira-access-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    padding: 20px 28px 24px;
}

#new-landing-page .nh-dira-access-list ul,
#new-landing-page .nh-dira-promise-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#new-landing-page .nh-dira-promise-list {
    gap: 14px;
}

#new-landing-page .nh-dira-access-list li,
#new-landing-page .nh-dira-promise-list li,
#new-landing-page .nh-dira-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-dira-access-list li::before,
#new-landing-page .nh-dira-promise-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    background: url("../assets/landing/white-tick.webp") center / 18px 18px
        no-repeat;
}

#new-landing-page .nh-dira-note-icon {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    margin-top: 4px;
    flex-shrink: 0;
    object-fit: contain;
}

#new-landing-page .nh-dira-note {
    margin: 16px 0 0;
    color: #ffffff;
}

#new-landing-page .nh-dira-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0 0;
}

#new-landing-page .nh-dira-identity-icon {
    width: auto;
    height: auto;
}

#new-landing-page .nh-dira-identity-divider {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-dira-identity-copy h3 {
    margin: 0 0 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
    color: #ffffff;
}

#new-landing-page .nh-dira-identity-copy p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
}

#new-landing-page .nh-dira-provides {
    margin: 0;
}

#new-landing-page .nh-dira-label {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 28px;
    margin: 0 0 20px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    color: #f0cb54;
    white-space: nowrap;
}

#new-landing-page .nh-dira-label-line {
    flex: 1 1 0;
    min-width: 40px;
    max-width: none;
    width: auto;
    height: auto;
    max-height: 8px;
    object-fit: contain;
    object-position: left center;
}

#new-landing-page .nh-dira-provide-icon {
    width: auto;
    height: auto;
}

#new-landing-page .nh-dira-provides-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

#new-landing-page .nh-dira-provide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
    padding: 12px 10px;
    background: #002d66;
    border: 1px solid #d9b84f;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}

#new-landing-page .nh-dira-provide p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #f3cb4e;
}

#new-landing-page .nh-dira-phones {
    margin: 0;
    line-height: 0;
}

#new-landing-page .nh-dira-phones img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-dira-promise-list li {
    color: #ffffff;
}

#new-landing-page .nh-dira-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1100px;
    margin: 30px auto 0;
}

#new-landing-page .nh-dira-cta-line {
    max-width: 100%;
    height: auto;
}

#new-landing-page .nh-dira-cta {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

#new-landing-page .nh-dira-cta span {
    color: #f0cb54;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-dira-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-dira-provides-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-dira {
        margin-top: 8px;
        padding: 56px 0;
    }

    #new-landing-page .nh-dira-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "phones"
            "provides"
            "promise";
        gap: 40px;
    }

    #new-landing-page .nh-dira-title {
        font-size: 32px;
        line-height: 42px;
    }

    #new-landing-page .nh-dira-phones {
        max-width: 320px;
        margin: 0 auto;
    }

    #new-landing-page .nh-dira-cta-wrap {
        margin-top: 32px;
        gap: 12px;
    }

    #new-landing-page .nh-dira-cta {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-dira-access-list {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-dira-access-list {
        padding: 16px 20px 20px;
    }

    #new-landing-page .nh-dira-access-head {
        padding: 14px 16px;
    }

    #new-landing-page .nh-dira-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-dira-title br {
        display: none;
    }

    #new-landing-page .nh-dira-identity-copy h3 {
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-dira-label {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    #new-landing-page .nh-dira-provide p {
        font-size: 16px;
        line-height: 22px;
    }
}

/* 11. Security / Boardroom trust */
#new-landing-page .nh-security {
    background: linear-gradient(180deg, #e6fdff 6.82%, #ffffff 50%);
    padding: 70px 0;
}

#new-landing-page .nh-security-title {
    margin: 0 auto 16px;
    max-width: 1100px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

#new-landing-page .nh-security-intro {
    margin: 0 auto 30px;
    max-width: 820px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

#new-landing-page .nh-security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0 0 20px;
    padding-top: 50px;
}

#new-landing-page .nh-security-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    padding-top: 60px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #f0feff 98.28%);
    border: 2px solid #a4d7e2;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: visible;
    text-align: left;
}

#new-landing-page .nh-security-panel {
    background: #ffffff;
    border: 2px solid #bcdfe6;
    border-radius: 20px;
    box-sizing: border-box;
}

#new-landing-page .nh-security-card-icon {
    position: absolute;
    top: -50px;
    left: 20px;
    flex-shrink: 0;
    margin: 0;
    z-index: 1;
}

#new-landing-page .nh-security-panel-icon {
    flex-shrink: 0;
    margin: 0;
}

#new-landing-page span.nh-security-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0099b4 0%, #002d66 100%);
}

#new-landing-page img.nh-security-card-icon {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    background: none;
    border: 0;
    border-radius: 0;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-security-card-icon img,
#new-landing-page .nh-security-panel-icon img {
    width: auto;
    height: auto;
    max-width: none;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-security-card h3 {
    margin: 0 0 12px;
    width: 100%;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-security-panel h3 {
    margin: 0;
    width: 100%;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-security-card p,
#new-landing-page .nh-security-card li {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-security-card p + p {
    margin-top: 12px;
}

#new-landing-page .nh-security-panel p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-security-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

#new-landing-page .nh-security-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#new-landing-page .nh-security-card li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    background: url("../assets/landing/blue-tick2.svg") center / 18px 18px
        no-repeat;
}

#new-landing-page .nh-security-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#new-landing-page .nh-security-panel {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
}

#new-landing-page .nh-security-panel-icon {
    margin: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    background: none;
    border: 0;
    border-radius: 0;
    display: block;
    object-fit: contain;
}

#new-landing-page span.nh-security-panel-icon {
    width: 72px;
    height: 72px;
    border: 2px solid #002d66;
    border-radius: 50%;
    box-sizing: border-box;
}

#new-landing-page .nh-security-panel-copy {
    min-width: 0;
}

#new-landing-page .nh-security-trust {
    font-weight: 700 !important;
}

#new-landing-page .nh-security-foot {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 80px auto 0;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-security-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-security {
        padding-top: 56px;
    }

    #new-landing-page .nh-security-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 72px;
    }

    #new-landing-page .nh-security-card-icon,
    #new-landing-page img.nh-security-card-icon {
        top: -44px;
        width: 88px;
        height: 88px;
        max-width: 88px;
        max-height: 88px;
    }

    #new-landing-page .nh-security-foot {
        margin-top: 48px;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-security {
        padding: 56px 0;
    }

    #new-landing-page .nh-security-title {
        font-size: 32px;
        line-height: 42px;
    }

    #new-landing-page .nh-security-title br {
        display: none;
    }

    #new-landing-page .nh-security-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-security-grid {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-security-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-security-intro {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px;
    }

    #new-landing-page .nh-security-panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* 12. Audit Room */
#new-landing-page .nh-audit {
    background: #ffffff;
    padding: 0px 0;
}

#new-landing-page .nh-audit-title {
    margin: 0 auto 20px;
    max-width: 980px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

#new-landing-page .nh-audit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 0 0 30px;
}

#new-landing-page .nh-audit-card {
    padding: 15px 20px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #f0feff 98.28%);
    border: 2px solid #a4d7e2;
    border-bottom-width: 6px;
    border-radius: 20px;
    box-sizing: border-box;
}

#new-landing-page .nh-audit-card h3 {
    margin: 0 0 0px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-audit-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

#new-landing-page .nh-audit-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-audit-card li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    background: url("../assets/landing/blue-tick2.svg") center / 18px 18px
        no-repeat;
}

#new-landing-page .nh-audit-outcome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #e9fafe;
    border-radius: 15px;
}

#new-landing-page .nh-audit-outcome-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-audit-outcome-copy {
    min-width: 0;
    flex: 1 1 auto;
}

#new-landing-page .nh-audit-outcome-label {
    margin: 0 0 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-audit-outcome-text {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-audit-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-audit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-audit {
        padding: 0px 0;
    }

    #new-landing-page .nh-audit-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 32px;
    }

    #new-landing-page .nh-audit-title br {
        display: none;
    }

    #new-landing-page .nh-audit-card h3 {
        font-size: 22px;
        line-height: 32px;
    }

    #new-landing-page .nh-audit-outcome-label {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-audit-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-audit-outcome {
        gap: 12px;
        padding: 16px;
    }
}

@media (max-width: 575.98px) {
    #new-landing-page .nh-audit-outcome-label {
        font-size: 22px;
        line-height: 32px;
    }

    #new-landing-page .nh-audit-outcome-text {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 374.98px) {
    #new-landing-page .nh-audit-outcome {
        flex-direction: column;
    }
}

/* 13. Dira Assistant */
#new-landing-page .nh-assistant {
    padding: 290px 0 80px;
    margin-top: -50px;
    background-image: url("../assets/landing/bg-3.webp");
    background-repeat: no-repeat;
    background-position: center top;
}

#new-landing-page .nh-assistant-title {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 16px;
    box-sizing: border-box;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

#new-landing-page .nh-assistant-body {
    position: relative;
    z-index: 1;
    padding: 0;
}

#new-landing-page .nh-assistant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 550px));
    justify-content: center;
    gap: 40px;
    padding-top: 50px;
}

#new-landing-page .nh-assistant-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 550px;
    padding: 20px;
    padding-top: 60px;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: visible;
}

#new-landing-page .nh-assistant-card--helps {
    padding: 30px;
    padding-top: 55px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #f0feff 98.28%);
    border: 2px solid #a4d7e2;
    border-radius: 20px;
}

#new-landing-page .nh-assistant-card--helps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 158.84px;
    height: 130px;
    background: linear-gradient(138.25deg, #0099b4 -130.53%, #ffffff 50.87%);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

#new-landing-page .nh-assistant-card--cannot {
    padding: 30px;
    padding-top: 55px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #ffe4e4 98.28%);
    border: 2px solid #ffd8d8;
    border-radius: 20px;
}

#new-landing-page .nh-assistant-card--cannot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 158.84px;
    height: 130px;
    background: linear-gradient(138.25deg, #ff5656 -130.53%, #ffffff 50.87%);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

#new-landing-page .nh-assistant-card-icon {
    position: absolute;
    top: -39.465px;
    left: 30px;
    z-index: 1;
    transform: none;
    width: 78.93px;
    height: 78.93px;
    border-radius: 50%;
    box-sizing: border-box;
}

#new-landing-page span.nh-assistant-card-icon--helps {
    background: linear-gradient(135deg, #0099b4 0%, #002d66 100%);
    border: 3px solid #d9b84f;
}

#new-landing-page span.nh-assistant-card-icon--helps::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 16px;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    transform: translate(-50%, -58%) rotate(-45deg);
}

#new-landing-page span.nh-assistant-card-icon--cannot {
    background: #d64545;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #d64545;
}

#new-landing-page span.nh-assistant-card-icon--cannot::before,
#new-landing-page span.nh-assistant-card-icon--cannot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

#new-landing-page span.nh-assistant-card-icon--cannot::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#new-landing-page span.nh-assistant-card-icon--cannot::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#new-landing-page img.nh-assistant-card-icon {
    top: -39.465px;
    left: 30px;
    transform: none;
    width: 78.93px;
    height: 78.93px;
    max-width: 78.93px;
    max-height: 78.93px;
    border: 0;
    border-radius: 0;
    background: none;
    object-fit: contain;
}

#new-landing-page .nh-assistant-card h3,
#new-landing-page .nh-assistant-card ul {
    position: relative;
    z-index: 1;
}

#new-landing-page .nh-assistant-card h3 {
    margin: 0 0 5px;
    width: 100%;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
}

#new-landing-page .nh-assistant-card--helps h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-assistant-card--cannot h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #f51629;
}

#new-landing-page .nh-assistant-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#new-landing-page .nh-assistant-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

#new-landing-page .nh-assistant-card--helps li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 9px;
    flex-shrink: 0;
    background: url("../assets/landing/blue-tick2.svg") center / 18px 18px
        no-repeat;
}

#new-landing-page .nh-assistant-card--cannot li::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-top: 8px;
    flex-shrink: 0;
    border-radius: 0;
    background: url("../assets/landing/cross-icon.webp") center / 20px 20px
        no-repeat;
}

#new-landing-page .nh-assistant-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1140px;
    margin: 30px auto 0;
    padding: 20px;
    background: #e9fafe;
    border-radius: 15px;
    box-sizing: border-box;
}

#new-landing-page .nh-assistant-banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-assistant-banner p {
    margin: 0;
    min-width: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-assistant-title {
        font-size: 40px;
        line-height: 50px;
    }

    #new-landing-page .nh-assistant-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-assistant {
        padding-bottom: 56px;
    }

    #new-landing-page .nh-assistant-head {
        padding:6px 0 118px;
    }

    #new-landing-page .nh-assistant-body {
        margin-top: -108px;
    }

    #new-landing-page .nh-assistant-title {
        font-size: 32px;
        line-height: 42px;
    }

    #new-landing-page .nh-assistant-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    #new-landing-page .nh-assistant-card {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-assistant-head {
        padding: 48px 0 140px;
    }

    #new-landing-page .nh-assistant-body {
        margin-top: -92px;
    }

    #new-landing-page .nh-assistant-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-assistant-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    #new-landing-page .nh-assistant-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1200px) {
    #new-landing-page .nh-assistant-title {
        max-width: 720px;
    }
}

/* 14. What changes */
#new-landing-page .nh-change {
    background: #f1feff;
    padding: 80px 0;
}

#new-landing-page .nh-change-title {
    margin: 0 auto 20px;
    max-width: 1000px;
    padding: 0 16px;
    box-sizing: border-box;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

#new-landing-page .nh-change-title span {
    color: #0099b4;
}

#new-landing-page .nh-change-card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 30px 30px;
    border: 2px solid #a4d7e2;
    border-radius: 20px;
    box-sizing: border-box;
}

#new-landing-page .nh-change-card--before {
    padding: 41px 0 0px 30px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #ffe4e4 98.28%);
    border: 2px solid #ffd8d8;
    border-radius: 25px;
    overflow: hidden;
}

#new-landing-page .nh-change-card--after {
    padding: 72px 0 0px 30px;
    background: linear-gradient(154.94deg, #ffffff 51.09%, #f0feff 98.28%);
    border: 2px solid #a4d7e2;
    border-radius: 25px;
    overflow: hidden;
}

#new-landing-page .nh-change-pill {
    position: absolute;
    top: -22px;
    left: 30px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px 15px 20px;
    border-radius: 999px;
}

#new-landing-page .nh-change-pill img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-change-pill--before img {
    width: auto;
    height: auto;
    max-width: none;
}

#new-landing-page .nh-change-pill--after img {
    width: 26.18px;
    height: 26.18px;
    max-width: 26.18px;
    max-height: 26.18px;
}

#new-landing-page .nh-change-pill span {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: #ffffff;
    white-space: nowrap;
}

#new-landing-page .nh-change-pill--before {
    top: 0;
    background: linear-gradient(93.96deg, #f51629 1.83%, #ca202e 100.77%);
    border-radius: 0 0 20px 20px;
}

#new-landing-page .nh-change-pill--before span {
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

#new-landing-page .nh-change-pill--after {
    top: 0;
    background: #0099b4;
    border-radius: 0 0 20px 20px;
}

#new-landing-page .nh-change-pill--after span {
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}

#new-landing-page .nh-change-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: center;
}

#new-landing-page .nh-change-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#new-landing-page .nh-change-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
    white-space: nowrap;
}

#new-landing-page .nh-change-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-top: 8px;
    flex-shrink: 0;
}

#new-landing-page .nh-change-card--before .nh-change-list li::before {
    background: url("../assets/landing/alert.svg") center / 20px 20px no-repeat;
}

#new-landing-page .nh-change-card--after .nh-change-list li::before {
    background: url("../assets/landing/blue-tick2.svg") center / 20px 20px
        no-repeat;
}

#new-landing-page .nh-change-visual {
    min-height: 420px;
    width: 100%;
    align-self: stretch;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

#new-landing-page .nh-change-visual img {
    display: none;
}

#new-landing-page .nh-change-card--before .nh-change-visual img {
    transform: none;
}

#new-landing-page .nh-change-card--before .nh-change-visual {
    background-image: url("../assets/landing/before-dira1.webp");
}

#new-landing-page .nh-change-card--after .nh-change-visual {
    background-image: url("../assets/landing/after-dira1.webp");
}

#new-landing-page .nh-change-switch {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin: -18px 0 -18px;
}

#new-landing-page .nh-change-switch img {
    width: 70px;
    height: 70px;
    max-width: 70px;
    max-height: 70px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-change-summary {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #ceedf4;
    border-radius: 15px;
    overflow: hidden;
}

#new-landing-page .nh-change-summary-card {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 20px 32px;
    background: transparent;
    padding-right: 48px;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    flex: 0 0 auto;
}

#new-landing-page .nh-change-summary-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 0;
    width: 1px;
    background: #ceedf4;
}

#new-landing-page .nh-change-summary-card img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}

#new-landing-page .nh-change-summary-card p {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

#new-landing-page .nh-change-summary-card .nh-nowrap {
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-change {
        padding-bottom: 36px;
    }

    #new-landing-page .nh-change-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 28px;
    }

    #new-landing-page .nh-change-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-right: 30px;
    }

    #new-landing-page .nh-change-visual {
        display: none;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-change {
        padding: 56px 0;
    }

    #new-landing-page .nh-change-title {
        font-size: 32px;
        line-height: 42px;
    }

    #new-landing-page .nh-change-inner {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-right: 20px;padding-bottom: 23px;
    }

    #new-landing-page .nh-change-visual {
        order: -1;
    }

    #new-landing-page .nh-change-card--before .nh-change-visual img {
        transform: none;
    }

    #new-landing-page .nh-change-visual img {
        object-position: center;
    }

    #new-landing-page .nh-change-summary {
        flex-direction: column;
        gap: 20px;
    }

    #new-landing-page .nh-change-summary-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-change-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-change-pill {
        left: 16px;
        padding-right: 14px;
    }

    #new-landing-page .nh-change-pill--after span {
        font-size: 18px;
        line-height: 26px;
    }
}

/* 15. Final CTA */
#new-landing-page .nh-cta {
    background: var(--nh-white);
    padding: 72px 0 0;
}

#new-landing-page .nh-cta-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 70px;
    background: #002d66 url("../assets/landing/bg-6.webp") center / cover
        no-repeat;
    border-radius: 20px;
    box-sizing: border-box;
    text-align: center;
}

#new-landing-page .nh-cta-title {
    margin: 0 auto 10px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: 0;
    color: #ffffff;
}

#new-landing-page .nh-cta-lead {
    max-width: 780px;
    margin: 0 auto 0px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #ffffff;
}

#new-landing-page .nh-cta-actions {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

#new-landing-page .nh-cta-action-link {
    display: block;
    text-decoration: none;
}

#new-landing-page .nh-cta-action-card {
    height: 100%;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 20px;
    background: transparent;
    text-align: left;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

#new-landing-page .nh-cta-action-card--primary {
    border-color: #1cb4d0;
}

#new-landing-page .nh-cta-action-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    transition: background-color 0.25s ease;
}

#new-landing-page .nh-cta-action-card--primary .nh-cta-action-top {
    background: #1cb4d0;
}

#new-landing-page .nh-cta-action-card--secondary .nh-cta-action-top {
    background: #ffffff;
}

/* Hover — both cards: orange border, orange top, white text/arrow */
#new-landing-page .nh-cta-action-link:hover .nh-cta-action-card,
#new-landing-page .nh-cta-action-link:focus-visible .nh-cta-action-card {
    border-color: #f0cb54;
}

#new-landing-page .nh-cta-action-link:hover .nh-cta-action-top,
#new-landing-page .nh-cta-action-link:focus-visible .nh-cta-action-top {
    background: #f0cb54;
}

#new-landing-page .nh-cta-action-link:hover .nh-cta-action-heading h3,
#new-landing-page .nh-cta-action-link:hover .nh-cta-action-arrow,
#new-landing-page .nh-cta-action-link:focus-visible .nh-cta-action-heading h3,
#new-landing-page .nh-cta-action-link:focus-visible .nh-cta-action-arrow {
    color: #ffffff;
}

#new-landing-page .nh-cta-action-link:hover .nh-cta-action-heading img,
#new-landing-page .nh-cta-action-link:focus-visible .nh-cta-action-heading img {
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}

#new-landing-page .nh-cta-action-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

#new-landing-page .nh-cta-action-heading img {
    width: auto;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    transition: filter 0.25s ease;
}

#new-landing-page .nh-cta-action-heading h3 {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
    transition: color 0.25s ease;
}

#new-landing-page .nh-cta-action-card--secondary .nh-cta-action-heading h3,
#new-landing-page .nh-cta-action-card--secondary .nh-cta-action-arrow {
    color: #002d66;
}

#new-landing-page .nh-cta-action-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: color 0.25s ease;
}

#new-landing-page .nh-cta-action-arrow svg {
    width: 11px;
    height: 20px;
    display: block;
}

#new-landing-page .nh-cta-action-card p {
    margin: 0;
    padding: 14px 18px 16px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0;
    color: #ffffff;
}

#new-landing-page .nh-cta-divider {
    margin: 32px auto 20px;
    text-align: center;
}

#new-landing-page .nh-cta-divider img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
}

#new-landing-page .nh-cta-foot-title {
    margin: 0 0 10px;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0;
    color: #ffffff;
}

#new-landing-page .nh-cta-foot-text {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #ffffff;
}

/* 16. Footer */
#new-landing-page ~ .nh-footer,
.nh-footer {
    background: url("../assets/landing/bg-5.webp") center top / cover no-repeat;
    color: #ffffff;
    font-family: "Figtree", system-ui, sans-serif;
}

.nh-footer {
    padding-top: 100px;
}

.nh-footer .nh-footer-top {
    padding: 40px 0 25px;
    text-align: center;
}

.nh-footer .nh-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nh-footer .nh-footer-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

.nh-footer .nh-footer-tagline-main {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    color: #ffffff;
}

.nh-footer .nh-footer-tagline-sub {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    color: #ffffff;
}

.nh-footer .nh-footer-divider-img {
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 8px auto 0;
}

.nh-footer .nh-footer-links {
    padding: 0px 0 48px;
}

.nh-footer .nh-footer-cols {
    flex-wrap: nowrap;
    justify-content: space-between;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.nh-footer .nh-footer-col-item {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
}

.nh-footer .nh-footer-col-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    color: #ffffff !important;
    margin: 0 0 16px;
}

.nh-footer .nh-footer-col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nh-footer .nh-footer-col-list li a {
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.nh-footer .nh-footer-col-list li a:hover {
    color: #f0cb54 !important;
}

.nh-footer .nh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.nh-footer .nh-footer-copy,
.nh-footer .nh-footer-credit {
    margin: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
}

.nh-footer .nh-footer-credit strong {
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.nh-footer .nh-footer-credit-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nh-footer .nh-footer-credit-link:hover strong {
    color: #f0cb54 !important;
}

.nh-footer .nh-footer-bottom {
    background: #00204a;
    padding: 20px 0;
}

@media (max-width: 1199.98px) {
    .nh-footer {
        background: #002d66;
        background-image: none;
        border-top: 4px solid #f0cb54;
        margin-top: 86px;
    }
#new-landing-page .nh-change-list{align-self: start;
  margin-top: 20px;}
    .nh-footer .nh-footer-top {
        padding-top: 28px;
    }

    .nh-footer .nh-footer-brand {
        margin-top:-111px;
    }

    .nh-footer .nh-footer-logo {
        width: 150px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .nh-footer .nh-footer-cols {
        flex-wrap: wrap;
        gap: 32px 40px;
    }
    .nh-footer .nh-footer-col-item {
        flex: 0 0 auto;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .nh-footer .nh-footer-cols {
        gap: 24px 32px;
    }
}

@media (max-width: 575.98px) {
    .nh-footer .nh-footer-top {
        padding: 40px 0 28px;
    }

    .nh-footer .nh-footer-logo {
        width: 72px;
        height: 72px;
    }

    .nh-footer .nh-footer-tagline-main {
        font-size: 18px;
    }

    .nh-footer .nh-footer-tagline-sub {
        font-size: 16px;
    }

    .nh-footer .nh-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .nh-footer .nh-footer-cols .col-lg {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-cta-box {
        padding: 56px 36px;
    }

    #new-landing-page .nh-cta-title {
        font-size: 34px;
        line-height: 1.25;
    }

    #new-landing-page .nh-cta-lead {
        font-size: 20px;
    }

    #new-landing-page .nh-hero {
        padding: 24px 0 56px;
    }

    #new-landing-page .nh-hero-title {
        font-size: clamp(1.85rem, 6vw, 2.6rem);
    }

    #new-landing-page .nh-hero-lead {
        max-width: none;
    }

    #new-landing-page .nh-hero-visual {
        text-align: center;
    }

    #new-landing-page .nh-hero-visual img {
        max-width:420px;
        margin-left: auto;
        margin-right: auto;
    }
    
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-cta {
        padding: 56px 0;
    }

    #new-landing-page .nh-cta-box {
        padding: 40px 20px;
    }

    #new-landing-page .nh-cta-title {
        font-size: 30px;
        line-height: 1.3;
    }

    #new-landing-page .nh-cta-lead {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 0px;
    }


    #new-landing-page .nh-cta-action-heading h3 {
        font-size: 22px;
    }

    #new-landing-page .nh-cta-foot-title {
        font-size: 22px;
    }

    #new-landing-page .nh-cta-foot-text {
        font-size: 16px;
    }

    #new-landing-page .nh-hero-btn {
        width: 100%;
        justify-content: flex-start;
    }

    #new-landing-page .nh-hero-points {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 10px;
    }

    #new-landing-page .nh-hero-points li {
        flex: none;
        padding: 10px 0;
    }

    #new-landing-page .nh-hero-points li:last-child {
        flex: none;
    }

    #new-landing-page .nh-hero-points li:not(:first-child) {
        padding-left: 45px;
    }

    #new-landing-page .nh-hero-points li:not(:last-child)::after {
        position: absolute;
        left: 36px;
        right: 16px;
        bottom: 0;
        top: auto;
        width: auto;
        height: 1px;
        margin: 0;
    }

    #new-landing-page .nh-hero-points li:not(:last-child) {
        position: relative;
    }
}

@media (max-width: 1800px) {
    .nh-header-bar {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    #new-landing-page .container.nh-hero-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    #new-landing-page .nh-hero-points li {
        padding: 0px 7px;
    }
}

@media (max-width: 1730px) {
    #new-landing-page .nh-header-desktop-nav {
        gap: 24px;
    }
    #new-landing-page .nh-header-logo {
        width: 249px;
    }
}
@media (max-width: 1699px) {
    #new-landing-page .nh-header-logo {
        width: 219px;
    }
    #new-landing-page .nh-header-desktop-nav {
        gap: 20px;
    }
    #new-landing-page .nh-hero-btn {
        min-width: 341px;
    }
    #new-landing-page .nh-hero-points {
        padding: 15px;
        width: 700px;
    }
}

/* =============================================================================
   Consolidated responsive refinements for all /new-home screens below 1366px.
   Desktop styles at 1366px and above remain untouched.
   ============================================================================= */
@media (max-width: 1364.98px) {
    #new-landing-page .container,
    #new-landing-page .container.nh-hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #new-landing-page .nh-hero-stage {
        padding-top: 108px;
    }

    #new-landing-page .nh-hero {
        padding: 28px 0 72px;
    }
#new-landing-page .nh-compare-inner{ max-width: 1160px;}
    #new-landing-page .nh-hero-title {
        font-size: 56px;
        line-height: 1.12;
    }
#new-landing-page .nh-compare-arrow img {
  height: 403px;
}
#new-landing-page .nh-assistant{ background-size: 100%;}
    #new-landing-page .nh-hero-actions {
        gap: 12px;
    }

    #new-landing-page .nh-hero-btn {
        min-width: 0;
    }

    #new-landing-page .nh-hero-points {
        width: 700px;
        max-width: 700px;
    }

    #new-landing-page .nh-problem-intro,
    #new-landing-page .nh-integrate-title,
    #new-landing-page .nh-change-list li,
    #new-landing-page .nh-change-summary-card .nh-nowrap {
        white-space: normal;
    }

    #new-landing-page .nh-problem-title-teal,
    #new-landing-page .nh-cap-title,
    #new-landing-page .nh-intel-title,
    #new-landing-page .nh-dira-title,
    #new-landing-page .nh-security-title,
    #new-landing-page .nh-audit-title,
    #new-landing-page .nh-assistant-title,
    #new-landing-page .nh-change-title {
        font-size: 42px;
        line-height: 58px;
    }

    #new-landing-page .nh-problem-label-line {
        flex-basis: 240px;
        width: 240px;
        max-width: 240px;
        object-fit: contain;
    }

    #new-landing-page .nh-compare-inner {
        min-height: 0;
    }

    #new-landing-page .nh-quote-card {
        padding: 24px 30px;
        background-size: 340px auto;
    }

    #new-landing-page .nh-quote-white br {
        display: none;
    }

    #new-landing-page .nh-solution-card {
        padding: 56px 40px 40px;
        border-radius: 36px;
    }

    #new-landing-page .nh-solution-card::before,
    #new-landing-page .nh-solution-card::after {
        width: 180px;
        height: 180px;
    }

    #new-landing-page .nh-solution-title {
        font-size: 46px;
        line-height: 58px;
    }

    #new-landing-page .nh-solution-intro {
        margin-bottom: 64px;
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-solution-step h3 {
        font-size: 30px;
        line-height: 38px;
    }

    #new-landing-page .nh-solution-step p,
    #new-landing-page .nh-solution-note p {
        font-size: 20px;
        line-height: 30px;
    }

    #new-landing-page .nh-cap-card {
        padding: 24px;
    }

    #new-landing-page .nh-cap-nav {
        width: 42px;
        height: 42px;
    }

    #new-landing-page .nh-cap-nav img {
        width: 12px;
        height: 20px;
    }

  
    #new-landing-page .nh-cap-card-head {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    #new-landing-page .nh-cap-card-title {
        font-size: 28px;
        line-height: 38px;
    }

    #new-landing-page .nh-cap-card-icon,
    #new-landing-page .nh-cap-card-icon img {
        width: 84px;
        height: 84px;
    }

    #new-landing-page .nh-cap-lead,
    #new-landing-page .nh-cap-manage,
    #new-landing-page .nh-cap-list li,
    #new-landing-page .nh-cap-foot p {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-cap-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #new-landing-page .nh-intel-example-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-flow: row;
        column-gap: 24px;
    }

    #new-landing-page .nh-intel-visual {
        display: none;
    }

    #new-landing-page .nh-intel .row > .col-lg-7,
    #new-landing-page .nh-intel .row > .col-lg-5 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    #new-landing-page .nh-intel-example-list li {
        white-space: normal;
    }

    #new-landing-page .nh-intel-metrics-line-left,
    #new-landing-page .nh-intel-metrics-line-right,
    #new-landing-page .nh-integrate-principles-line {
        width: 100px;
        max-width: 100px;
    }

    #new-landing-page .nh-dira {
        padding: 240px 0 72px;
    }

    #new-landing-page .nh-dira-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "provides"
            "promise"
            "phones";
        gap: 24px;
    }

    #new-landing-page .nh-dira-intro,
    #new-landing-page .nh-dira-identity-copy p {
        font-size: 20px;
        line-height: 30px;
    }

    #new-landing-page .nh-dira-access-head,
    #new-landing-page .nh-security-card h3 {
        font-size: 24px;
        line-height: 32px;
    }

    #new-landing-page .nh-security-intro,
    #new-landing-page .nh-security-card p,
    #new-landing-page .nh-security-card li,
    #new-landing-page .nh-security-panel p,
    #new-landing-page .nh-audit-card li,
    #new-landing-page .nh-audit-outcome-text,
    #new-landing-page .nh-assistant-card li {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-audit-card h3,
    #new-landing-page .nh-assistant-card--helps h3,
    #new-landing-page .nh-assistant-card--cannot h3,
    #new-landing-page .nh-assistant-banner p,
    #new-landing-page .nh-cta-foot-title {
        font-size: 24px;
        line-height: 32px;
    }

    #new-landing-page .nh-assistant {
        padding: 181px 0 72px;
    }

    #new-landing-page .nh-change-card {
        padding-left: 24px;
        padding-right: 24px;
    }

    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-left: 24px;
    }

    #new-landing-page .nh-change-list li {
        font-size: 20px;
        line-height: 30px;
    }

    #new-landing-page .nh-change-summary {
        gap: 0;
    }

    #new-landing-page .nh-change-summary-card p {
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-cta-box {
        padding: 56px 48px;
    }

    #new-landing-page .nh-cta-title {
        font-size: 42px;
        line-height: 1.25;
    }

    #new-landing-page .nh-cta-lead {
        font-size: 22px;
        line-height: 1.45;
    }

    .nh-footer {
        padding-top: 72px;
    }

    .nh-footer .nh-footer-cols {
        gap: 28px 32px;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-body {
	padding: 1rem 1.25rem;
}
    #new-landing-page .container,
    #new-landing-page .container.nh-hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-hero-stage {
        padding-top: 98px;
    }

    #new-landing-page .nh-hero {
        padding-bottom: 64px;
    }

    #new-landing-page .nh-hero-title {
        font-size: 48px;
    }

    #new-landing-page .nh-hero-lead {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-hero-btn-primary,
    #new-landing-page .nh-hero-btn-outline {
        font-size: 20px;
    }

    #new-landing-page .nh-icon-bar-item h3 {
        font-size: 22px;
    }

    #new-landing-page .nh-icon-bar-item p {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-problem {
        padding: 72px 0 40px;
    }

    #new-landing-page .nh-problem-title {
        font-size: 34px;
        line-height: 42px;
    }

    #new-landing-page .nh-problem-title-teal {
        font-size: 42px;
        line-height: 52px;
    }

    #new-landing-page .nh-problem-intro,
    #new-landing-page .nh-problem-list li {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-problem-card-body {
        padding: 24px;
    }

    #new-landing-page .nh-problem-col:first-child {
        padding-right: 20px;
    }

    #new-landing-page .nh-problem-col:last-child {
        padding-left: 20px;
    }

    #new-landing-page .nh-compare-left,
    #new-landing-page .nh-compare-right {
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-compare-label {
        font-size: 20px;
        line-height: 30px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    #new-landing-page .nh-compare-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        align-items: stretch;
    }

    #new-landing-page .nh-compare-card {
        min-height: 220px;
        padding: 18px 12px;
    }

    #new-landing-page .nh-compare-card::after {
        display: none;
    }

    #new-landing-page .nh-compare-card h4 {
        font-size: 16px;
    }

    #new-landing-page .nh-compare-card p {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    #new-landing-page .nh-quote-card {
        background-image: none;
        background-size: 260px auto;
        background-position: right bottom;
    }

    #new-landing-page .nh-quote-gold {
        font-size: 24px;
        line-height: 36px;
    }

    #new-landing-page .nh-quote-white {
        font-size: 28px;
        line-height: 38px;
        max-width: 640px;
    }

    #new-landing-page .nh-solution-label-text,
    #new-landing-page .nh-integrate-principles-label,
    #new-landing-page .nh-intel-metrics-label span,
    #new-landing-page .nh-dira-label {
        white-space: normal;
        text-align: center;
    }

    #new-landing-page .nh-solution-label-line-left,
    #new-landing-page .nh-solution-label-line-right {
        max-width: 180px;
    }

    #new-landing-page .nh-solution-step {
        padding: 82px 18px 22px;
    }

    #new-landing-page .nh-solution-intro br,
    #new-landing-page .nh-solution-step p br,
    #new-landing-page .nh-solution-note p br {
        display: none;
    }

    #new-landing-page .nh-solution-step-icon:has(img),
    #new-landing-page .nh-solution-step-icon img {
        width: 128px;
        height: 128px;
    }

    #new-landing-page .nh-solution-step-num {
        bottom: -9px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    #new-landing-page .nh-solution-note {
        align-items: flex-start;
    }

    #new-landing-page .nh-solution-note-copy {
        max-width: 720px;
    }

    #new-landing-page .nh-intel-topics li,
    #new-landing-page .nh-intel-metric p,
    #new-landing-page .nh-intel-example-lead,
    #new-landing-page .nh-intel-example-note,
    #new-landing-page .nh-integrate-principle p,
    #new-landing-page .nh-dira-access-list li,
    #new-landing-page .nh-dira-promise-list li,
    #new-landing-page .nh-dira-note {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-intel-metric {
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-intel-main {
        padding-bottom: 20px;
    }

    #new-landing-page .nh-intel-example-tag {
        max-width: 320px;
        font-size: 24px;
        line-height: 30px;
    }

    #new-landing-page .nh-intel-example-quote {
        font-size: 24px;
        line-height: 32px;
        white-space: nowrap;
    }

    #new-landing-page .nh-intel-example-quote br {
        display: none;
    }

    #new-landing-page .nh-intel-example {
        padding-bottom: 24px;
    }

    #new-landing-page .nh-intel-example-body {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding-left: 24px;
        padding-right: 24px;
    }

    #new-landing-page .nh-intel-example-ask-col,
    #new-landing-page .nh-intel-example-list-col {
        flex: 1 1 auto;
        max-width: none;
    }

    #new-landing-page .nh-intel-example-divider {
        display: none;
    }

    #new-landing-page .nh-integrate-main {
        padding-left: 28px;
        padding-right: 28px;
    }

    #new-landing-page .nh-integrate-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    #new-landing-page .nh-integrate-logo {
        max-width: none;
    }

    #new-landing-page .nh-dira {
        background: #002d66;
        background-image: none;
        border-top: 4px solid #f0cb54;
        margin-top: 24px;
        padding-top: 40px;
        padding-bottom: 64px;
    }
    .nh-footer {
	padding-top: 0;
}
#new-landing-page .nh-cta{ padding-top: 40px;}
    #new-landing-page .nh-dira-access-list,
    #new-landing-page .nh-dira-provides-grid {
        gap: 16px;
    }

    #new-landing-page .nh-dira-identity {
        align-items: flex-start;
    }

    #new-landing-page .nh-dira-phones {
        max-width: 320px;
        margin: 0 auto;
    }

 #new-landing-page .nh-security-grid {
	gap: 65px 20px;
	padding-top: 33px;
}

    #new-landing-page .nh-security-card {
        padding: 56px 18px 18px;
    }

    #new-landing-page .nh-security-panel {
        padding: 18px;
    }

    #new-landing-page .nh-audit-grid {
        gap: 20px;
    }

    #new-landing-page .nh-assistant {
     margin-top: 46px;
    padding: 38px 20px 34px;
        background: #002d66;
        background-image: none;
        border-top: 4px solid #f0cb54;
    }

    #new-landing-page .nh-assistant-grid {
        gap: 28px;
    }

    #new-landing-page .nh-change-summary {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 20px;
    }

    #new-landing-page .nh-change-summary-card {
        flex: 0 1 calc(50% - 8px);
        width: calc(50% - 8px);
    }

    #new-landing-page .nh-change-summary-card::after {
        display: none;
    }

    #new-landing-page .nh-cta-box {
        padding: 48px 32px;
    }

    #new-landing-page .nh-cta-actions {
        max-width: 100%;
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .nh-footer .nh-footer-top {
        padding: 32px 0 20px;
    }

    .nh-footer .nh-footer-cols {
        justify-content: flex-start;
    }

    .nh-footer .nh-footer-col-title {
        font-size: 22px;
        line-height: 32px;
    }

    .nh-footer .nh-footer-col-list li a {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 991.98px) {
    #new-landing-page .nh-header-actions {
        min-width: 0;
    }

    #new-landing-page .nh-header-btn {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    #new-landing-page .nh-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #new-landing-page .nh-hero-divider,
    #new-landing-page .nh-hero-lead {
        margin-left: 0;
        margin-right: 0;
    }

    #new-landing-page .nh-hero-actions {
        justify-content: flex-start;
    }

    #new-landing-page .nh-hero-btn {
        min-width: min(100%, 320px);
    }

    #new-landing-page .nh-hero-points {
        margin-left: 0;
        margin-right: 0;
    }

    #new-landing-page .nh-problem-label,
    #new-landing-page .nh-solution-label,
    #new-landing-page .nh-intel-metrics-label,
    #new-landing-page .nh-integrate-principles-label,
    #new-landing-page .nh-dira-label {
        gap: 10px;
    }

    #new-landing-page .nh-problem-label-line,
    #new-landing-page .nh-solution-label-line-left,
    #new-landing-page .nh-solution-label-line-right,
    #new-landing-page .nh-intel-metrics-line-left,
    #new-landing-page .nh-intel-metrics-line-right,
    #new-landing-page .nh-integrate-principles-line {
        width: 72px;
        max-width: 72px;
        flex-basis: 72px;
    }

    #new-landing-page .nh-compare-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #new-landing-page .nh-quote-card {
        padding: 22px 20px;
        background-size: 220px auto;
    }

    #new-landing-page .nh-solution-card {
        padding: 40px 20px 20px;
        border-radius: 24px;
    }

    #new-landing-page .nh-solution-check {
        top: -44px;
    }

    #new-landing-page .nh-solution-check,
    #new-landing-page .nh-solution-check img {
        width: 88px;
        height: 88px;
    }

    #new-landing-page .nh-solution-label {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #new-landing-page .nh-solution-label-text {
        font-size: 18px;
        line-height: 26px;
    }

    #new-landing-page .nh-solution-title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 8px;
    }

    #new-landing-page .nh-solution-intro {
        margin-bottom: 40px;
    }

    #new-landing-page .nh-solution-steps {
        gap: 56px;
        margin-top: 56px;
    }

    #new-landing-page .nh-solution-step h3 {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-solution-step {
        padding: 72px 16px 18px;
        border-radius: 20px;
    }

    #new-landing-page .nh-solution-step p,
    #new-landing-page .nh-solution-note p,
    #new-landing-page .nh-intel-intro,
    #new-landing-page .nh-dira-intro,
    #new-landing-page .nh-dira-identity-copy p,
    #new-landing-page .nh-security-intro {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-cap-card-head {
        align-items: flex-start;
    }

    #new-landing-page .nh-intel-metrics .row > * {
        width: 50%;
    }

    #new-landing-page .nh-intel-example-tag {
        max-width: 100%;
    }

    #new-landing-page .nh-integrate-principles-label {
        flex-wrap: wrap;
    }

    #new-landing-page .nh-dira-access-head {
        font-size: 24px;
        line-height: 30px;
    }

    #new-landing-page .nh-security-panel,
    #new-landing-page .nh-audit-outcome,
    #new-landing-page .nh-assistant-banner {
        align-items: flex-start;
    }

    #new-landing-page .nh-change-card,
    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-left: 20px;
        padding-right: 20px;
    }

    #new-landing-page .nh-change-summary-card {
        flex-basis: 100%;
        width: 100%;
    }

    .nh-footer .nh-footer-cols {
        gap: 24px;
    }

    .nh-footer .nh-footer-col-item {
        flex: 0 0 calc(33.333% - 16px);
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 767.98px) {
    #new-landing-page .container,
    #new-landing-page .container.nh-hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #new-landing-page .nh-header-logo {
        width: 118px;
    }

#new-landing-page .nh-header-actions .nh-header-btn:nth-child(2) {

	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
	font-size: 18px !important;
	height: 40px;
	display: flex;
}

    #new-landing-page .nh-hero-stage {
        padding-top: 88px;
    }

    #new-landing-page .nh-hero-title {
        font-size: 36px;
        line-height: 1.16;
    }

    #new-landing-page .nh-hero-actions {
        width: 100%;
    }

    #new-landing-page .nh-hero-btn {
        width: 100%;
        justify-content: space-between;
        max-width: none;
    }

    #new-landing-page .nh-hero-btn > span:nth-child(2) {
        flex: 1 1 auto;
    }

    #new-landing-page .nh-hero-points {
        width: 100%;
        max-width: none;
    }

    #new-landing-page .nh-problem {
        padding: 56px 0 32px;
    }

    #new-landing-page .nh-problem-label-line,
    #new-landing-page .nh-solution-label-line-left,
    #new-landing-page .nh-solution-label-line-right,
    #new-landing-page .nh-integrate-principles-line {
        display: none;
    }

    #new-landing-page .nh-problem-card-banner {
        font-size: 22px;
        line-height: 28px;
        padding-left: 16px;
        padding-right: 16px;
    }

    #new-landing-page .nh-problem-card-body {
        padding: 20px 16px;
    }

    #new-landing-page .nh-compare-left,
    #new-landing-page .nh-compare-right {
        padding-left: 16px;
        padding-right: 16px;
    }

    #new-landing-page .nh-compare-cards {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-compare-card {
        min-height: 0;
    }

    #new-landing-page .nh-quote-card {
        background-image: none;
    }

    #new-landing-page .nh-solution {
        padding: 64px 0;
        background-size: cover;
    }

    #new-landing-page .nh-solution-card {
        padding: 40px 20px 24px;
        border-width: 3px;
    }

    #new-landing-page .nh-solution-card::before,
    #new-landing-page .nh-solution-card::after {
        width: 120px;
        height: 120px;
    }

    #new-landing-page .nh-solution-check,
    #new-landing-page .nh-solution-check img {
        width: 110px;
        height: 110px;
    }

    #new-landing-page .nh-solution-step-icon:has(img),
    #new-landing-page .nh-solution-step-icon img {
        width: 112px;
        height: 112px;
    }

    #new-landing-page .nh-solution-step-num {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    #new-landing-page .nh-cap-card-head,
    #new-landing-page .nh-cap-foot,
    #new-landing-page .nh-dira-identity,
    #new-landing-page .nh-security-panel,
    #new-landing-page .nh-audit-outcome,
    #new-landing-page .nh-assistant-banner {
        flex-direction: column;
    }

    #new-landing-page .nh-cap-card-title,
    #new-landing-page .nh-security-panel h3,
    #new-landing-page .nh-audit-card h3,
    #new-landing-page .nh-assistant-card--helps h3,
    #new-landing-page .nh-assistant-card--cannot h3,
    #new-landing-page .nh-change-summary-card p,
    #new-landing-page .nh-cta-action-heading h3 {
        font-size: 20px;
        line-height: 28px;
    }

    #new-landing-page .nh-cap-nav {
   width: 30px;
    height: 30px;
    }

    #new-landing-page .nh-cap-nav img {
        width: 6px;
        height: auto;
    }

    #new-landing-page .nh-intel-metrics .row > * {
        width: auto;
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: start;
    }

    #new-landing-page .nh-intel-metrics .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 4px;
    }

    #new-landing-page .nh-intel-metrics .row::-webkit-scrollbar {
        display: none;
    }

    #new-landing-page .nh-intel-metrics .row {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #new-landing-page .nh-intel-metrics-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    #new-landing-page .nh-intel-metric {
        min-height: 0;
    }

    #new-landing-page .nh-integrate-badge,
    #new-landing-page .nh-integrate-badge img {
        width: 110px;
        height: 110px;
    }

    #new-landing-page .nh-integrate-card {
        margin-top: 56px;
    }

    #new-landing-page .nh-integrate-badge {
        top: -56px;
    }

    #new-landing-page .nh-dira-provides-grid {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-dira-phones {
        max-width: 320px;
    }

    #new-landing-page .nh-security-grid {
        padding-top: 24px;
    }

    #new-landing-page .nh-security-card-icon {
        left: 16px;
    }

    #new-landing-page .nh-assistant {
        padding-top: 160px;
    }

    #new-landing-page .nh-assistant-card,
    #new-landing-page .nh-assistant-card--helps,
    #new-landing-page .nh-assistant-card--cannot {
        padding: 24px 16px 20px;
        padding-top: 48px;
    }

    #new-landing-page .nh-assistant-card-icon,
    #new-landing-page img.nh-assistant-card-icon {
        left: 16px;
    }

    #new-landing-page .nh-change-card,
    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-left: 16px;
        padding-right: 16px;
    }

    #new-landing-page .nh-change-list li {
        font-size: 18px;
        line-height: 28px;
    }

    #new-landing-page .nh-change-summary {
        padding: 16px;
    }

    #new-landing-page .nh-cta-box {
        padding: 36px 20px;
    }

    #new-landing-page .nh-cta-action-top,
    #new-landing-page .nh-cta-action-card p {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nh-footer .nh-footer-top,
    .nh-footer .nh-footer-links {
        text-align: left;
    }

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

    .nh-footer .nh-footer-logo {
        width: 80px;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .nh-footer .nh-footer-divider-img {
        margin-left: 0;
        margin-right: 0;
    }

    .nh-footer .nh-footer-col-item {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
  
    #new-landing-page .container,
    #new-landing-page .container.nh-hero-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #new-landing-page .nh-header-btn {
        height: 34px;
        font-size: 16px;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    #new-landing-page .nh-problem-title,
    #new-landing-page .nh-problem-title-teal,
    #new-landing-page .nh-solution-title,
    #new-landing-page .nh-cap-title,
    #new-landing-page .nh-intel-title,
    #new-landing-page .nh-dira-title,
    #new-landing-page .nh-security-title,
    #new-landing-page .nh-audit-title,
    #new-landing-page .nh-assistant-title,
    #new-landing-page .nh-change-title,
    #new-landing-page .nh-cta-title {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-problem-label-text,
    #new-landing-page .nh-solution-label-text,
    #new-landing-page .nh-intel-metrics-label span,
    #new-landing-page .nh-integrate-principles-label,
    #new-landing-page .nh-dira-label,
    #new-landing-page .nh-compare-label {
        font-size: 18px;
        line-height: 26px;
    }

    #new-landing-page .nh-hero-points li,
    #new-landing-page .nh-problem-intro,
    #new-landing-page .nh-problem-list li,
    #new-landing-page .nh-quote-gold,
    #new-landing-page .nh-quote-white,
    #new-landing-page .nh-solution-intro,
    #new-landing-page .nh-solution-step p,
    #new-landing-page .nh-solution-note p,
    #new-landing-page .nh-cap-lead,
    #new-landing-page .nh-cap-manage,
    #new-landing-page .nh-cap-list li,
    #new-landing-page .nh-cap-foot p,
    #new-landing-page .nh-intel-intro,
    #new-landing-page .nh-intel-topics li,
    #new-landing-page .nh-intel-metric p,
    #new-landing-page .nh-intel-example-lead,
    #new-landing-page .nh-intel-example-note,
    #new-landing-page .nh-integrate-title,
    #new-landing-page .nh-integrate-principle p,
    #new-landing-page .nh-dira-intro,
    #new-landing-page .nh-dira-access-list li,
    #new-landing-page .nh-dira-promise-list li,
    #new-landing-page .nh-dira-note,
    #new-landing-page .nh-dira-identity-copy p,
    #new-landing-page .nh-security-intro,
    #new-landing-page .nh-security-card p,
    #new-landing-page .nh-security-card li,
    #new-landing-page .nh-security-panel p,
    #new-landing-page .nh-audit-card li,
    #new-landing-page .nh-audit-outcome-text,
    #new-landing-page .nh-assistant-card li,
    #new-landing-page .nh-assistant-banner p,
    #new-landing-page .nh-change-list li,
    #new-landing-page .nh-cta-lead,
    #new-landing-page .nh-cta-action-card p,
    .nh-footer .nh-footer-col-list li a,
    .nh-footer .nh-footer-copy,
    .nh-footer .nh-footer-credit {
     font-size: 18px;
    line-height: 27px;
    }

    #new-landing-page .nh-compare-card img {
        width: 52px;
        height: 52px;
    }

    #new-landing-page .nh-intel-example-quote {
        font-size: 22px;
        line-height: 30px;
    }

    #new-landing-page .nh-integrate-logos {
        grid-template-columns: 1fr;
    }

    #new-landing-page .nh-integrate-logo {
        max-width: 100%;
        height: 84px;
    }

    #new-landing-page .nh-assistant {
        padding-top: 140px;
    }

    .nh-footer .nh-footer-tagline-main {
        font-size: 20px;
        line-height: 28px;
    }

    .nh-footer .nh-footer-tagline-sub,
    .nh-footer .nh-footer-col-title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after {
        padding-top: 64px;
        padding-right: 24px;
    }

    #new-landing-page .nh-change-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
        gap: 20px;
        align-items: center;
    }

    #new-landing-page .nh-change-visual {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #new-landing-page .nh-change-visual img {
        max-width: 100%;
        object-position: right center;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    #new-landing-page .nh-change-summary {
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    #new-landing-page .nh-change-summary-card {
        flex: 1 1 0;
        width: auto;
    }

    #new-landing-page .nh-change-summary-card:not(:last-child)::after {
        display: block;
    }

    #new-landing-page .nh-change-summary-card p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #new-landing-page .nh-cta-actions {
        --bs-gutter-x: 16px;
        align-items: stretch;
    }

    #new-landing-page .nh-cta-actions > div {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    #new-landing-page .nh-cta-action-link,
    #new-landing-page .nh-cta-action-card {
        height: 100%;
    }

    #new-landing-page .nh-cta-action-card {
        display: flex;
        flex-direction: column;
    }

    #new-landing-page .nh-cta-action-heading h3 {
        font-size: 20px;
        line-height: 24px;
    }
    #new-landing-page .nh-cta-title {
	font-size: 34px;
	line-height: 1.25;
}
#new-landing-page .nh-cta-action-heading img{ max-width: 30px;}
    #new-landing-page .nh-cta-action-heading h3 br {
        display: none;
    }

    #new-landing-page .nh-cta-action-card p {
        flex: 1 1 auto;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 479.98px) {
    #new-landing-page .nh-hero-title {
        font-size: 32px;
    }

    #new-landing-page .nh-hero-btn-primary,
    #new-landing-page .nh-hero-btn-outline,
    #new-landing-page .nh-cta-action-heading h3 {
        font-size: 18px;
        line-height: 24px;
    }

    #new-landing-page .nh-compare-left,
    #new-landing-page .nh-compare-right,
    #new-landing-page .nh-solution-card,
    #new-landing-page .nh-intel-main,
    #new-landing-page .nh-intel-example-body,
    #new-landing-page .nh-integrate-main,
    #new-landing-page .nh-integrate-principles,
    #new-landing-page .nh-security-card,
    #new-landing-page .nh-audit-card,
    #new-landing-page .nh-assistant-card,
    #new-landing-page .nh-assistant-card--helps,
    #new-landing-page .nh-assistant-card--cannot,
    #new-landing-page .nh-change-card,
    #new-landing-page .nh-change-card--before,
    #new-landing-page .nh-change-card--after,
    #new-landing-page .nh-cta-box {
        padding-left: 14px;
        padding-right: 14px;
    }

    #new-landing-page .nh-solution-card {
        padding-top: 36px;
    }

    #new-landing-page .nh-solution-check,
    #new-landing-page .nh-solution-check img {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 374.98px) {
    #new-landing-page .nh-header .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    #new-landing-page .nh-header-logo {
        width: 104px;
    }

    #new-landing-page .nh-hero-title,
    #new-landing-page .nh-problem-title,
    #new-landing-page .nh-problem-title-teal,
    #new-landing-page .nh-solution-title,
    #new-landing-page .nh-cap-title,
    #new-landing-page .nh-intel-title,
    #new-landing-page .nh-dira-title,
    #new-landing-page .nh-security-title,
    #new-landing-page .nh-audit-title,
    #new-landing-page .nh-assistant-title,
    #new-landing-page .nh-change-title,
    #new-landing-page .nh-cta-title {
        font-size: 26px;
        line-height: 34px;
    }

    #new-landing-page .nh-hero-points,
    #new-landing-page .nh-change-summary {
        padding: 12px;
    }

    #new-landing-page .nh-change-pill {
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        justify-content: center;
    }

    .nh-footer .nh-footer-bottom-inner {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 1199.98px) {
    #new-landing-page .nh-problem-title-teal, #new-landing-page .nh-cap-title, #new-landing-page .nh-intel-title, #new-landing-page .nh-dira-title, #new-landing-page .nh-security-title, #new-landing-page .nh-audit-title, #new-landing-page .nh-assistant-title, #new-landing-page .nh-change-title {
	font-size: 36px;
	line-height: 51px;
}
    #new-landing-page .nh-compare {
        padding-left: 0;
        padding-right: 0;
    }

    #new-landing-page .nh-compare-inner {
        width: calc(100% - 40px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    #new-landing-page .nh-compare-left {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding-top: 28px;
    }

    #new-landing-page .nh-compare-img-wrap {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #new-landing-page .nh-compare-img-wrap img {
        max-width: 260px;
    }

    #new-landing-page .nh-compare-right {
        padding-top: 20px;
        padding-bottom: 12px;
    }

    #new-landing-page .nh-compare-cards {
        padding-bottom: 12px;
    }
    #new-landing-page .nh-security-intro{ max-width: 620px;}
}
@media (max-width:992px) {
#new-landing-page .nh-problem-col:last-child {
	padding-left: 0;
}
#new-landing-page .nh-solution-step-icon:has(img), #new-landing-page .nh-solution-step-icon img {
	width: 93px;
	height: 93px;
}
}
#new-landing-page .nh-problem {
	padding: 40px 0 48px;
	background-size: cover;
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-compare-inner {
        width: calc(100% - 32px);
    }

    #new-landing-page .nh-compare-left {
        padding-top: 22px;
        gap: 14px;
    }

    #new-landing-page .nh-compare-right {
        padding-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    #new-landing-page .nh-compare-inner {
        width: calc(100% - 28px);
    }
}

/* Final responsive overrides kept last intentionally */
@media (max-width: 991.98px) {
    #new-landing-page .nh-solution {
        padding: 48px 0 56px;
    }

    #new-landing-page .nh-solution-card {
        padding: 32px 18px 16px;
        border-radius: 20px;
    }

    #new-landing-page .nh-solution-check {
        top: -40px;
    }

    #new-landing-page .nh-solution-check,
    #new-landing-page .nh-solution-check img {
        width: 82px;
        height: 82px;
    }

    #new-landing-page .nh-solution-label {
        margin: 4px 0 8px;
    }

    #new-landing-page .nh-solution-title {
        margin-bottom: 6px;
    }

    #new-landing-page .nh-solution-intro {
        margin-bottom: 86px;
    }
    #new-landing-page .nh-solution-card::before{ border-radius: 15px;}
    #new-landing-page .nh-solution-card::after{ border-radius: 15px;}

    #new-landing-page .nh-solution-steps {
        gap: 40px;
        margin: 40px 0 24px;
    }

    #new-landing-page .nh-solution-arrow {
        margin: -8px 0;
    }

    #new-landing-page .nh-solution-step {
        padding: 60px 16px 16px;
        border-radius: 18px;
    }

    #new-landing-page .nh-solution-step-icon:has(img),
    #new-landing-page .nh-solution-step-icon img {
        width: 96px;
        height: 96px;
    }

    #new-landing-page .nh-solution-step-num {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    #new-landing-page .nh-solution-step h3 {
        margin-bottom: 10px;
    }

    #new-landing-page .nh-solution-step p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
    #new-landing-page .nh-change-list {

	margin-top: 35px;
}
#new-landing-page .nh-hero {
	padding-bottom: 44px;
}
}

@media (max-width: 767.98px) {
    #new-landing-page .nh-hero-stage {
        padding-top: 61px;
    }

    #new-landing-page .nh-hero {
        padding: 20px 0 20px;
    }

    #new-landing-page .nh-hero-title {
        margin-bottom: 12px;
    }

    #new-landing-page .nh-hero-divider {
        margin-bottom: 16px;
    }

    #new-landing-page .nh-hero-lead {
        margin-bottom: 12px;
        line-height: 26px;
    }

    #new-landing-page .nh-hero-actions {
        margin-top: 20px;
    }

    #new-landing-page .nh-icon-bar {
        padding: 20px 16px 20px 40px;
    }

    #new-landing-page .nh-icon-bar-head {
        gap: 12px;
    }

    #new-landing-page .nh-icon-bar-icon,
    #new-landing-page .nh-icon-bar-icon img {
        width: 64px;
        height: 64px;
    }

    #new-landing-page .nh-icon-bar-item {
        padding-bottom: 8px;
    }

    #new-landing-page .nh-problem {
        padding: 32px 0 28px;
    }

    #new-landing-page .nh-problem-label {
        margin-bottom: 14px;
    }

    #new-landing-page .nh-problem-label-text {
        font-size: 20px;
        line-height: 28px;
    }

    #new-landing-page .nh-problem-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 8px;
    }

    #new-landing-page .nh-problem-title-teal {
        font-size: 28px;
        line-height: 36px;
    }

    #new-landing-page .nh-problem-intro {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 26px;
    }

    #new-landing-page .nh-compare-left {
        padding-top: 18px;
    }

    #new-landing-page .nh-compare-inner {
        width: calc(100% - 28px);
    }

    #new-landing-page .nh-compare-left,
    #new-landing-page .nh-compare-right {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #new-landing-page .nh-compare-arrow {
        display: flex;
        margin: -6px auto;
    }

    #new-landing-page .nh-compare-arrow img {
        width: 58px;
        height: 58px;
    }

    #new-landing-page .nh-compare-cards {
        width: 100%;
    }

    #new-landing-page .nh-quote {
        padding: 12px 0 16px;
    }

    #new-landing-page .nh-solution {
        padding:40px 0 29px;
    }

    #new-landing-page .nh-solution-intro {
        line-height: 26px;
    }

    #new-landing-page .nh-solution-note {
        align-items: center;
    }

    #new-landing-page .nh-solution-note-copy,
    #new-landing-page .nh-solution-note p {
        text-align: center;
    }

    #new-landing-page .nh-capabilities {
        padding-bottom: 16px;
    }

    #new-landing-page .nh-cap-title {
        margin-bottom: 16px;
    }

    #new-landing-page .nh-intel {
        padding: 24px 0 40px;
    }

    #new-landing-page .nh-intel-main {
        padding: 16px 16px 0;
    }

    #new-landing-page .nh-intel-example {
        padding-bottom: 16px;
    }

    #new-landing-page .nh-intel-example-body {
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
    }

    #new-landing-page .nh-integrate {
        padding-bottom: 10px;
    }

    #new-landing-page .nh-integrate-logos {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        justify-content: flex-start;
    }

    #new-landing-page .nh-integrate-logo {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        scroll-snap-align: start;
    }

    #new-landing-page .nh-integrate-logos::-webkit-scrollbar {
        display: none;
    }

    #new-landing-page .nh-integrate-logos {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #new-landing-page .nh-integrate-logos-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    #new-landing-page .nh-integrate-logos-nav .nh-intel-metrics-btn {
        width: 32px;
        height: 32px;
        position: relative;
    }

    #new-landing-page .nh-integrate-logos-nav .nh-intel-metrics-btn img {
        display: none;
    }

    #new-landing-page .nh-integrate-logos-nav .nh-intel-metrics-btn::before {
        content: "";
        width: 8px;
        height: 8px;
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-60%, -50%) rotate(45deg);
    }

    #new-landing-page .nh-integrate-logos-nav .nh-integrate-logos-btn-prev::before {
        transform: translate(-40%, -50%) rotate(-135deg);
    }

    #new-landing-page .nh-integrate-principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #new-landing-page .nh-integrate-principle {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    #new-landing-page .nh-integrate-principle p {
        text-align: left;
    }

    #new-landing-page .nh-integrate-principle-icon,
    #new-landing-page img.nh-integrate-principle-icon {
        width: 36px;
        height: 36px;
        max-width: 36px;
        object-fit: contain;
        object-position: center;
        transform: none;
        margin-top: 2px;
    }

    #new-landing-page .nh-dira {
        padding: 40px 0 28px;
    }

    #new-landing-page .nh-dira-layout {
        gap: 20px;
    }

    #new-landing-page .nh-dira-copy,
    #new-landing-page .nh-dira-provides,
    #new-landing-page .nh-dira-promise,
    #new-landing-page .nh-dira-access,
    #new-landing-page .nh-dira-access-head,
    #new-landing-page .nh-dira-access-list {
        min-width: 0;
    }

    #new-landing-page .nh-dira-title {
        font-size: 26px;
        line-height: 34px;
        overflow-wrap: anywhere;
    }

    #new-landing-page .nh-dira-intro {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 16px;
        overflow-wrap: anywhere;
    }

    #new-landing-page .nh-dira-access-head {
        font-size: 20px;
        line-height: 28px;
    }

    #new-landing-page .nh-dira-access-list li,
    #new-landing-page .nh-dira-promise-list li,
    #new-landing-page .nh-dira-note {
        font-size: 18px;
        line-height: 26px;
    }

    #new-landing-page .nh-dira-identity-divider,
    #new-landing-page .nh-dira-label-line,
    #new-landing-page .nh-dira-cta-line {
        display: none;
    }

    #new-landing-page .nh-dira-provides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #new-landing-page .nh-security {
        padding: 27px 0;
    }

    #new-landing-page .nh-security-title,
    #new-landing-page .nh-audit-title,
    #new-landing-page .nh-assistant-title,
    #new-landing-page .nh-change-title,
    #new-landing-page .nh-cta-title {
        margin-bottom: 12px;
    }

    #new-landing-page .nh-audit {
        padding: 0px 0 0px;
    }

    #new-landing-page .nh-audit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    #new-landing-page .nh-audit-card {
        padding: 16px 18px;
    }

    #new-landing-page .nh-assistant {
        padding: 0px 0 38px;
        margin-top: 27px;
    }

    #new-landing-page .nh-assistant-head {
        padding: 30px 0 82px;
    }

    #new-landing-page .nh-assistant-card--helps {
        margin-bottom: 40px;
    }

    #new-landing-page .nh-assistant-grid {
        gap: 20px;
    }

    #new-landing-page .nh-change {
        padding: 40px 0 24px;
    }

    #new-landing-page .nh-change-summary {
        margin-top: 12px;
        padding: 6px 0;
    }

    #new-landing-page .nh-change-summary-card {
        gap: 12px;
        padding: 14px 18px;
    }

    #new-landing-page .nh-change-summary-card img {
        width: 52px;
        height: 52px;
    }

    #new-landing-page .nh-change-summary-card p {
        font-size: 18px;
        line-height: 26px;
    }

    #new-landing-page .nh-cta {
        padding: 22px 0 15px;
    }

    #new-landing-page .nh-cta-divider {
        margin: 24px auto 16px;
    }

    .nh-footer {
        margin-top: 16px;
    }

    .nh-footer .nh-footer-top {
        padding-bottom: 20px;
    }

    .nh-footer .nh-footer-links {
        padding-bottom: 32px;
    }
      #new-landing-page .nh-problem-title-teal, #new-landing-page .nh-cap-title, #new-landing-page .nh-intel-title, #new-landing-page .nh-dira-title, #new-landing-page .nh-security-title, #new-landing-page .nh-audit-title, #new-landing-page .nh-assistant-title, #new-landing-page .nh-change-title {
	font-size: 26px;
	line-height: 33px;
}
#new-landing-page .nh-solution-step-icon{top: -52.835px;}
#new-landing-page .nh-solution-arrow {
	margin: -15px 0 36px;
}
#new-landing-page .nh-intel-example-list {
	grid-template-columns: 1fr;
	column-gap: 0;
	row-gap: 12px;
}
.nh-footer .nh-footer-brand {
	margin-top: -9px;
	text-align: center;
	align-items: center;
}
#new-landing-page .nh-cta-title {
    font-size: 24px;
    line-height: 32px;
  }
  #new-landing-page .nh-change-summary{ gap: 0;}
  .nh-footer .nh-footer-col-list{ gap: 5px;}
  footer .nh-footer-col-title {
    font-size: 21px !important;
    line-height: 22px;  margin-bottom: 11px !important;
  }
  .nh-footer .nh-footer-col-list li a{ font-size: 16px !important;}
  .nh-footer .nh-footer-links {
	padding-bottom: 18px;
}
.nh-footer .nh-footer-bottom{ padding-bottom: 70px;}
.nh-header-bar {
	padding-left: 10px !important;
	padding-right: 10px !important;
}
#new-landing-page .nh-hero-points li {
	padding: 8px 7px;
}
#new-landing-page .nh-hero-point-icon{ margin-right: 7px;}
#new-landing-page .nh-intel-example-quote{ white-space: wrap;}
#new-landing-page .nh-dira-identity-icon {
	width: 55px;
	height: auto;
}
#new-landing-page .nh-dira-identity {
	align-items: center;
	text-align: center;
}
#new-landing-page .nh-dira-identity-copy p{ text-align: center;}
#new-landing-page .nh-change-switch img {
  width: 50px;
  height: auto;
}
#new-landing-page .nh-change-pill--before span {
	
	font-size: 20px;
	line-height: 23px;
}
#new-landing-page .nh-change-card.nh-change-card--after .nh-change-list {
	margin-top: 0;
}
}

/* =============================================================================
   Book a Governance Readiness Assessment
   Scoped to body.nh-assess-page so /new-home styles stay unchanged.
   ============================================================================= */
body.nh-assess-page #new-landing-page .nh-header-desktop-nav,
body.nh-assess-page #new-landing-page .nh-menu-toggle,
body.nh-assess-page #new-landing-page .nh-header-actions,
body.nh-assess-page #new-landing-page .nh-offcanvas {
    display: none !important;
}

body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
    min-height: 700px;padding-bottom: 170px;
    background-position: center bottom ;
    background-size: cover;
}

body.nh-assess-page #new-landing-page .nh-hero {
    text-align: center;
    padding-bottom: 32px;padding-top: 0;
}

body.nh-assess-page #new-landing-page .nh-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 64px;
    line-height: 74px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    color: #031c42;
    margin-bottom: 12px;
}

body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title .nh-hero-line-navy {
    color: #031c42;
}

body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 36px;
    line-height: normal;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    color: #0099b4;
    margin-bottom:7px;
}

body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title .nh-hero-line-teal {
    color: #0099b4;
}

body.nh-assess-page #new-landing-page .nh-hero-lead {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

body.nh-assess-page #new-landing-page .nh-assess-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

body.nh-assess-page #new-landing-page .nh-assess-time img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

body.nh-assess-page #new-landing-page .nh-icon-bar {
    margin-top: -210px;
    padding: 72px 0 0px;
    background-image: url("../assets/landing/bg-1.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto; 
    border-top: 0;
    position: relative;
    z-index: 2;
}

body.nh-assess-page #new-landing-page .nh-icon-bar .container {
    padding-left: 15px;
    padding-right: 15px;
}

body.nh-assess-page #new-landing-page .nh-assess-card {
    position: relative;
    z-index: 2;
    max-width: 877px;
    margin: 0 auto;
    padding: 60px;
    background: #ffffff;
    border: 4px solid #002d66;
    border-radius: 50px;
    overflow: hidden;
}

body.nh-assess-page #new-landing-page .nh-assess-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    height: 230px;
    background: linear-gradient(131.19deg, #0099b4 -160.4%, #ffffff 51.7%);
    border-radius: 42px 0 0 0;
    pointer-events: none;
    z-index: 0;
}

body.nh-assess-page #new-landing-page .nh-assess-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
    height: 230px;
    background: linear-gradient(131.19deg, #0099b4 -160.4%, #ffffff 51.7%);
    border-radius: 42px 0 0 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    pointer-events: none;
    z-index: 0;
}

body.nh-assess-page #new-landing-page .nh-assess-card > * {
    position: relative;
    z-index: 1;
}

body.nh-assess-page #new-landing-page .nh-assess-field {
    margin-bottom: 22px;
}

body.nh-assess-page #new-landing-page .nh-assess-field label,
body.nh-assess-page #new-landing-page .nh-assess-improve legend {
    display: block;
    margin: 0 0 6px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0;
    text-align: left;
    color: #0c2340;
}

body.nh-assess-page #new-landing-page .nh-assess-improve {
    border: 0;
    padding: 0;
    margin: 0 0 40px;
}

body.nh-assess-page #new-landing-page .nh-assess-improve legend {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 8px;
}

body.nh-assess-page #new-landing-page .nh-assess-options.row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 0;
    margin-top: 0;
    row-gap: 12px;
}

body.nh-assess-page #new-landing-page .nh-assess-options > [class*="col-"] {
    padding-top: 0;
    padding-bottom: 0;
}

body.nh-assess-page #new-landing-page .nh-assess-req {
    color: #d92d20;
}

body.nh-assess-page #new-landing-page .nh-assess-input,
body.nh-assess-page #new-landing-page .nh-assess-select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 748px;
    height: 52px;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;

    font-family: "Figtree", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
}

body.nh-assess-page #new-landing-page .nh-assess-select {
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230C2340' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 44px;
}

body.nh-assess-page #new-landing-page .nh-assess-input::placeholder {
    color: #8896a6;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    opacity: 1;
}

body.nh-assess-page #new-landing-page .nh-assess-select:invalid,
body.nh-assess-page #new-landing-page .nh-assess-select option[disabled] {
    color: #8896a6;
}

body.nh-assess-page #new-landing-page .nh-assess-select option {
    color: #8896a6;
}

body.nh-assess-page #new-landing-page .nh-assess-input:focus,
body.nh-assess-page #new-landing-page .nh-assess-select:focus {
    outline: none;
    border-color: var(--nh-secondary);
    box-shadow: 0 0 0 3px rgba(0, 153, 180, 0.16);
}

body.nh-assess-page #new-landing-page .nh-assess-input.is-invalid,
body.nh-assess-page #new-landing-page .nh-assess-select.is-invalid {
    border-color: #d92d20;
}

body.nh-assess-page #new-landing-page p.nh-assess-hint {
    margin:4px 0 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-align: left;
    color: #4a5d73;
}

body.nh-assess-page #new-landing-page .nh-assess-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 140px;
    height: 100%;
    padding: 28px 12px 16px;
 background: #FFFFFF;
border: 1px solid #E2E8F0;
border-radius: 12px;
    cursor: pointer;
    text-align: center;
}

body.nh-assess-page #new-landing-page .nh-assess-option input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

body.nh-assess-page #new-landing-page .nh-assess-option-box {
    position: absolute;
    top: 10px;
    right: 10px;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    background-color: transparent;
    z-index: 1;
}

body.nh-assess-page #new-landing-page .nh-assess-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
    flex-shrink: 0;
}

body.nh-assess-page #new-landing-page .nh-assess-option-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

body.nh-assess-page #new-landing-page .nh-assess-option-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #0C2340;
}

body.nh-assess-page #new-landing-page .nh-assess-option:hover,
body.nh-assess-page #new-landing-page .nh-assess-option:focus-within {
    border-color: var(--nh-secondary);
}

body.nh-assess-page #new-landing-page .nh-assess-option.is-checked,
body.nh-assess-page #new-landing-page .nh-assess-option:has(input:checked) {
    border-color: var(--nh-secondary);
    background: var(--nh-secondary-soft);
}

body.nh-assess-page #new-landing-page .nh-assess-option.is-checked .nh-assess-option-box,
body.nh-assess-page #new-landing-page .nh-assess-option:has(input:checked) .nh-assess-option-box {
    border-color: var(--nh-secondary);
    background: var(--nh-secondary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
}

body.nh-assess-page #new-landing-page .nh-assess-option input:focus-visible + .nh-assess-option-box {
    box-shadow: 0 0 0 3px rgba(0, 153, 180, 0.2);
}

body.nh-assess-page #new-landing-page .nh-assess-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
}

body.nh-assess-page #new-landing-page .nh-assess-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    color: #4a5d73;
    text-align: left;
}

body.nh-assess-page #new-landing-page .nh-assess-trust img,
body.nh-assess-page #new-landing-page .nh-assess-trust svg {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

body.nh-assess-page #new-landing-page .nh-assess-success,
body.nh-assess-page #new-landing-page .nh-assess-error {
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.45;
}

body.nh-assess-page #new-landing-page .nh-assess-success {
    background: var(--nh-secondary-soft);
    color: var(--nh-primary);
}

body.nh-assess-page #new-landing-page .nh-assess-error {
    background: #fdecec;
    color: #b42318;
}

body.nh-assess-page #new-landing-page .nh-assess-field-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

body.nh-assess-page #new-landing-page .nh-assess-submit {
    position: relative;
}

body.nh-assess-page #new-landing-page .nh-assess-submit:disabled {
    opacity: 0.85;
    cursor: wait;
}

body.nh-assess-page #new-landing-page .nh-assess-submit-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.nh-assess-page #new-landing-page .nh-assess-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: nh-assess-spin 0.7s linear infinite;
}

body.nh-assess-page #new-landing-page .nh-assess-spinner-lg {
    width: 36px;
    height: 36px;
    border-width: 3px;
    border-color: rgba(11, 59, 110, 0.2);
    border-top-color: #0b3b6e;
}

body.nh-assess-page #new-landing-page .nh-assess-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
}

body.nh-assess-page #new-landing-page .nh-assess-page-loader[hidden] {
    display: none !important;
}

body.nh-assess-page #new-landing-page .nh-assess-page-loader-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 260px;
    text-align: center;
}

body.nh-assess-page #new-landing-page .nh-assess-page-loader-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

body.nh-assess-page #new-landing-page .nh-assess-form.is-submitting {
    pointer-events: none;
    opacity: 0.92;
}

@keyframes nh-assess-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1699px) {
    body.nh-assess-page #new-landing-page .nh-hero {
        padding-bottom: 28px;
    }
}

@media (max-width: 1365.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: 660px;
    }



    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 1279.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: 620px;
    }



    body.nh-assess-page #new-landing-page .nh-assess-card {
        padding: 36px 36px 32px;
    }
}

@media (max-width: 1199.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: inherit;
    }
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage{ padding-bottom: 30px;}

    body.nh-assess-page #new-landing-page .nh-hero {
        padding-bottom: 20px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 42px;
        line-height: 1.22;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 26px;
    }

    body.nh-assess-page #new-landing-page .nh-icon-bar {
        margin-top: 0px;
        padding: 48px 16px 72px;
        background-color: #ffffff;
        background-image: linear-gradient(#002d66, #002d66);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% 30%;
        border-top: 0;
    }

    body.nh-assess-page #new-landing-page .nh-icon-bar .container {
        padding-left: 0;
        padding-right: 0;
    }

    body.nh-assess-page #new-landing-page .nh-assess-card {
        padding: 32px 28px 28px;border-radius: 30px;
    }
    body.nh-assess-page #new-landing-page .nh-assess-card::before,
    body.nh-assess-page #new-landing-page .nh-assess-card::after{border-radius: 30px;}
}

@media (max-width: 1023.98px) {
    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 34px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 24px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-option {
        min-height: 140px;
    }
}

@media (max-width: 991.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: 480px;
    }

    body.nh-assess-page #new-landing-page .nh-hero {
        padding: 16px 0 16px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    body.nh-assess-page #new-landing-page .nh-hero-copy {
        align-items: center;
    }

    body.nh-assess-page #new-landing-page .nh-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    body.nh-assess-page #new-landing-page .nh-assess-submit {
        min-height: 52px;
    }

    body.nh-assess-page #new-landing-page .nh-icon-bar {
  
        padding: 40px 16px 64px;
        background-color: #ffffff;
        background-image: linear-gradient(#002d66, #002d66);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% 30%;
        border-top: 0;
    }
}

@media (max-width: 767.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: inherit;
    }

    body.nh-assess-page #new-landing-page .nh-header-bar {
        justify-content: center;
    }

    body.nh-assess-page #new-landing-page .nh-header .navbar-brand {
        margin-left: 0;
        margin-right: 0;
    }

    body.nh-assess-page #new-landing-page .nh-hero {
        padding: 12px 0 12px;
    }

    body.nh-assess-page #new-landing-page .nh-hero-copy {
        gap: 12px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title,
    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title,
    body.nh-assess-page #new-landing-page .nh-hero-lead,
    body.nh-assess-page #new-landing-page .nh-assess-time {
        margin-top: 0;
        margin-bottom: 0;
    }

    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 22px;
    }

    body.nh-assess-page #new-landing-page .nh-hero-lead {
        font-size: 16px;
        line-height: 24px;
    }

    body.nh-assess-page #new-landing-page .nh-icon-bar {
        margin-top: 0;
        padding: 32px 12px 10px;
        background-color: #ffffff;
        background-image: linear-gradient(#002d66, #002d66);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% 30%;
        border-top: 0;
    }

    body.nh-assess-page #new-landing-page .nh-assess-card {
        padding: 24px 16px 20px;
        border-radius: 20px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-card::before,
    body.nh-assess-page #new-landing-page .nh-assess-card::after {
        width: 120px;
        height: 120px;
        border-radius: 16px 0 0 0;
    }

    body.nh-assess-page #new-landing-page .nh-assess-field {
        margin-bottom: 16px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-improve {
        margin-bottom: 16px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-option {
        min-height: 124px;
        padding: 22px 8px 12px;
    }
    body.nh-assess-page #new-landing-page .nh-assess-time{ font-size: 16px;}
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
	padding-bottom: 8px;
}

    body.nh-assess-page #new-landing-page .nh-assess-submit {
        min-height: 45px;
        font-size: 20px;
        padding: 13px;
    }
}

@media (max-width: 575.98px) {
    body.nh-assess-page #new-landing-page .nh-hero-stage-innerpage {
        min-height: inherit;
    }

    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 26px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 20px;
    }
}

@media (max-width: 479.98px) {
    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 24px;
        line-height: 1.28;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 18px;
    }

    body.nh-assess-page #new-landing-page .nh-icon-bar {
        margin-top: 0px;
        padding: 24px 10px 10px;
        background-color: #ffffff;
        background-image: linear-gradient(#002d66, #002d66);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% 30%;
        border-top: 0;
    }

    body.nh-assess-page #new-landing-page .nh-assess-card {
        padding: 20px 20px 16px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-trust {
        align-items: flex-start;
    }
}

@media (max-width: 374.98px) {
    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 22px;
    }

    body.nh-assess-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 18px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-option {
        min-height: 124px;
    }
    body.nh-assess-page #new-landing-page .nh-assess-option-label{ font-size: 15px;}
}

@media (max-width: 359.98px) {
    body.nh-assess-page #new-landing-page .nh-hero h1.nh-hero-title {
        font-size: 20px;
    }

    body.nh-assess-page #new-landing-page .nh-assess-card {
        padding: 14px 16px 14px;
    }
}

/* =============================================================================
   Assessment success page
   Scoped to body.nh-assess-success-page so /new-home and the form page stay unchanged.
   ============================================================================= */
body.nh-assess-success-page #new-landing-page .nh-hero {
    padding-bottom: 0;
}

body.nh-assess-success-page #new-landing-page .nh-hero-copy {
    gap: 16px;
}

body.nh-assess-success-page #new-landing-page .nh-assess-success-visual {
    width: auto;
    max-width: 272px;
    margin: 0 auto;
}

body.nh-assess-success-page #new-landing-page .nh-assess-success-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

body.nh-assess-success-page #new-landing-page .nh-assess-success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 0;
    padding:10px 21px;
    background: #ffffff;
    border: 1.39394px solid #d1fae5;
    border-radius: 27.8788px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 19.52px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    color: #002d66;
}

body.nh-assess-success-page #new-landing-page .nh-assess-success-badge-check {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    flex-shrink: 0;
}

body.nh-assess-success-page #new-landing-page .nh-hero h1.nh-hero-title {
    margin-bottom: 0;
}

body.nh-assess-success-page #new-landing-page .nh-hero h2.nh-hero-title {
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

body.nh-assess-success-page #new-landing-page .nh-hero h2.nh-hero-title .nh-hero-line-navy {
    color: #000000;
}

body.nh-assess-success-page #new-landing-page .nh-hero-lead {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

body.nh-assess-success-page #new-landing-page .nh-assess-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1040px;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-heading {
    margin: 0 0 28px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    color: #002d66;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-steps {
    width: 100%;
    --bs-gutter-x: 23px;
    --bs-gutter-y: 23px;
    margin-bottom: 32px;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-steps > [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-step {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 285px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 18px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-num {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    margin: 0;
    border-radius: 13px;
    background: #0099b4;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    color: #ffffff;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
    background: transparent;
    border-radius: 0;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-icon img {
    display: block;
    width: 72px;
    height: 72px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-title {
    margin: 0 0 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
    color: #002d66;
}

body.nh-assess-success-page #new-landing-page .nh-assess-next-copy {
    margin: 0;
    max-width: none;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
    color: #4b5563;
}

body.nh-assess-success-page #new-landing-page .nh-assess-return {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 388px;
    max-width: 100%;
    height: 50px;
    min-height: 50px;
    padding: 16px 24px;
    border: 1px solid #002d66;
    border-radius: 12px;
    background: #ffffff;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    color: #002d66;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body.nh-assess-success-page #new-landing-page .nh-assess-return:hover,
body.nh-assess-success-page #new-landing-page .nh-assess-return:focus-visible {
    background: #002d66;
    border-color: #002d66;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 45, 102, 0.22);
}

body.nh-assess-success-page #new-landing-page .nh-assess-return:hover .nh-assess-return-icon,
body.nh-assess-success-page #new-landing-page .nh-assess-return:focus-visible .nh-assess-return-icon {
    filter: brightness(0) invert(1);
}

body.nh-assess-success-page #new-landing-page .nh-assess-return-icon {
    width: 18px;
    height: 18px;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
    transition: filter 0.2s ease;
}

@media (max-width: 1199.98px) {
    body.nh-assess-success-page #new-landing-page .nh-assess-success-visual {
        width: auto;
        max-width: 200px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-success-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1023.98px) {
    body.nh-assess-success-page #new-landing-page .nh-assess-next-heading {
        margin-bottom: 22px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-next-steps {
        margin-bottom: 28px;
    }
}

@media (max-width: 767.98px) {
    body.nh-assess-success-page #new-landing-page .nh-hero-copy {
        gap: 12px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-success-visual {
        width: auto;
        max-width: 156px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-success-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    body.nh-assess-success-page #new-landing-page .nh-hero h2.nh-hero-title {
        font-size: 18px;
        line-height: 24px;
    }

    body.nh-assess-success-page #new-landing-page .nh-hero-lead {
        font-size: 16px;
        line-height: 24px;
    }

    body.nh-assess-success-page #new-landing-page .nh-hero {
        padding-bottom: 14px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-card {
        max-width: 100%;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-next-heading {
        margin-bottom: 20px;
        font-size: 22px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-next-steps {
        --bs-gutter-x: 0;
        --bs-gutter-y: 12px;
        margin-bottom: 17px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-next-step {
        max-width: none;
        width: 100%;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-return {
        width: 100%;
        max-width: none;
        height: 50px;
        min-height: 50px;
        padding: 16px 24px;
    }
}

@media (max-width: 575.98px) {
    body.nh-assess-success-page #new-landing-page .nh-assess-next-heading {
        font-size: 20px;
    }
}

@media (max-width: 374.98px) {
    body.nh-assess-success-page #new-landing-page .nh-assess-success-badge {
        padding: 6px 12px;
    }

    body.nh-assess-success-page #new-landing-page .nh-assess-next-heading {
        font-size: 18px;
    }
}

/* =============================================================================
   Start a Board-Cycle Pilot
   Scoped to body.nh-pilot-page so assessment and success pages stay unchanged.
   ============================================================================= */
body.nh-pilot-page #new-landing-page .nh-hero-stage-innerpage {
    min-height: inherit;
}

body.nh-pilot-page #new-landing-page .nh-hero-lead {
    margin-bottom: 0;
    max-width: 720px;
}

@media (min-width: 1600px) {
    body.nh-pilot-page #new-landing-page .nh-hero-stage-innerpage {
        background-position: center bottom -150px;
    }
}

body.nh-pilot-page #new-landing-page .nh-assess-card {
    max-width: 1154px;
}

body.nh-pilot-page #new-landing-page .nh-assess-input,
body.nh-pilot-page #new-landing-page .nh-assess-select {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-top-fields {
    margin-bottom: 22px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-top-fields .nh-assess-field {
    margin-bottom: 0;
}

body.nh-pilot-page #new-landing-page .nh-pilot-phone, .nh-pilot-phone {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-dial,  .nh-pilot-dial {
    width: 120px !important;
    max-width: 120px !important;
    flex-shrink: 0;
}

body.nh-pilot-page #new-landing-page .nh-pilot-phone .nh-assess-input,  .nh-pilot-phone .nh-assess-input {
    flex: 1 1 auto;
    max-width: none;
}

body.nh-pilot-page #new-landing-page .nh-pilot-bodies legend,
body.nh-pilot-page #new-landing-page .nh-pilot-tools legend {
    margin-bottom: 4px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-legend-note,
body.nh-pilot-page #new-landing-page .nh-pilot-bodies .nh-assess-hint,
body.nh-pilot-page #new-landing-page .nh-pilot-tools .nh-assess-hint {
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    color: #6B7280;
}

body.nh-pilot-page #new-landing-page .nh-pilot-bodies .nh-assess-hint,
body.nh-pilot-page #new-landing-page .nh-pilot-tools .nh-assess-hint {
    margin: 0 0 16px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-choices {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex: 1 1 calc((100% - 36px) / 4);
    width: auto;
    min-width: 0;
    max-width: none;
    height: 66px;
    min-height: 66px;
    max-height: 66px;
    margin: 0;
    padding: 0 16px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #FFFFFF;
    text-align: left;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice .nh-assess-option-box {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    flex: 0 0 18px;
    align-self: center;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    margin: 0;
    border: 1.5px solid #E2E8F0;
    border-radius: 4px;
    background-color: #FFFFFF;
    z-index: 1;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-assess-option--radio .nh-assess-option-box {
    border-radius: 50%;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice .nh-assess-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    margin: 0;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice .nh-assess-option-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    margin: 0;
    object-fit: contain;
}

body.nh-pilot-page #new-landing-page .nh-assess-option-label {
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: #031C42;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice .nh-assess-option-label {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    margin: 0;
    text-align: left;
}

body.nh-pilot-page #new-landing-page .nh-pilot-meeting-choices {
    flex-wrap: nowrap;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-meeting {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 10px;
    gap: 6px;
    white-space: normal;
}

body.nh-pilot-page #new-landing-page .nh-pilot-meeting .nh-assess-option-label {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    line-height: 1.15;
}

body.nh-pilot-page #new-landing-page .nh-pilot-meeting .nh-assess-option-box,
body.nh-pilot-page #new-landing-page .nh-pilot-tool .nh-assess-option-box {
    margin-left: auto;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-tool {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 14px;
}

body.nh-pilot-page #new-landing-page .nh-pilot-tool .nh-assess-option-label {
    line-height: 1.15;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice:hover,
body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice:focus-within {
    border-color: #002D66;
    background: #FFFFFF;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.is-checked,
body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice:has(input:checked) {
    border-color: #002D66;
    box-shadow: 0 0 0 1px #002D66;
    background: #FFFFFF;
}

body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-assess-option--radio.is-checked .nh-assess-option-box,
body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-assess-option--radio:has(input:checked) .nh-assess-option-box {
    border-color: #002D66;
    background-color: #002D66;
    background-image: none;
    box-shadow: inset 0 0 0 3px #ffffff;
}

body.nh-pilot-page #new-landing-page .nh-pilot-tool.is-checked .nh-assess-option-box,
body.nh-pilot-page #new-landing-page .nh-pilot-tool:has(input:checked) .nh-assess-option-box {
    border-color: #002D66;
    background-color: #002D66;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
    box-shadow: none;
}

body.nh-pilot-page #new-landing-page .nh-assess-option--radio .nh-assess-option-box {
    border-radius: 50%;
}

body.nh-pilot-page #new-landing-page .nh-assess-option--radio.is-checked .nh-assess-option-box,
body.nh-pilot-page #new-landing-page .nh-assess-option--radio:has(input:checked) .nh-assess-option-box {
    background-image: none;
    box-shadow: inset 0 0 0 4px #ffffff;
}

body.nh-pilot-page #new-landing-page .nh-assess-submit {
    max-width: 416px;
    width: 100%;
    height: 51px;
    min-height: 51px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    font-size: 22px;
    font-weight: 700;
}

body.nh-pilot-page #new-landing-page .nh-pilot-note {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    gap: 8px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #6B7280;
}

body.nh-pilot-page #new-landing-page .nh-pilot-note img,
body.nh-pilot-page #new-landing-page .nh-pilot-note-icon {
    width: auto;
    height: auto;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

body.nh-pilot-page #new-landing-page .nh-assess-time {
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #000000;
}

body.nh-pilot-page #new-landing-page .nh-assess-time img,
body.nh-pilot-page #new-landing-page .nh-pilot-attach {
    width: auto;
    height: auto;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
}


.independent-section{
    background-color: #fff;
    padding: 45px 22px;
}

@media (max-width: 1199.98px) {
    body.nh-pilot-page #new-landing-page .nh-pilot-bodies .nh-assess-option.nh-pilot-choice {
        flex: 1 1 calc((100% - 24px) / 3);
        width: auto;
        max-width: calc((100% - 24px) / 3);
        height: 66px;
        min-height: 66px;
        max-height: 66px;
    }

    body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-tool {
        flex: 1 1 calc((100% - 36px) / 4);
        width: auto;
        max-width: none;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }

    body.nh-pilot-page #new-landing-page .nh-pilot-meeting-choices {
        flex-wrap: wrap;
    }

    body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-meeting {
        flex: 1 1 calc((100% - 24px) / 3);
        width: auto;
        max-width: none;
        min-width: 0;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }
}

@media (max-width: 1023.98px) {
    body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-tool {
        flex: 1 1 calc((100% - 24px) / 3);
        width: auto;
        max-width: none;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }
}

@media (max-width: 991.98px) {
    body.nh-pilot-page #new-landing-page .nh-pilot-top-fields .nh-assess-field {
        margin-bottom: 16px;
    }

    body.nh-pilot-page #new-landing-page .nh-pilot-top-fields .col-12:last-child .nh-assess-field {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    body.nh-pilot-page #new-landing-page .nh-pilot-dial {
        width: 96px;
        max-width: 96px;
    }

    body.nh-pilot-page #new-landing-page .nh-pilot-bodies .nh-assess-option.nh-pilot-choice {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        height: 66px;
        min-height: 66px;
        max-height: 66px;
        padding: 0 16px;
    }

    body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-tool {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        padding: 0 16px;
    }

    body.nh-pilot-page #new-landing-page .nh-pilot-meeting-choices {
        flex-wrap: wrap;
    }

    body.nh-pilot-page #new-landing-page .nh-assess-option.nh-pilot-choice.nh-pilot-meeting {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
        padding: 0 12px;
    }

    body.nh-pilot-page #new-landing-page .nh-assess-submit {
     height: 46px;
    min-height: 46px;
    font-size: 19px;
    font-weight: 700;
    }
    body.nh-pilot-page #new-landing-page .nh-assess-time{ font-size: 16px;}
    
}

@media (max-width: 575.98px) {
    body.nh-pilot-page #new-landing-page .nh-assess-option-label {
        font-size: 14px;
    }
}

/* =============================================================================
   Board-Cycle Pilot success page
   Scoped to body.nh-pilot-success-page so assessment success stays unchanged.
   ============================================================================= */
body.nh-pilot-success-page #new-landing-page .nh-hero h2.nh-hero-title {
    max-width: 640px;
}

body.nh-pilot-success-page #new-landing-page .nh-hero-lead {
    max-width: 640px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    body.nh-pilot-success-page #new-landing-page .nh-assess-next-step {
        min-height: 233px;
    }
}

body.nh-pilot-success-page #new-landing-page .nh-pilot-success-follow {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    border-radius: 100px;
    max-width: 100%;
    gap: 8px;
    padding:12px 16px;
    font-family: "Figtree", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    color: #15803D;
    text-align: center;
}

body.nh-pilot-success-page #new-landing-page .nh-pilot-success-follow-icon {
    display: block;
    width: 18px;
    height: 18px;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    body.nh-pilot-success-page #new-landing-page .nh-pilot-success-follow {
        display: inline-flex;
        width: auto;
        max-width: min(100%, 300px);
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 100px;
      font-size: 14px;
    line-height: 17px;
        text-align: left;
        white-space: normal;
    }

    body.nh-pilot-success-page #new-landing-page .nh-pilot-success-follow-icon {
        margin-top: 0;
    }

    body.nh-pilot-success-page #new-landing-page .nh-pilot-success-follow-text {
        flex: 0 1 auto;
        min-width: 0;
        text-align: left;
        text-wrap: balance;
    }
    .nh-assess-time img{ display: none !important;}
}


.max-w-600px{
    max-width: 620px;
    width: 100%;
}

.max-w-900px{
    max-width: 950px;
    width: 100%;
}

.supported-content{
    font-weight: 400;
}

.font-30px{
    font-size: 30px !important;
}

.top-position{
        position: absolute;
    left: 0;
    right: 0;
    top: -116px;
}



@media (max-width: 1364px) {
    #new-landing-page .nh-icon-bar {
        margin-top: 0;
        padding: 32px 20px;
        background: #002d66;
        background-image: none;
        border-top: 4px solid #f0cb54;
    }
     .top-position{
        position: static;
    }

    .nh-icon-bar-items-new{
        padding-top: 0 !important;
    }
    .font-30px {
    font-size: 24px !important;
}
    #new-landing-page .nh-hero {
        padding-bottom: 50px;
    }
}
