/* =============================================================
   NEW HOME — CSS scoped to page ID 41044
   Design tokens: DM Sans + Bitter, #1152CC blue palette
   ============================================================= */

/* ---- Design Tokens ---- */
.page-id-41044 {
    --nh-blue-1:     #1152CC;
    --nh-blue-5:     #0C2863;
    --nh-white:      #F9F9F9;
    --nh-black:      #202122;
    --nh-charcoal:   #464646;
    --nh-light-grey: #F3F3F3;
    --nh-chip-blue:  rgba(178, 219, 249, 0.5);

    --nh-radius-card: 10px;
    --nh-radius-pill: 43px;
    --nh-radius-chip: 5px;

    --nh-font-sans:   'dm-sans', 'DM Sans', sans-serif;
    --nh-font-serif:  'bitter', 'Bitter', Georgia, serif;

    font-family: var(--nh-font-sans);
    color: var(--nh-black);
}

/* =============================================================
   NEW HOME — Navigation (nh-nav)
   Matches Figma node 634-2029: glassmorphism pill on dark blue
   ============================================================= */

.page-id-41044 #oms_header,
.page-id-41044 .nh-site-header {
    background: #1152cc !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.35s ease;
}

.page-id-41044 #oms_header.nh-header--scrolled,
.page-id-41044 .nh-site-header.nh-header--scrolled {
    background: transparent !important;
}

.admin-bar .page-id-41044 #oms_header,
.admin-bar .page-id-41044 .nh-site-header {
    top: 32px;
}

.page-id-41044 .nh-nav {
    margin: 0 auto;
    max-width: 1440px;
    padding: 15px 20px;
}

.page-id-41044 .nh-nav__frame {
    align-items: center;
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    background: #0c2863d9;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 68px;
    padding: 5px 20px;
}

.page-id-41044 .nh-nav__brand {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 1;
}

.page-id-41044 .nh-nav__brand img {
    display: block;
    filter: brightness(0) invert(1);
    height: auto;
    max-width: 194px;
    width: 100%;
}

.page-id-41044 .nh-nav__end {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    margin-left: auto;
}

.page-id-41044 .nh-nav__menu {
    flex: 0 0 auto;
    min-width: 0;
}

.page-id-41044 .nh-menu {
    align-items: center;
    display: flex;
    gap: 0;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-id-41044 .nh-menu__item {
    position: relative;
}

.page-id-41044 .nh-menu__link {
    align-items: center;
    color: #f9f9f9;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    height: 68px;
    line-height: 1;
    padding: 0 18px;
    text-decoration: none;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.page-id-41044 .nh-menu__link:hover,
.page-id-41044 .nh-menu__link:focus {
    color: #f9f9f9;
    opacity: 0.75;
    text-decoration: none;
}

.page-id-41044 .nh-menu__chevron {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #f9f9f9;
    display: inline-block;
    height: 0;
    transition: transform 0.2s ease;
    width: 0;
}

.page-id-41044 .nh-menu__item.is-open > .nh-menu__link {
    background: #1152cc;
    border-radius: 43px;
    color: #f9f9f9;
}

.page-id-41044 .nh-menu__item.is-open > .nh-menu__link .nh-menu__chevron {
    border-top-color: #f9f9f9;
    transform: rotate(180deg);
}

.page-id-41044 .nh-menu__dropdown {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 15px;
    left: -20px;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 8px);
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 240px;
    z-index: 100;
}

.page-id-41044 .nh-menu__item.is-open > .nh-menu__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.page-id-41044 .nh-menu__dropdown-overview {
    color: #1152cc;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-decoration: none;
}

.page-id-41044 .nh-menu__dropdown-overview:hover {
    color: #0a3fa0;
    text-decoration: none;
}

.page-id-41044 .nh-menu__dropdown-divider {
    border: none;
    border-top: 1px solid #a0a0a0;
    margin: 0;
    width: 100%;
}

.page-id-41044 .nh-menu__group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
}

.page-id-41044 .nh-menu__group-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.page-id-41044 .nh-menu__group-label {
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.page-id-41044 .nh-menu__group-age {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
    text-align: right;
}

.page-id-41044 .nh-menu__group-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-id-41044 .nh-menu__dropdown-link {
    color: #1152cc;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    padding: 0 20px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.page-id-41044 .nh-menu__group-list .nh-menu__dropdown-link {
    padding: 0;
}

.page-id-41044 .nh-menu__dropdown-link:hover {
    color: #0a3fa0;
    text-decoration: none;
}

.page-id-41044 .nh-menu__dropdown-link--muted {
    color: #555;
    padding-top: 4px;
}

.page-id-41044 .nh-menu__dropdown-link--muted:hover {
    color: #333;
}

.page-id-41044 .nh-nav__right {
    align-items: center;
    display: flex;
    flex-shrink: 0;
}

.page-id-41044 .nh-nav__cta {
    align-items: center;
    background: #1152cc;
    border-radius: 43px;
    color: #f9f9f9;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    justify-content: center;
    padding: 5px 20px;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.page-id-41044 .nh-nav__cta:hover,
.page-id-41044 .nh-nav__cta:focus {
    background: #0a3fa0;
    color: #f9f9f9;
    text-decoration: none;
}

.page-id-41044 .nh-nav__mobile-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    height: 40px;
    justify-content: center;
    padding: 8px;
    width: 40px;
}

.page-id-41044 .nh-nav__mobile-toggle span {
    background: #f9f9f9;
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 24px;
}

/* ─── Mobile menu overlay ─── */
.page-id-41044 .nh-mobile-menu {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
}

.page-id-41044 .nh-mobile-menu__backdrop {
    display: none;
}

.page-id-41044 .nh-mobile-menu__panel {
    background: #1152cc;
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    overflow-y: auto;
    padding: 12px 16px 40px;
    position: absolute;
    right: 0;
    top: 0;
}

.page-id-41044 .nh-mobile-menu__header {
    align-items: center;
    background: #0c2863;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 12px 16px;
}

.page-id-41044 .nh-mobile-menu__brand img {
    filter: brightness(0) invert(1);
    height: auto;
    max-width: 140px;
}

.page-id-41044 .nh-mobile-menu__close {
    background: transparent;
    border: none;
    color: #f9f9f9;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 4px 6px;
}

.page-id-41044 .nh-mobile-menu__list {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-id-41044 .nh-mobile-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-id-41044 .nh-mobile-menu__link {
    align-items: center;
    color: #f9f9f9;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    justify-content: space-between;
    letter-spacing: 0;
    padding: 18px 0;
    text-decoration: none;
    width: 100%;
}

.page-id-41044 .nh-mobile-menu__item.has-children .nh-mobile-menu__link::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #f9f9f9;
    content: '';
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.page-id-41044 .nh-mobile-menu__item.is-open .nh-mobile-menu__link::after {
    transform: rotate(180deg);
}

.page-id-41044 .nh-mobile-menu__sublist {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 16px;
}

.page-id-41044 .nh-mobile-menu__item.is-open .nh-mobile-menu__sublist {
    display: block;
}

.page-id-41044 .nh-mobile-menu__sublink {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 8px 0;
    text-decoration: none;
}

.page-id-41044 .nh-mobile-menu__sublink:hover {
    color: #fff;
    text-decoration: none;
}

.page-id-41044 .nh-mobile-menu__cta {
    align-items: center;
    background: #0c2863;
    border-radius: 43px;
    color: #f9f9f9;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    margin-top: 32px;
    padding: 18px 20px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .page-id-41044 .nh-nav__end {
        display: none;
    }
    .page-id-41044 .nh-nav__mobile-toggle {
        display: flex;
        margin-left: auto;
    }
}

@media (min-width: 1025px) {
    .page-id-41044 .nh-nav__mobile-toggle {
        display: none;
    }
    .page-id-41044 .nh-nav__end {
        display: flex;
    }
    .page-id-41044 .nh-nav__menu {
        display: block;
    }
    .page-id-41044 .nh-nav__right {
        display: flex;
    }
}

/* ---- Reset / Base ---- */
.page-id-41044 .nh-section {
    width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   S02 — HERO
   ============================================================ */
.page-id-41044 .nh-hero {
    background: var(--nh-blue-1);
    padding: 60px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 700px;
}

.page-id-41044 .nh-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    gap: 40px;
}

.page-id-41044 .nh-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 534px;
    align-self: stretch;
    padding-top: 30px;
    padding-bottom: 5px;
}

.page-id-41044 .nh-hero__headline {
    font-family: var(--nh-font-sans);
    font-weight: 500;
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--nh-white);
    margin: 0;
}

.page-id-41044 .nh-hero__headline em,
.page-id-41044 .nh-hero__headline i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 52px;
}

.page-id-41044 .nh-hero__sub {
    font-family: var(--nh-font-sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--nh-white);
    margin: 0;
    max-width: 419px;
}

.page-id-41044 .nh-hero__image {
    flex-shrink: 0;
    width: 55%;
    max-width: 659px;
    height: 580px;
    border-radius: var(--nh-radius-card);
    overflow: hidden;
    position: relative;
}

.page-id-41044 .nh-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}


/* ============================================================
   S03 — INSURANCE STRIP  (overrides lv2-insurance to match Figma 831-7735)
   ============================================================ */
.page-id-41044 em,
.page-id-41044 i {
    font-family: 'Bitter', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
}

.page-id-41044 i[class*="fa"],
.page-id-41044 i.fab,
.page-id-41044 i.fas,
.page-id-41044 i.far,
.page-id-41044 i.fal {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: 900 !important;
}

.page-id-41044 .nh-footer__top {
    justify-content: flex-start;
}

.page-id-41044 .lv2-ins {
    background: var(--nh-light-grey) !important;
    border-radius: var(--nh-radius-card) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 30px 50px !important;
    gap: 40px !important;
    max-width: none !important;
    min-height: 184px !important;
    margin: 0 !important;
}

.page-id-41044 .lv2-ins__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    text-align: left !important;
    max-width: 355px !important;
    flex-shrink: 0 !important;
}

.page-id-41044 .lv2-ins__headline {
    font-family: var(--nh-font-sans) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
    color: var(--nh-black) !important;
    margin: 0 !important;
    max-width: none !important;
}

.page-id-41044 .lv2-ins__headline em,
.page-id-41044 .lv2-ins__headline i {
    font-family: var(--nh-font-sans) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    color: var(--nh-black) !important;
}

.page-id-41044 .lv2-ins__subtext {
    display: none !important;
}

.page-id-41044 .lv2-ins__cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 0 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    width: auto !important;
    color: var(--nh-blue-1) !important;
    font-family: var(--nh-font-sans) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    transition: opacity 0.15s ease !important;
}

.page-id-41044 .lv2-ins__cta:hover,
.page-id-41044 .lv2-ins__cta:focus {
    color: var(--nh-blue-1) !important;
    opacity: 0.75 !important;
    text-decoration: underline !important;
}

.page-id-41044 .lv2-ins__cta svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

.page-id-41044 .lv2-ins__logos {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 80px !important;
    flex-wrap: nowrap !important;
    max-width: none !important;
    width: auto !important;
}

.page-id-41044 .lv2-ins__logo-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
}

.page-id-41044 .lv2-ins__logo-item:nth-child(5) {
    display: none !important;
}

.page-id-41044 .lv2-ins__logo-img {
    display: block !important;
    height: 40px !important;
    max-width: 150px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* ============================================================
   S04 — CARE PROGRAMS
   ============================================================ */
.page-id-41044 .nh-care {
    background: var(--nh-white);
    padding: 90px 40px 40px;
}

.page-id-41044 .nh-care__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-id-41044 .nh-care__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.page-id-41044 .nh-care__headline {
    font-family: var(--nh-font-sans);
    font-weight: 500;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--nh-blue-1);
    margin: 0;
    max-width: 545px;
}

.page-id-41044 .nh-care__headline em,
.page-id-41044 .nh-care__headline i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.page-id-41044 .nh-care__intro {
    max-width: 487px;
    flex-shrink: 0;
}

.page-id-41044 .nh-care__copy {
    font-size: 18px;
    font-weight: 400;
    color: var(--nh-charcoal);
    line-height: 1.6;
    margin: 0 0 12px;
}

.page-id-41044 .nh-care__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--nh-blue-1);
    text-decoration: none;
    border-bottom: 1.5px solid var(--nh-blue-1);
    padding-bottom: 2px;
}

/* Cards Carousel */
.page-id-41044 .nh-care__carousel {
    display: flex;
    gap: 20px;
}

.page-id-41044 .nh-care__card {
    flex-shrink: 0;
    width: calc(33.333% - 14px);
    height: 600px;
    border-radius: var(--nh-radius-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 26px 37px;
    text-decoration: none;
}

.page-id-41044 .nh-care__card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-id-41044 .nh-care__card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-id-41044 .nh-care__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-id-41044 .nh-care__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-id-41044 .nh-care__card-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(249, 249, 249, 0.3);
    border-radius: var(--nh-radius-pill);
    color: var(--nh-white);
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
}

.page-id-41044 .nh-care__card-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-id-41044 .nh-care__card-title {
    font-family: var(--nh-font-sans);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    color: var(--nh-white);
    margin: 0;
}

.page-id-41044 .nh-care__card-title em,
.page-id-41044 .nh-care__card-title i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.page-id-41044 .nh-care__card-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.page-id-41044 .nh-care__chip {
    background: var(--nh-light-grey);
    border-radius: var(--nh-radius-chip);
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nh-black);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}

.page-id-41044 a.nh-care__chip:hover,
.page-id-41044 a.nh-care__chip:focus {
    background: var(--nh-white);
    color: var(--nh-black);
}

.page-id-41044 .nh-care__carousel-wrap {
    overflow-x: scroll;
    overflow-y: visible;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.page-id-41044 .nh-care__carousel-wrap::-webkit-scrollbar {
    display: none;
}

.page-id-41044 .nh-care__controls {
    display: none !important;
}

.page-id-41044 .nh-care__track-bar {
    flex: 1;
    height: 1px;
    background: rgba(32, 33, 34, 0.25);
    border-radius: 0;
    position: relative;
    overflow: visible;
}

.page-id-41044 .nh-care__track-thumb {
    position: absolute;
    top: -0.5px;
    left: 0;
    height: 2px;
    background: #202122;
    border-radius: 0;
    transition: left 0.2s ease, width 0.2s ease;
    width: 13%;
}

.page-id-41044 .nh-care__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.page-id-41044 .nh-care__arrow {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.page-id-41044 .nh-care__arrow:hover { opacity: 1; }

/* ============================================================
   S05 — DIFFERENTIATORS ("What makes Sandstone different")
   ============================================================ */
.page-id-41044 .nh-diff {
    padding: 40px;
    background: var(--nh-white);
}

.page-id-41044 .nh-diff__inner {
    max-width: 1360px;
    margin: 0 auto;
    border-radius: var(--nh-radius-card);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 757px;
    position: relative;
}

.page-id-41044 .nh-diff__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-id-41044 .nh-diff__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 42%;
    display: block;
}

.page-id-41044 .nh-diff__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    mix-blend-mode: multiply;
    z-index: 1;
}

.page-id-41044 .nh-diff__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 90px 45px 117px 40px;
    gap: 40px;
}

.page-id-41044 .nh-diff__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
}

.page-id-41044 .nh-diff__headline {
    font-family: var(--nh-font-sans);
    font-weight: 500;
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--nh-white);
    margin: 0;
}

.page-id-41044 .nh-diff__headline em,
.page-id-41044 .nh-diff__headline i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 52px;
}

.page-id-41044 .nh-diff__icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.page-id-41044 .nh-diff__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-id-41044 .nh-diff__points {
    background: var(--nh-light-grey);
    border-radius: var(--nh-radius-card);
    padding: 40px 33px 55px;
    width: 494px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.page-id-41044 .nh-diff__point {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.page-id-41044 .nh-diff__point + .nh-diff__point {
    border-top: 1px solid rgba(70, 70, 70, 0.2);
    padding-top: 34px;
}

.page-id-41044 .nh-diff__point-text { flex: 1; }

.page-id-41044 .nh-diff__point-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--nh-blue-1);
    margin: 0 0 12px;
    line-height: 1.4;
}

.page-id-41044 .nh-diff__point-copy {
    font-size: 16px;
    font-weight: 400;
    color: var(--nh-charcoal);
    line-height: 1.5;
    margin: 0;
}

.page-id-41044 .nh-diff__point-icon {
    width: 68px;
    height: 66px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.page-id-41044 .nh-diff__point-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   S06 — OUTCOMES STATS  (node 979-7001)
   ============================================================ */
body.landing-v2.page-id-41044 .gutenblock--oms-lv2-outcomes.nh-outcomes,
.page-id-41044 .nh-outcomes {
    background: #f9f9f9 !important;
    padding: 100px 40px 140px !important;
}

.page-id-41044 .nh-outcomes__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 83px;
}

.page-id-41044 .nh-outcomes__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
    max-width: 441px;
}

.page-id-41044 .nh-outcomes__heading-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-id-41044 .nh-outcomes__headline {
    font-family: var(--nh-font-sans);
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--nh-blue-1);
    margin: 0;
}

.page-id-41044 .nh-outcomes__headline em,
.page-id-41044 .nh-outcomes__headline i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 42px;
    letter-spacing: 0;
}

.page-id-41044 .nh-outcomes__subtext {
    font-family: var(--nh-font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-charcoal);
    margin: 0;
    max-width: 395px;
}

.page-id-41044 .nh-outcomes__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--nh-font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--nh-blue-1);
    text-decoration: underline;
    text-underline-offset: 3px;
    line-height: 1.5;
    white-space: nowrap;
}

.page-id-41044 .nh-outcomes__cta:hover,
.page-id-41044 .nh-outcomes__cta:focus {
    color: var(--nh-blue-1);
    opacity: 0.75;
    text-decoration: underline;
}

.page-id-41044 .nh-outcomes__cta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.page-id-41044 .nh-outcomes__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.page-id-41044 .nh-outcomes__points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.page-id-41044 .nh-outcomes__point {
    background: #f3f3f3;
    border-radius: var(--nh-radius-card);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.page-id-41044 .nh-outcomes__point-icon {
    width: 121px;
    height: 121px;
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.page-id-41044 .nh-outcomes__point-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.page-id-41044 .nh-outcomes__cta-mobile {
    display: none;
}

.page-id-41044 .nh-outcomes__value {
    font-family: var(--nh-font-sans);
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--nh-blue-1);
    margin: 0;
    flex-shrink: 0;
    width: 150px;
}

.page-id-41044 .nh-outcomes__point-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-id-41044 .nh-outcomes__point-title {
    font-family: var(--nh-font-sans);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--nh-blue-1);
    margin: 0;
}

.page-id-41044 .nh-outcomes__point-detail {
    font-family: var(--nh-font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-charcoal);
    margin: 0;
    max-width: 356px;
}

.page-id-41044 .nh-outcomes__full-report {
    align-self: flex-end;
}

.page-id-41044 .nh-outcomes__report-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--nh-font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-charcoal);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.page-id-41044 .nh-outcomes__report-link:hover {
    opacity: 0.75;
    color: var(--nh-charcoal);
}

.page-id-41044 .nh-outcomes__report-link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    body.landing-v2.page-id-41044 .gutenblock--oms-lv2-outcomes.nh-outcomes,
    .page-id-41044 .nh-outcomes {
        background: #f9f9f9 !important;
        padding: 50px 16px !important;
    }
    .page-id-41044 .nh-outcomes__inner {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .page-id-41044 .nh-outcomes__left {
        max-width: 100%;
        gap: 30px;
    }
    .page-id-41044 .nh-outcomes__heading-group { gap: 20px; }
    .page-id-41044 .nh-outcomes__headline {
        font-size: 30px;
        line-height: 1.2;
    }
    .page-id-41044 .nh-outcomes__headline em,
    .page-id-41044 .nh-outcomes__headline i {
        font-size: 28px;
    }
        line-height: 1.2;
    }
    .page-id-41044 .nh-outcomes__subtext {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
    .page-id-41044 .nh-outcomes__cta { font-size: 16px; }
    .page-id-41044 .nh-outcomes__cta-desktop { display: none; }
    .page-id-41044 .nh-outcomes__cta-mobile { display: inline; }
    .page-id-41044 .nh-outcomes__right {
        align-items: stretch;
        gap: 20px;
        width: 100%;
    }
    .page-id-41044 .nh-outcomes__points {
        gap: 20px;
        width: 100%;
    }
    .page-id-41044 .nh-outcomes__point {
        background: #f3f3f3;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px 16px;
        padding: 20px 16px;
        width: 100%;
    }
    .page-id-41044 .nh-outcomes__point-icon {
        display: flex;
        width: 72px;
        height: 72px;
        margin-left: auto;
        order: 2;
    }
    .page-id-41044 .nh-outcomes__value {
        font-size: 35px;
        width: auto;
        flex: 1;
        min-width: 0;
        line-height: 1.1;
        order: 1;
    }
    .page-id-41044 .nh-outcomes__point-text {
        gap: 5px;
        width: 100%;
        order: 3;
        flex: 0 0 100%;
    }
    .page-id-41044 .nh-outcomes__point-title {
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
    }
    .page-id-41044 .nh-outcomes__point-detail {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
    .page-id-41044 .nh-outcomes__full-report { align-self: flex-start; }
}

/* ============================================================
   S07 — VIDEO TESTIMONIALS  (node 1193-5933)
   ============================================================ */
body.landing-v2.page-id-41044 .gutenblock--oms-lv2-testimonials.nh-testi,
.page-id-41044 .nh-testi {
    background: var(--nh-white) !important;
    padding: 140px 40px !important;
}

.page-id-41044 .nh-testi__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-id-41044 .nh-testi__carousel-wrap {
    overflow: hidden;
}

.page-id-41044 .nh-testi__carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.page-id-41044 .nh-testi__card {
    flex-shrink: 0;
    width: 555px;
    background: #ebf4fb;
    border-radius: var(--nh-radius-card);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-id-41044 .nh-testi__thumb {
    position: relative;
    height: 259px;
    border-radius: var(--nh-radius-card);
    overflow: hidden;
    flex-shrink: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    display: block;
    background: #000;
}

.page-id-41044 .nh-testi__thumb:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.page-id-41044 .nh-testi__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.page-id-41044 .nh-testi__thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.page-id-41044 .nh-testi__play {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1152cc;
    color: #f9f9f9;
    font-family: var(--nh-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 10px 8px 15px;
    border-radius: var(--nh-radius-pill);
    white-space: nowrap;
    cursor: default;
}

.page-id-41044 .nh-testi__play svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.page-id-41044 .nh-testi__quote {
    font-family: var(--nh-font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-black);
    margin: 0;
    flex: 1;
}

.page-id-41044 .nh-testi__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-id-41044 .nh-testi__name {
    font-family: var(--nh-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--nh-blue-1);
    margin: 0;
}

.page-id-41044 .nh-testi__role {
    font-family: var(--nh-font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-charcoal);
    margin: 0;
}

.page-id-41044 .nh-testi__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-id-41044 .nh-testi__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.page-id-41044 .nh-testi__dot.is-active {
    background: var(--nh-blue-1);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .page-id-41044 .nh-testi { padding: 60px 16px; }
    .page-id-41044 .nh-testi__card { width: calc(100vw - 72px); }
}

/* Video lightbox modal */
.page-id-41044 .nh-testi__modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-id-41044 .nh-testi__modal[hidden] {
    display: none;
}

.page-id-41044 .nh-testi__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.page-id-41044 .nh-testi__modal-box {
    position: relative;
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.page-id-41044 .nh-testi__modal-frame {
    width: 100%;
    height: 100%;
}

.page-id-41044 .nh-testi__modal-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.page-id-41044 .nh-testi__modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 0;
    z-index: 2;
}

.page-id-41044 .nh-testi__modal-close:hover svg path {
    stroke: #ccc;
}

@media (max-width: 600px) {
    .page-id-41044 .nh-testi__modal-box {
        width: 95vw;
    }
    .page-id-41044 .nh-testi__modal-close {
        top: -36px;
    }
}

/* ============================================================
   S08 — LOCATIONS MAP
   ============================================================ */
.page-id-41044 .nh-locations {
    background: #f9f9f9;
    padding: 0 40px 140px;
}

.page-id-41044 .nh-locations__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.page-id-41044 .nh-locations__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 32px;
    text-align: center;
    width: 100%;
}

.page-id-41044 .nh-locations__headline {
    font-size: 30px;
    font-weight: 500;
    color: var(--nh-blue-1);
    margin: 0;
    line-height: 1.1;
    max-width: 668px;
}

.page-id-41044 .nh-locations__ctas {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-id-41044 .nh-locations__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--nh-blue-1);
}

.page-id-41044 .nh-locations__cta-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1.5px solid var(--nh-blue-1);
    padding-bottom: 2px;
}

.page-id-41044 .nh-locations__cta svg {
    flex-shrink: 0;
    display: block;
}

.page-id-41044 .nh-locations__cta:hover .nh-locations__cta-label {
    opacity: 0.8;
}

.page-id-41044 .nh-locations__tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1356px;
}

.page-id-41044 .nh-locations__tile {
    position: relative;
    aspect-ratio: 375 / 278;
    border-radius: 10px;
    overflow: hidden;
    background: #f2f2f2;
    display: block;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.page-id-41044 .nh-locations__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 82, 204, 0.12);
}

.page-id-41044 .nh-locations__tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-id-41044 .nh-locations__chip {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: rgba(219, 219, 219, 0.5);
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--nh-black);
}

/* ============================================================
   S09 — CTA PANEL ("Ready when you are")
   ============================================================ */
.page-id-41044 .nh-cta {
    background: var(--nh-blue-5);
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.page-id-41044 .nh-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-id-41044 .nh-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.4;
}

.page-id-41044 .nh-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.page-id-41044 .nh-cta__headline {
    font-size: 55px;
    font-weight: 500;
    color: var(--nh-white);
    margin: 0;
    line-height: 1.1;
}

.page-id-41044 .nh-cta__headline em,
.page-id-41044 .nh-cta__headline i {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.page-id-41044 .nh-cta__copy {
    font-size: 18px;
    font-weight: 400;
    color: var(--nh-white);
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}

.page-id-41044 .nh-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nh-blue-1);
    color: var(--nh-white);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--nh-radius-pill);
    transition: background 0.2s;
}

.page-id-41044 .nh-cta__btn:hover { background: #0e45a8; color: var(--nh-white); }

/* ============================================================
   FOOTER (Figma 849-8320)
   ============================================================ */
.page-id-41044 .nh-footer {
    background: #f3f3f3;
    padding: 40px 40px 80px;
}

.page-id-41044 .nh-footer__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-id-41044 .nh-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.page-id-41044 .nh-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-id-41044 .nh-footer__logo-link {
    display: inline-block;
}

.page-id-41044 .nh-footer__logo {
    height: auto;
    width: 194px;
    display: block;
}

.page-id-41044 .nh-footer__logo-link--text {
    font-size: 24px;
    font-weight: 600;
    color: var(--nh-blue-1);
    text-decoration: none;
}

.page-id-41044 .nh-footer__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-id-41044 .nh-footer__chip {
    background: rgba(178, 219, 249, 0.5);
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #202122;
    white-space: nowrap;
}

.page-id-41044 .nh-footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 358px;
    flex-shrink: 0;
}

.page-id-41044 .nh-footer__newsletter-label {
    font-size: 18px;
    font-weight: 400;
    color: #202122;
    margin: 0;
    line-height: 24px;
}

.page-id-41044 .nh-footer__newsletter-field {
    display: flex;
    align-items: center;
    background: rgba(219, 219, 219, 0.5);
    border-radius: 10px;
    padding: 5px 5px 5px 15px;
    height: 60px;
    gap: 10px;
}

.page-id-41044 .nh-footer__newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    outline: none;
    min-width: 0;
}

.page-id-41044 .nh-footer__newsletter-input::placeholder {
    color: rgba(70, 70, 70, 0.7);
}

.page-id-41044 .nh-footer__newsletter-btn {
    background: #0c2863;
    color: #f9f9f9;
    border: none;
    border-radius: 43px;
    padding: 5px 10px;
    height: 35px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.page-id-41044 .nh-footer__newsletter-btn:hover {
    background: #0a1f4a;
}

.page-id-41044 .nh-footer__divider {
    border: none;
    border-top: 1px solid #d0d0d0;
    margin: 0;
}

.page-id-41044 .nh-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-id-41044 .nh-footer__col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-id-41044 .nh-footer__col-toggle {
    display: contents;
}

.page-id-41044 .nh-footer__col-title {
    font-size: 18px;
    font-weight: 400;
    color: #1152cc;
    margin: 0;
    line-height: 24px;
}

.page-id-41044 .nh-footer__col-chevron {
    display: none;
}

.page-id-41044 .nh-footer__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-id-41044 .nh-footer__col-list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #464646;
    margin: 0;
}

.page-id-41044 .nh-footer__col-list a {
    color: #464646;
    text-decoration: none;
    transition: color 0.15s;
}

.page-id-41044 .nh-footer__col-list a:hover {
    color: #1152cc;
}

/* ============================================================
   FLOATING GET STARTED BUTTON (Figma 1024-9835)
   ============================================================ */
.page-id-41044 .nh-floating-cta {
    align-items: center;
    background: #0c2863;
    border-radius: 43px;
    bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    color: #f9f9f9;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    justify-content: center;
    left: 50%;
    letter-spacing: 0;
    line-height: 24px;
    padding: 13px 30px;
    position: fixed;
    text-decoration: none;
    transform: translateX(-50%);
    transition: background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    z-index: 1500;
}

.page-id-41044 .nh-floating-cta:hover {
    background: #0a1f4a;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
    color: #f9f9f9;
    text-decoration: none;
}

@media (max-width: 600px) {
    .page-id-41044 .nh-floating-cta {
        bottom: 20px;
        font-size: 15px;
        padding: 11px 24px;
    }
}

/* ============================================================
   S09 NEW — CTA BLOCK (page 41044 rebuild from Figma 958-7887)
   ============================================================ */
.page-id-41044 .nh-cta-block {
    background: #f9f9f9;
    padding: 0 40px 140px;
}

.page-id-41044 .nh-cta-block__card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.page-id-41044 .nh-cta-block__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-id-41044 .nh-cta-block__bg img {
    width: 100%;
    height: 152.83%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: -12.25%;
    left: 0;
}

.page-id-41044 .nh-cta-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.page-id-41044 .nh-cta-block__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 15px 20px;
    color: #f9f9f9;
}

.page-id-41044 .nh-cta-block__headline {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    color: #f9f9f9;
    margin: 0;
    max-width: 441px;
}

.page-id-41044 .nh-cta-block__copy {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #f9f9f9;
    margin: 0;
    max-width: 414px;
}

.page-id-41044 .nh-cta-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0c2863;
    color: #f9f9f9;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 43px;
    min-height: 50px;
    transition: background 0.2s;
    white-space: nowrap;
}

.page-id-41044 .nh-cta-block__btn:hover {
    background: #0a1f4a;
    color: #f9f9f9;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 1024px) {
    .page-id-41044 .nh-care__card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    /* Hero mobile */
    .page-id-41044 .nh-hero {
        flex-direction: column;
        padding: 50px 16px 48px;
        min-height: auto;
    }

    .page-id-41044 .nh-hero__inner {
        flex-direction: column;
        gap: 40px;
    }

    .page-id-41044 .nh-hero__text {
        justify-content: flex-start;
        padding-top: 0;
        padding-bottom: 0;
        gap: 24px;
        align-self: stretch;
    }

    .page-id-41044 .nh-hero__headline { font-size: 36px; line-height: 1.15; }
    .page-id-41044 .nh-hero__headline em,
    .page-id-41044 .nh-hero__headline i { font-size: 34px; }
    .page-id-41044 .nh-hero__sub { font-size: 16px; line-height: 24px; }

    .page-id-41044 .nh-hero__image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 358 / 420;
        border-radius: 10px;
        overflow: hidden;
    }

    .page-id-41044 .nh-hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 35%;
    }

    /* Care Programs mobile */
    .page-id-41044 .nh-care { padding: 50px 16px; }
    .page-id-41044 .nh-care__header { flex-direction: column; }
    .page-id-41044 .nh-care__headline { font-size: 30px; }
    .page-id-41044 .nh-care__card { width: 315px; height: 409px; }

    /* Differentiators mobile — image top, points below in white */
    .page-id-41044 .nh-diff { padding: 0; }
    .page-id-41044 .nh-diff__inner {
        min-height: auto;
        border-radius: 0;
        overflow: visible;
    }
    .page-id-41044 .nh-diff__content {
        flex-direction: column;
        padding: 0;
        border-radius: 0;
        min-height: auto;
        gap: 0;
    }

    .page-id-41044 .nh-diff__bg,
    .page-id-41044 .nh-diff__bg-overlay {
        inset: auto;
        top: 0;
        left: 0;
        right: 0;
        height: 505px;
        bottom: auto;
    }

    .page-id-41044 .nh-diff__left {
        position: relative;
        width: 100%;
        height: 505px;
        min-height: 505px;
        border-radius: 0;
        padding: 35px 16px 54px;
        justify-content: space-between;
        max-width: none;
        z-index: 2;
    }

    .page-id-41044 .nh-diff__bg img {
        object-fit: cover;
        object-position: 50% 40%;
    }

    .page-id-41044 .nh-diff__headline {
        font-size: 45px;
        max-width: 367px;
        line-height: 1.1;
    }

    .page-id-41044 .nh-diff__headline em,
    .page-id-41044 .nh-diff__headline i { font-size: 45px; }

    .page-id-41044 .nh-diff__icon {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 120px;
        height: 120px;
        margin-top: auto;
        align-self: flex-start;
        flex-shrink: 0;
    }

    .page-id-41044 .nh-diff__points {
        width: 100%;
        background: var(--nh-white);
        border-radius: 0;
        padding: 24px 16px 40px;
        gap: 24px;
    }

    .page-id-41044 .nh-diff__point {
        gap: 16px;
        align-items: flex-start;
    }

    .page-id-41044 .nh-diff__point + .nh-diff__point {
        padding-top: 24px;
    }

    .page-id-41044 .nh-diff__point-icon {
        width: 40px;
        height: 40px;
        order: 2;
    }

    .page-id-41044 .nh-diff__point-icon img {
        object-fit: contain;
    }

    /* Insurance mobile — horizontal logo carousel */
    .page-id-41044 .lv2-ins {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: stretch !important;
        text-align: center !important;
        padding: 28px 0 24px !important;
        overflow: hidden !important;
    }
    .page-id-41044 .lv2-ins__content {
        align-items: center !important;
        max-width: 100% !important;
        padding: 0 24px !important;
        gap: 12px !important;
    }
    .page-id-41044 .lv2-ins__logos {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 28px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding: 8px 24px 4px !important;
        width: 100% !important;
        scrollbar-width: none !important;
    }
    .page-id-41044 .lv2-ins__logos::-webkit-scrollbar { display: none !important; }
    .page-id-41044 .lv2-ins__logo-item {
        flex: 0 0 auto !important;
        scroll-snap-align: center !important;
        min-width: 90px !important;
    }
    .page-id-41044 .lv2-ins__logo-item:nth-child(5) { display: flex !important; }
    .page-id-41044 .lv2-ins__cta {
        align-self: center !important;
        margin: 0 24px !important;
    }

    /* Testimonials swipe */
    .page-id-41044 .nh-testi { padding: 50px 16px; }
    .page-id-41044 .nh-testi__carousel-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .page-id-41044 .nh-testi__carousel-wrap::-webkit-scrollbar { display: none; }
    .page-id-41044 .nh-testi__carousel {
        transition: none;
        transform: none !important;
    }
    .page-id-41044 .nh-testi__card {
        width: calc(100vw - 72px);
        scroll-snap-align: start;
    }

    /* CTA Block mobile */
    .page-id-41044 .nh-cta__headline { font-size: 30px; }

    /* CTA Block new mobile */
    .page-id-41044 .nh-cta-block { padding: 0 16px 80px; }
    .page-id-41044 .nh-cta-block__card { height: 480px; }
    .page-id-41044 .nh-cta-block__bg img {
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center 40%;
    }
    .page-id-41044 .nh-cta-block__headline { font-size: 32px; max-width: 300px; }
    .page-id-41044 .nh-cta-block__copy { font-size: 16px; max-width: 280px; }

    /* Locations mobile */
    .page-id-41044 .nh-locations { padding: 50px 16px 80px; }
    .page-id-41044 .nh-locations__inner { gap: 32px; }
    .page-id-41044 .nh-locations__header {
        padding-bottom: 0;
        gap: 20px;
        align-items: center;
    }
    .page-id-41044 .nh-locations__headline {
        font-size: 24px;
        max-width: 280px;
        line-height: 1.2;
        text-wrap: balance;
    }
    .page-id-41044 .nh-locations__ctas {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .page-id-41044 .nh-locations__cta { gap: 10px; }
    .page-id-41044 .nh-locations__cta-label { font-size: 16px; }
    .page-id-41044 .nh-locations__tiles {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        width: 100%;
    }
    .page-id-41044 .nh-locations__tile {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Footer mobile — accordion */
    .page-id-41044 .nh-footer {
        padding: 40px 16px 80px;
    }
    .page-id-41044 .nh-footer__inner { gap: 60px; }
    .page-id-41044 .nh-footer__top { flex-direction: column; gap: 30px; }
    .page-id-41044 .nh-footer__newsletter { max-width: 100%; }
    .page-id-41044 .nh-footer__newsletter-label { font-size: 16px; }
    .page-id-41044 .nh-footer__nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .page-id-41044 .nh-footer__col {
        gap: 0;
        border-bottom: 1px solid #d0d0d0;
    }
    .page-id-41044 .nh-footer__col-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        padding: 16px 0;
        cursor: pointer;
        text-align: left;
    }
    .page-id-41044 .nh-footer__col-title {
        font-size: 20px;
        font-weight: 500;
        line-height: normal;
        color: #1152cc;
    }
    .page-id-41044 .nh-footer__col-chevron {
        display: block;
        flex-shrink: 0;
        width: 16px;
        height: 8px;
        transition: transform 0.2s ease;
    }
    .page-id-41044 .nh-footer__col.is-open .nh-footer__col-chevron {
        transform: rotate(180deg);
    }
    .page-id-41044 .nh-footer__col-list {
        display: none;
        padding: 0 0 16px;
        gap: 10px;
    }
    .page-id-41044 .nh-footer__col-list.is-open {
        display: flex;
    }
    .page-id-41044 .nh-footer__divider { display: none; }
}
