/* Page-specific styles for healthcare-expertise */
/* Page-specific styles */
      .he-hero {
        background:
          radial-gradient(circle at top right, rgba(0, 116, 198, 0.08), transparent 34%),
          #ffffff;
        padding: 120px 0 84px;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 116, 198, 0.08);
      }
      .he-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 45%);
        pointer-events: none;
      }
      .he-hero .container,
      .he-hero .row,
      .he-hero .col-lg-7,
      .he-hero .col-lg-5 {
        position: relative;
        z-index: 1;
      }
      .he-hero__sub {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--NKORR_Blue);
        margin-bottom: 16px;
      }
      .he-hero h1 {
        font-size: clamp(2.5rem, 4vw, 50px);
        font-weight: 600;
        color: #111;
        line-height: 1.12;
        margin-bottom: 20px;
      }
      .he-hero p {
        font-size: 0.97rem;
        color: #555;
        max-width: 580px;
        line-height: 1.75;
        margin-bottom: 32px;
      }
      .he-hero__panel {
        position: relative;
        min-height: 360px;
        padding: 24px;
      }
      .he-hero__cross {
        position: absolute;
        inset: 24px;
        pointer-events: none;
        z-index: 0;
      }
      .he-hero__cross::before,
      .he-hero__cross::after {
        content: "";
        position: absolute;
        background: rgba(0, 116, 198, 0.22);
      }
      .he-hero__cross::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        transform: translateX(-50%);
      }
      .he-hero__cross::after {
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        transform: translateY(-50%);
      }
      .he-hero__stats {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        min-height: 312px;
        z-index: 1;
      }
      .he-hero__stat {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        padding: 28px 26px;
      }
      .he-hero__stat--right {
        text-align: right;
      }
      .he-hero__stat strong {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--NKORR_Blue);
        line-height: 1;
      }
      .he-hero__stat strong sup {
        font-size: 0.5em;
        top: -0.55em;
        position: relative;
      }
      .he-hero__stat span {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #111;
        margin-top: 10px;
        display: block;
      }

      /* Domain deep-dives */
      .he-domain {
        padding: 72px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
      }
      .he-domain:last-of-type { border-bottom: none; }
      .he-domain--grey { background: #f8f9fc; }
      .he-domain--grey .domain-tag {
        background: #ffffff;
      }
      .he-domain--grey .he-domain__proof {
        background: #ffffff;
      }
      .he-domain__layout {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
        gap: 56px;
        align-items: start;
      }
      .he-domain__rail {
        position: sticky;
        top: 120px;
      }
      .he-domain__title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 800;
        color: #0d1f4a;
        margin-bottom: 16px;
        line-height: 1.25;
      }
      .he-domain__lead {
        font-size: 0.95rem;
        color: #5f6b7a;
        line-height: 1.75;
        margin: 0 0 24px;
      }
      .he-domain__proof {
        margin: 0 0 22px;
        padding: 14px 18px;
        background: rgba(0, 116, 198, 0.04);
        border-left: 3px solid var(--NKORR_Blue);
        border-radius: 10px;
      }
      .he-domain__proof-label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--NKORR_Blue);
        margin-bottom: 6px;
      }
      .he-domain__proof p {
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.6;
        color: #425466;
      }
      .he-domain__desc {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.75;
        margin-bottom: 24px;
      }
      .he-domain__bullets {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
      }
      .he-domain__bullets li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #444;
        line-height: 1.5;
      }
      .he-domain__bullets li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.8em;
        width: 10px;
        height: 1.5px;
        border-radius: 999px;
        background: var(--NKORR_Blue);
        transform: translateY(-50%);
      }
      .he-domain__body {
        min-width: 0;
      }

      /* Standards explained */
      .standards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      @media (max-width: 992px) {
        .standards-grid { grid-template-columns: repeat(2, 1fr); }
      }
      @media (max-width: 576px) {
        .standards-grid { grid-template-columns: 1fr; }
        .he-hero__stats { gap: 20px; }
      }
      .he-hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }
      .std-card {
        background: #ffffff;
        border: 1px solid rgba(0, 116, 198, 0.10);
        border-radius: 14px;
        padding: 24px 22px;
        box-shadow: 0 12px 32px rgba(0, 40, 80, 0.05);
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
      }
      .std-card:hover {
        border-color: rgba(0, 116, 198, 0.22);
        box-shadow: 0 16px 36px rgba(0, 95, 161, 0.10);
      }
      .std-card__code {
        display: block;
        color: var(--NKORR_Blue);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .std-card__name {
        font-size: 0.94rem;
        font-weight: 600;
        color: #0d1f4a;
        margin-bottom: 10px;
        line-height: 1.45;
      }
      .std-card__desc {
        font-size: 0.86rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
      }
      .he-cta {
        background:
          radial-gradient(circle at top right, rgba(0, 116, 198, 0.08), transparent 34%),
          #ffffff;
        border-top: 1px solid rgba(0, 116, 198, 0.08);
      }
      .he-cta__inner {
        max-width: 760px;
      }
      .he-cta__eyebrow {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--NKORR_Blue);
        margin-bottom: 18px;
      }
      .he-cta__title {
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.15;
        color: #111;
        margin-bottom: 18px;
      }
      .he-cta__desc {
        max-width: 620px;
        margin: 0 0 28px;
        color: #555;
        font-size: 1rem;
        line-height: 1.75;
      }
      .he-cta__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }
      @media (max-width: 767px) {
        .he-header-logo svg {
          width: 108px;
          height: auto;
        }
        .he-header-cta {
          padding: 10px 12px;
          font-size: 0.75rem;
        }
        .he-header-cta i {
          display: none;
        }
        .he-hero {
          padding: 96px 0 64px;
        }
        .he-hero__actions {
          flex-direction: column;
          align-items: stretch;
        }
        .he-hero__actions .button {
          width: 100%;
          margin-right: 0 !important;
          text-align: center;
        }
        .he-hero__stats {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          min-height: auto;
        }
        .he-hero__stat {
          padding: 18px 14px;
        }
        .he-hero__panel {
          min-height: auto;
          margin-top: 28px;
          padding: 0;
        }
        .he-cta__title {
          font-size: 1.9rem;
        }
        .he-domain__layout {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .he-domain__rail {
          position: static;
        }
      }

