  :root {
      --ink: #0E3F69;
      --harbor: #0E5D97;
      --cyan: #1CA9E1;
      --cyan-soft: #E4F5FC;
      --paper: #F6F8FA;
      --paper-2: #EEF2F5;
      --white: #FFFFFF;
      --slate: #55636F;
      --slate-2: #7C8A96;
      --stone: #DCE2E7;
      --stone-2: #C7CFD6;
      --shadow: 0 20px 50px -20px rgba(14, 63, 105, 0.25);
      --maxw: 1240px;
      --font: Arial, Helvetica, "Helvetica Neue", sans-serif;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
  }

  img {
      max-width: 100%;
      display: block;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 32px;
  }

  .eyebrow {
      font-family: var(--font);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
  }

  .eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--cyan);
      display: inline-block;
  }

  .eyebrow.on-light {
      color: var(--harbor);
  }

  .eyebrow.on-light::before {
      background: var(--harbor);
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: var(--font);
      font-weight: 800;
      line-height: 1.12;
      margin: 0;
      letter-spacing: -.01em;
      color: var(--ink);
  }

  p {
      line-height: 1.7;
      color: var(--slate);
      margin: 0;
      font-family: var(--font);
  }

  section {
      position: relative;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font);
      font-weight: 700;
      font-size: 14.5px;
      padding: 14px 26px;
      border-radius: 2px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      white-space: nowrap;
  }

  .btn:hover {
      transform: translateY(-2px);
  }

  .btn:active {
      transform: translateY(0);
  }

  .btn-primary {
      background: var(--ink);
      color: #fff;
  }

  .btn-primary:hover {
      background: var(--harbor);
      box-shadow: 0 12px 24px -10px rgba(14, 63, 105, 0.55);
  }

  .btn-cyan {
      background: var(--cyan);
      color: #04263f;
  }

  .btn-cyan:hover {
      background: #3fbde8;
      box-shadow: 0 12px 24px -10px rgba(28, 169, 225, 0.55);
  }

  .btn-ghost {
      border-color: rgba(255, 255, 255, .4);
      color: #fff;
  }

  .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .08);
  }

  .btn-line {
      border-color: var(--stone-2);
      color: var(--ink);
  }

  .btn-line:hover {
      border-color: var(--ink);
      box-shadow: 0 12px 24px -12px rgba(14, 63, 105, 0.3);
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
  }

  .btn svg {
      width: 14px;
      height: 14px;
      transition: transform .25s ease;
  }

  .btn:hover svg {
      transform: translateX(3px);
  }

  .step-num {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      color: var(--cyan);
      font-family: var(--font);
  }

  /* ---------- UTILITY BAR ---------- */
  .utility-bar {
      background: var(--ink);
      color: rgba(255, 255, 255, .78);
      font-size: 12.5px;
  }

  .utility-bar .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 38px;
  }

  .utility-left {
      display: flex;
      gap: 22px;
  }

  .utility-left a:hover {
      color: #fff;
  }

  .utility-right {
      display: flex;
      align-items: center;
      gap: 18px;
  }

  .utility-right .divider {
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, .25);
  }

  .utility-right a:hover {
      color: #fff;
  }

  .search-icon {
      width: 14px;
      height: 14px;
      display: inline-block;
  }

  /* ---------- HEADER ---------- */
  header {
      position: fixed;
      top: 38px;
      left: 0;
      right: 0;
      z-index: 1300;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 var(--stone);
      transition: box-shadow .35s ease, padding .35s ease, top .35s ease;
      padding: 18px 0;
  }

  header.solid {
      box-shadow: 0 4px 16px -8px rgba(14, 63, 105, 0.18), 0 1px 0 var(--stone);
      padding: 13px 0;
      top: 0;
  }

  .utility-bar.hide {
      margin-top: -38px;
  }

  header .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
  }

  .nav-group {
      display: flex;
      align-items: center;
      gap: 28px;
  }

  .logo-wrap {
      position: relative;
      display: inline-block;
  }

  .logo-mark {
      height: 28px;
      position: relative;
  }

  .logo-mark-dark {
      display: none;
  }

  nav {
      display: flex;
      align-items: center;
      gap: 4px;
  }

  nav a.nav-link {
      font-size: 14px;
      font-weight: 700;
      padding: 10px 13px;
      border-radius: 2px;
      color: var(--ink);
      transition: color .3s ease, background .3s ease;
      position: relative;
  }

  nav a.nav-link:hover {
      background: var(--paper-2);
  }

  nav a.nav-link.featured {
      color: var(--harbor);
  }

  nav a.nav-link::after {
      content: "";
      position: absolute;
      left: 13px;
      right: 13px;
      bottom: 4px;
      height: 2px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
  }

  nav a.nav-link.current::after {
      transform: scaleX(1);
  }

  .header-cta {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .header-cta .btn-line {
      border-color: var(--stone-2);
      color: var(--ink);
  }

  /* ---------- HAMBURGER TOGGLE ---------- */
  .nav-toggle {
      display: none;
      position: relative;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1200;
  }

  .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease, background .3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  }

  .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(14, 63, 105, .45);
      z-index: 1040;
      opacity: 0;
      transition: opacity .3s ease;
  }

  .nav-overlay.show {
      display: block;
      opacity: 1;
  }

  /* ---------- RESPONSIVE NAV ---------- */
  @media (max-width: 900px) {
      .utility-bar {
          display: none;
      }

      header {
          top: 0;
          z-index: 1300;
      }

      header .wrap {
          position: relative;
      }

      .nav-toggle {
          display: flex;
      }

      .nav-group {
          display: flex;
          position: fixed;
          top: 0;
          right: -100%;
          width: 78%;
          max-width: 340px;
          height: 100vh;
          background: var(--white);
          box-shadow: var(--shadow);
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          padding: 90px 28px 28px;
          gap: 8px;
          transition: right .35s ease;
          overflow-y: auto;
          z-index: 1050;
      }

      .nav-group.open {
          right: 0;
      }

      .nav-group nav {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          gap: 2px;
      }

      nav a.nav-link {
          width: 100%;
          padding: 14px 10px;
          border-bottom: 1px solid var(--stone);
      }

      nav a.nav-link::after {
          display: none;
      }

      .header-cta {
          width: 100%;
          margin-top: 18px;
      }

      .header-cta .btn {
          width: 100%;
          justify-content: center;
      }

      body.nav-open {
          overflow: hidden;
      }
  }

  @media (max-width: 480px) {
      .nav-group {
          width: 100%;
          max-width: 100%;
      }
  }

  /* ---------- HERO ---------- */
  .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      padding: 210px 0 0;
      background: #08243d;
  }

  .hero-scene {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
  }

  .hero-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 62%;
      display: block;
  }

  .hero-scrim {
      position: absolute;
      inset: 0;
      background:
          linear-gradient(180deg, rgba(6, 26, 46, .72) 0%, rgba(8, 33, 56, .42) 38%, rgba(5, 20, 35, .82) 100%),
          radial-gradient(circle at 15% 15%, rgba(28, 169, 225, .22), transparent 45%);
  }

  .ascent-strip {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 110px;
      display: flex;
      align-items: flex-end;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 55%);
      mask-image: linear-gradient(180deg, transparent 0%, black 55%);
  }

  .ascent-strip .bar {
      flex: 1;
      margin: 0 1px;
      background: linear-gradient(180deg, rgba(28, 169, 225, .65), rgba(28, 169, 225, .05));
      transform-origin: bottom;
      transform: scaleY(0);
      animation: rise 1.2s cubic-bezier(.2, .8, .2, 1) forwards;
  }

  @keyframes rise {
      to {
          transform: scaleY(1);
      }
  }

  .hero .wrap {
      position: relative;
      z-index: 2;
  }

  .hero-inner {
      max-width: 700px;
      padding-bottom: 56px;
  }

  .hero-eyebrow {
      color: var(--cyan);
  }

  .hero .reposition {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .55);
      margin-top: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
  }

  .hero .reposition .old {
      text-decoration: line-through;
      color: rgba(255, 255, 255, .4);
  }

  .hero .reposition .arrow {
      color: var(--cyan);
  }

  .hero .reposition .new {
      color: #fff;
      font-weight: 700;
  }

  .hero h1 {
      font-size: clamp(34px, 4.2vw, 54px);
      color: #fff;
      margin-top: 18px;
      max-width: 17ch;
      font-weight: 800;
  }

  .hero p.lead {
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      max-width: 48ch;
      margin-top: 18px;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 32px;
      flex-wrap: wrap;
  }

  .hero-tagline {
      margin-top: 40px;
      font-size: 14px;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .6);
      font-weight: 700;
  }

  .hero-tagline span {
      color: var(--cyan);
  }

  .stat-strip {
      border-top: 1px solid rgba(255, 255, 255, .18);
      padding: 24px 0;
      position: relative;
      z-index: 2;
      background: rgba(5, 22, 38, .55);
  }

  .stat-strip .wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
  }

  .stat .n {
      font-size: 25px;
      font-weight: 800;
      color: #fff;
      font-family: var(--font);
  }

  .stat .l {
      font-size: 11.5px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-top: 4px;
      font-weight: 600;
  }

  /* ---------- SECTION GENERIC ---------- */
  .section {
      padding: 110px 0;
  }

  .section-tight {
      padding: 80px 0;
  }

  .section-head {
      max-width: 660px;
      margin-bottom: 56px;
  }

  .section-head h2 {
      font-size: clamp(27px, 3.1vw, 40px);
      margin-top: 16px;
  }

  .section-head p {
      margin-top: 16px;
      font-size: 16px;
  }

  .bg-paper {
      background: var(--paper);
  }

  .bg-ink {
      background: var(--ink);
      color: #fff;
  }

  .bg-ink p {
      color: rgba(255, 255, 255, .68);
  }

  .bg-ink .section-head h2 {
      color: #fff;
  }

  /* ---------- NBSM DIFFERENCE (5 attributes) ---------- */
  .attr-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
  }

  .attr-card {
      background: #fff;
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 28px 24px;
      transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  }

  .attr-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--stone-2);
  }

  .attr-card .idx {
      font-size: 12px;
      color: var(--cyan);
      font-weight: 800;
  }

  .attr-card h4 {
      font-size: 17px;
      margin-top: 16px;
  }

  .attr-card p {
      margin-top: 10px;
      font-size: 13.5px;
  }

  /* ---------- AT A GLANCE ---------- */
  .about-grid {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 70px;
      align-items: center;
  }

  .about-copy p+p {
      margin-top: 16px;
  }

  .about-panel {
      background: var(--ink);
      border-radius: 2px;
      padding: 40px;
      color: #fff;
      box-shadow: var(--shadow);
  }

  .about-panel .row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .about-panel .row:last-child {
      border-bottom: none;
  }

  .about-panel .row .n {
      font-size: 26px;
      font-weight: 800;
      color: var(--cyan);
  }

  .about-panel .row .l {
      font-size: 12px;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      text-align: right;
      font-weight: 600;
  }

  /* ---------- SERVICES (6) ---------- */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
  }

  .service-card {
      background: #fff;
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 38px 32px;
      transition: background .3s ease, box-shadow .3s ease, transform .3s ease, border-color .3s ease;
      position: relative;
      z-index: 1;
  }

  .service-card:hover {
      background: var(--paper);
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--stone-2);
      z-index: 2;
  }

  .icon-badge {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--cyan-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background .3s ease;
  }

  .service-card:hover .icon-badge {
      background: var(--cyan);
  }

  .service-card:hover .icon-badge .icon {
      color: #fff;
  }

  .service-card .icon {
      width: 26px;
      height: 26px;
      color: var(--harbor);
      transition: color .3s ease;
  }

  .service-card h3 {
      font-size: 19px;
  }

  .service-card p {
      margin-top: 12px;
      font-size: 14px;
  }

  .service-card .more {
      margin-top: 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .service-card .more svg {
      width: 13px;
      height: 13px;
  }

  .service-card.flagship {
      background: var(--ink);
      color: #fff;
  }

  .service-card.flagship p {
      color: rgba(255, 255, 255, .68);
  }

  .service-card.flagship h3 {
      color: #fff;
  }

  .service-card.flagship .more {
      color: var(--cyan);
  }

  .service-card.flagship .tag {
      font-size: 10.5px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 800;
  }

  /* ---------- INDUSTRIES (9) ---------- */
  .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
  }

  .industry-tile {
      border: 1px solid var(--stone);
      border-radius: 2px;
      padding: 26px 22px;
      min-height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
      background: #fff;
  }

  .industry-tile:hover {
      border-color: var(--cyan);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
  }

  .industry-tile .num {
      font-size: 11px;
      color: var(--slate-2);
      font-weight: 700;
  }

  .industry-tile h4 {
      font-size: 16px;
      font-weight: 700;
      margin-top: 16px;
  }

  /* ---------- GLOBAL REACH (3 journeys) ---------- */
  .journeys {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 2px;
      overflow: hidden;
  }

  .journey {
      background: rgba(6, 36, 60, .55);
      padding: 38px 32px;
  }

  .journey .idx {
      font-size: 12px;
      letter-spacing: .05em;
      color: var(--cyan);
      font-weight: 800;
  }

  .journey h4 {
      color: #fff;
      font-size: 20px;
      margin-top: 16px;
      font-weight: 800;
  }

  .journey p {
      margin-top: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, .62);
  }

  .moore-badge {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .2);
      padding: 16px 24px;
      border-radius: 2px;
      margin-top: 28px;
      flex-wrap: wrap;
  }

  .moore-logo {
      height: 26px;
      display: block;
  }

  .moore-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, .22);
  }

  .moore-badge .n {
      font-size: 20px;
      font-weight: 800;
      color: var(--cyan);
  }

  .moore-badge .l {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .65);
      max-width: 38ch;
  }

  /* ---------- GLOBAL OUTSOURCING ---------- */
  .outsourcing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
  }

  .outsource-card {
      background: #fff;
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 40px 36px;
      transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  }

  .outsource-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--stone-2);
  }

  .outsource-card h3 {
      font-size: 22px;
  }

  .outsource-card p.desc {
      margin-top: 14px;
      font-size: 14.5px;
  }

  .platform-row {
      display: flex;
      gap: 14px;
      margin-top: 22px;
      flex-wrap: wrap;
  }

  .platform-cell {
      flex: 1;
      min-width: 120px;
      background: var(--paper);
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 20px 10px;
      text-align: center;
      font-size: 13.5px;
      font-weight: 800;
      color: var(--slate);
      transition: border-color .25s ease, transform .25s ease;
  }

  .platform-cell:hover {
      border-color: var(--cyan);
      transform: translateY(-2px);
  }

  /* ---------- DOING BUSINESS IN NEPAL (microsite teaser) ---------- */
  .nepal-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }

  .nepal-step {
      position: relative;
      padding-top: 26px;
      border-top: 2px solid var(--ink);
  }

  .nepal-step .num {
      font-size: 28px;
      color: var(--cyan);
      font-weight: 800;
  }

  .nepal-step h4 {
      margin-top: 14px;
      font-size: 17px;
  }

  .nepal-step p {
      margin-top: 10px;
      font-size: 13.5px;
  }

  .nepal-cta {
      margin-top: 50px;
      background: var(--ink);
      color: #fff;
      border-radius: 2px;
      padding: 34px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
  }

  .nepal-cta p {
      color: rgba(255, 255, 255, .75);
      font-size: 16px;
      font-weight: 700;
  }

  /* ---------- FEATURED INSIGHTS ---------- */
  .insights-flagship {
      background: var(--ink);
      color: #fff;
      padding: 0;
  }

  .if-head {
      padding: 70px 0 40px;
  }

  .if-head .eyebrow {
      color: var(--cyan);
  }

  .if-head h2 {
      color: #fff;
      font-size: clamp(26px, 3vw, 38px);
      margin-top: 16px;
      max-width: 20ch;
  }

  .if-head p {
      color: rgba(255, 255, 255, .65);
      margin-top: 14px;
      max-width: 56ch;
  }

  .if-cadence {
      display: flex;
      gap: 30px;
      margin-top: 22px;
      flex-wrap: wrap;
  }

  .if-cadence .c {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .55);
  }

  .if-cadence .c b {
      color: var(--cyan);
      font-size: 15px;
      display: block;
  }

  .if-stage {
      position: relative;
      min-height: 420px;
      border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .if-panel {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 0;
  }

  .if-panel.active {
      display: grid;
  }

  .if-visual {
      background: linear-gradient(135deg, var(--harbor), #072b48);
      position: relative;
      overflow: hidden;
      min-height: 380px;
  }

  .if-visual svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
  }

  .if-content {
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .if-content .tag {
      font-size: 11.5px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 800;
  }

  .if-content h3 {
      color: #fff;
      font-size: clamp(22px, 2.4vw, 30px);
      margin-top: 16px;
      max-width: 20ch;
  }

  .if-content p {
      color: rgba(255, 255, 255, .68);
      margin-top: 16px;
      font-size: 15px;
      max-width: 48ch;
  }

  .if-content .date {
      margin-top: 22px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .45);
      font-weight: 600;
  }

  .if-content .btn {
      margin-top: 26px;
      align-self: flex-start;
  }

  .if-tabs {
      display: flex;
      border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .if-tab {
      flex: 1;
      text-align: left;
      padding: 22px 28px;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, .55);
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      border-right: 1px solid rgba(255, 255, 255, .14);
      position: relative;
      transition: color .25s ease, background .25s ease;
  }

  .if-tab:last-child {
      border-right: none;
  }

  .if-tab:hover {
      background: rgba(255, 255, 255, .05);
  }

  .if-tab.active {
      color: #fff;
      background: rgba(255, 255, 255, .06);
  }

  .if-tab .bar {
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      background: var(--cyan);
      width: 0;
  }

  .if-tab.active .bar {
      width: 100%;
      transition: width 6s linear;
  }

  .if-more {
      padding: 44px 0 70px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, .14);
      flex-wrap: wrap;
      gap: 16px;
  }

  .if-more p {
      color: rgba(255, 255, 255, .55);
      font-size: 14px;
  }

  /* ---------- PROOF & PEOPLE (case studies) ---------- */
  .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  .case-card {
      border: 1px solid var(--stone);
      border-radius: 2px;
      padding: 30px;
      transition: box-shadow .25s ease, transform .25s ease;
  }

  .case-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
  }

  .case-card .tag {
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 800;
  }

  .case-card h4 {
      font-size: 18px;
      margin-top: 14px;
  }

  .case-card .steps {
      display: flex;
      gap: 6px;
      margin-top: 18px;
      flex-wrap: wrap;
  }

  .case-card .steps span {
      font-size: 11px;
      font-weight: 700;
      color: var(--slate-2);
      background: var(--paper);
      padding: 5px 9px;
      border-radius: 2px;
  }

  .partner-note {
      margin-top: 40px;
      border: 1px dashed var(--stone-2);
      border-radius: 2px;
      padding: 26px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .partner-note p {
      font-size: 14.5px;
  }

  .partner-note strong {
      color: var(--ink);
  }

  /* ---------- LEADERS ---------- */


  /* ---------- CAREER BANNER ---------- */
  .career-banner {
      background: linear-gradient(100deg, var(--harbor), var(--ink) 70%);
      color: #fff;
      padding: 80px 0;
  }

  .career-banner .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
  }

  .career-banner h2 {
      color: #fff;
      font-size: clamp(25px, 3vw, 36px);
      max-width: 16ch;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
      background: var(--ink);
      color: #fff;
      padding: 100px 0;
      text-align: center;
  }

  .final-cta .step-num {
      color: var(--cyan);
  }

  .final-cta h2 {
      color: #fff;
      font-size: clamp(30px, 4vw, 48px);
      margin-top: 16px;
      max-width: 18ch;
      margin-left: auto;
      margin-right: auto;
  }

  .final-cta .actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 36px;
      flex-wrap: wrap;
  }

  /* ---------- CONTACT ---------- */
  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
  }

  .office {
      border-top: 1px solid var(--stone);
      padding: 26px 0;
  }

  .office h4 {
      font-size: 16.5px;
      font-weight: 700;
  }

  .office p {
      margin-top: 8px;
      font-size: 14.5px;
  }

  .office .label {
      font-size: 11px;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 700;
  }

  form.cform {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .cform .two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .cform input,
  .cform textarea,
  .cform select {
      width: 100%;
      border: 1px solid var(--stone-2);
      border-radius: 2px;
      padding: 13px 14px;
      font-family: var(--font);
      font-size: 14.5px;
      background: #fff;
      color: var(--ink);
  }

  .cform input:focus,
  .cform textarea:focus,
  .cform select:focus {
      outline: 2px solid var(--cyan);
      outline-offset: 1px;
      border-color: var(--cyan);
  }

  .cform label {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: -8px;
  }

  /* ---------- FOOTER ---------- */
  footer {
      background: #081F35;
      color: rgba(255, 255, 255, .7);
      padding: 70px 0 30px;
  }

  .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-top h5 {
      font-size: 12px;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: #fff;
      margin: 0 0 18px;
      font-weight: 700;
  }

  .footer-top ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 11px;
  }

  .footer-top a {
      font-size: 14px;
      color: rgba(255, 255, 255, .68);
      transition: color .2s ease;
  }

  .footer-top a:hover {
      color: var(--cyan);
  }

  section[id] {
      scroll-margin-top: 96px;
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      padding-top: 26px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .45);
      flex-wrap: wrap;
      gap: 12px;
  }

  /* ---------- SECTION INDEX MARKER ---------- */
  .move-marker {
      position: absolute;
      top: 24px;
      right: 32px;
      font-size: 11px;
      font-weight: 800;
      color: var(--slate-2);
      letter-spacing: .06em;
  }

  .bg-ink .move-marker,
  .bg-dark .move-marker {
      color: rgba(255, 255, 255, .35);
  }

  /* ---------- REVEAL ---------- */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .8s cubic-bezier(.16, .84, .24, 1), transform .8s cubic-bezier(.16, .84, .24, 1);
  }

  .reveal.in {
      opacity: 1;
      transform: none;
  }

  @media (max-width:980px) {

      .about-grid,
      .contact-grid {
          grid-template-columns: 1fr;
      }

      .attr-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .services-grid {
          grid-template-columns: 1fr;
      }

      .industry-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .journeys {
          grid-template-columns: 1fr;
      }

      .outsourcing-grid {
          grid-template-columns: 1fr;
      }

      .platform-row {
          flex-wrap: wrap;
      }

      .platform-cell {
          flex: 1 1 33%;
      }

      .nepal-steps {
          grid-template-columns: repeat(2, 1fr);
      }

      .case-grid {
          grid-template-columns: 1fr;
      }

      .footer-top {
          grid-template-columns: 1fr 1fr;
      }

      .if-panel.active {
          grid-template-columns: 1fr;
      }

      .if-visual {
          min-height: 220px;
      }

      .if-content {
          padding: 40px 28px;
      }

      .if-tabs {
          flex-direction: column;
      }

      .if-tab {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, .14);
      }

      nav {
          display: none;
      }

      .utility-left {
          display: none;
      }

      .cform .two {
          grid-template-columns: 1fr;
      }

      .move-marker {
          display: none;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      .reveal {
          transition: none;
          opacity: 1;
          transform: none;
      }
  }

  /* ---------- INNER PAGE HEADER ---------- */
  .page-header {
      background: linear-gradient(180deg, #0A3358 0%, var(--ink) 60%, #082A48 100%);
      color: #fff;
      padding: 190px 0 70px;
      position: relative;
      overflow: hidden;
  }

  .page-header .wrap {
      position: relative;
      z-index: 2;
  }

  .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 18px;
      flex-wrap: wrap;
  }

  .breadcrumb a {
      color: rgba(255, 255, 255, .75);
  }

  .breadcrumb a:hover {
      color: var(--cyan);
  }

  .page-header h1 {
      font-size: clamp(30px, 4vw, 46px);
      color: #fff;
      max-width: 22ch;
      font-weight: 800;
  }

  .page-header p.lead {
      margin-top: 16px;
      max-width: 60ch;
      color: rgba(255, 255, 255, .72);
      font-size: 16px;
  }

  .page-header .lead,
  .page-header .lead * {
      color: rgba(255, 255, 255, .72) !important;
  }

  .header-pills {
      display: flex;
      gap: 10px;
      margin-top: 30px;
      flex-wrap: wrap;
  }

  .header-pill {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 20px;
      padding: 8px 18px;
      transition: all .25s ease;
  }

  .header-pill:hover {
      border-color: var(--cyan);
      color: #fff;
      background: rgba(28, 169, 225, .12);
  }

  /* ---------- INDUSTRY INDEX BADGE (polish) ---------- */
  .industry-tile .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--cyan-soft);
      font-size: 12px;
      font-weight: 800;
      color: var(--harbor);
      transition: background .25s ease, color .25s ease;
  }

  .industry-tile:hover .num {
      background: var(--cyan);
      color: #fff;
  }

  /* ---------- DETAIL BLOCK ALTERNATING BACKGROUND ---------- */
  .detail-block.alt {
      background: var(--paper);
  }

  /* ---------- DETAIL CARD (services/industries/insights detail pages) ---------- */
  .detail-block {
      padding: 70px 0;
      border-bottom: 1px solid var(--stone);
  }

  .detail-block:last-of-type {
      border-bottom: none;
  }

  .detail-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 50px;
      align-items: start;
  }

  .detail-grid .tag-num {
      font-size: 13px;
      font-weight: 800;
      color: var(--cyan);
  }

  .detail-grid h2 {
      margin-top: 12px;
      font-size: 26px;
  }

  .detail-grid h3 {
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--harbor);
      margin-top: 26px;
  }

  .detail-grid ul {
      margin: 14px 0 0;
      padding-left: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .detail-grid ul li {
      font-size: 14.5px;
      color: var(--slate);
      padding-left: 18px;
      position: relative;
  }

  .detail-grid ul li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--cyan);
  }

  /* ---------- SIMPLE CARD LIST (careers, insights list) ---------- */
  .simple-card {
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 30px;
      transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  }

  .simple-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--stone-2);
  }

  /* ---------- PERSON CARD (about/leadership) ---------- */
  .person-card {
      background: #fff;
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 28px 24px;
      transition: box-shadow .3s ease, transform .3s ease;
  }

  .person-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
  }

  .person-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--harbor), var(--cyan));
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
  }

  .person-card h4 {
      font-size: 16px;
      font-weight: 700;
  }

  .person-card .role {
      font-size: 11.5px;
      color: var(--cyan);
      margin-top: 6px;
      letter-spacing: .02em;
      text-transform: uppercase;
      font-weight: 700;
  }

  @media (max-width:980px) {
      .detail-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ---------- PAGE HEADER: subtle texture for depth ---------- */
  .page-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          radial-gradient(circle at 85% 20%, rgba(28, 169, 225, .16), transparent 45%),
          radial-gradient(circle at 10% 90%, rgba(28, 169, 225, .10), transparent 40%);
      pointer-events: none;
  }

  .page-header {
      border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  /* ---------- DETAIL BLOCK: alternating rhythm ---------- */
  .detail-block:nth-of-type(even) {
      background: var(--paper);
  }

  .detail-block {
      transition: background .2s ease;
  }

  /* ---------- RESOURCE TABS (Insights/Resources hub) ---------- */
  .res-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 38px;
  }

  .res-tab {
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 700;
      color: var(--slate);
      background: #fff;
      border: 1px solid var(--stone);
      border-radius: 20px;
      padding: 10px 18px;
      cursor: pointer;
      transition: all .25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .res-tab:hover {
      border-color: var(--cyan);
      color: var(--harbor);
  }

  .res-tab.active {
      background: var(--ink);
      border-color: var(--ink);
      color: #fff;
  }

  .res-count {
      font-size: 11px;
      font-weight: 800;
      background: rgba(0, 0, 0, .08);
      border-radius: 10px;
      padding: 2px 7px;
      color: inherit;
  }

  .res-tab.active .res-count {
      background: rgba(255, 255, 255, .18);
  }

  .res-panel {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .res-item {
      padding: 26px 28px;
  }

  .res-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.4;
  }

  .res-date {
      margin-top: 6px;
      font-size: 12px;
      color: var(--cyan);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .03em;
  }

  .res-excerpt {
      margin-top: 12px;
      font-size: 14.5px;
      color: var(--slate);
      line-height: 1.65;
  }

  /* ---------- GLOBAL PAGE: proper light-card journey style (no inline overrides) ---------- */
  .journeys.on-light {
      background: var(--stone);
      border-color: var(--stone);
  }

  .journey.card-light {
      background: #fff;
      transition: box-shadow .3s ease, transform .3s ease;
  }

  .journey.card-light:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
  }

  .journey.card-light .idx {
      color: var(--harbor);
  }

  .journey.card-light h4 {
      color: var(--ink);
  }

  .journey.card-light p {
      color: var(--slate);
  }

  /* ---------- INDUSTRIES: accent top border on hover ---------- */
  .industry-tile {
      border-top: 3px solid transparent;
  }

  .industry-tile:hover {
      border-top-color: var(--cyan);
  }

  /* ---------- CAREERS: values grid ---------- */
  .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
  }

  .value-card {
      border: 1px solid var(--stone);
      border-radius: 3px;
      padding: 28px;
      transition: box-shadow .3s ease, transform .3s ease;
  }

  .value-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
  }

  .value-card .idx {
      font-size: 12px;
      font-weight: 800;
      color: var(--cyan);
  }

  .value-card h4 {
      margin-top: 12px;
      font-size: 17px;
      font-weight: 700;
  }

  .value-card p {
      margin-top: 10px;
      font-size: 14px;
      color: var(--slate);
  }

  @media (max-width:980px) {
      .values-grid {
          grid-template-columns: 1fr;
      }

      .res-tabs {
          gap: 8px;
      }
  }

  .map-wrapper {
      width: 100%;
      overflow: hidden;
  }

  .map-wrapper iframe {
      width: 100%;
      min-height: 450px;
      border: 0;
      display: block;
  }

  .contact-map {
      margin-top: 60px;
  }

  @media (max-width: 768px) {
      .contact-map {
          margin-top: 40px;
      }
  }

  /* ============ SERVICE DETAIL PAGE (extends .page-header / .detail-grid) ============ */

  /* Optional photo layer behind .page-header, for a service hero image */
  .page-header.has-photo {
      background: none;
  }

  .page-header.has-photo .ph-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-size: cover;
      background-position: center;
  }

  .page-header.has-photo .ph-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, #0A3358cc 0%, var(--ink)cc 60%, #082A48f0 100%);
  }

  .page-header .ph-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 48px;
      align-items: start;
  }

  @media (max-width:980px) {
      .page-header .ph-grid {
          grid-template-columns: 1fr;
      }
  }

  .icon-badge.on-dark {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .22);
  }

  .icon-badge.on-dark .icon {
      color: var(--cyan);
  }

  .ph-thumb {
      height: 340px;
      /* fixed, instead of aspect-ratio driven by column width */
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .22);
      background: var(--harbor);
  }

  .ph-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Stat strip variant for inner pages — reuses .stat/.stat .n/.stat .l as-is */
  .stat-strip.on-harbor {
      background: var(--harbor);
      border-top: none;
  }

  /* Article + sticky sidebar layout */
  .sd-body-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 50px;
      align-items: start;
  }

  @media (max-width:980px) {
      .sd-body-grid {
          grid-template-columns: 1fr;
      }
  }

  .sd-side {
      position: sticky;
      top: 110px;
      display: flex;
      flex-direction: column;
      gap: 22px;
  }

  .sd-onpage {
      border: 1px solid var(--stone);
      border-radius: 2px;
      padding: 20px;
  }

  .sd-onpage .lbl {
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--slate-2);
      margin-bottom: 12px;
      display: block;
  }

  .sd-onpage a {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      padding: 8px 0;
      border-bottom: 1px solid var(--stone);
  }

  .sd-onpage a:last-child {
      border-bottom: none;
  }

  .sd-onpage a:hover {
      color: var(--cyan);
  }

  .sd-contact-card {
      border-radius: 2px;
      padding: 24px;
      background: var(--ink);
      color: #fff;
      background-image: radial-gradient(120% 140% at 100% 0%, var(--harbor) 0%, var(--ink) 60%);
  }

  .sd-contact-card .lbl {
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
      display: block;
  }

  .sd-contact-card h4 {
      color: #fff;
      font-size: 17px;
  }

  .sd-contact-card .btn {
      width: 100%;
      justify-content: center;
  }

  /* Related-services link list, living inside the dark .sd-contact-card box */
  .sd-contact-card .related-list {
      display: flex;
      flex-direction: column;
  }

  .sd-contact-card .related-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .sd-contact-card .related-list a:last-child {
      border-bottom: none;
  }

  .sd-contact-card .related-list a:hover {
      color: var(--cyan);
  }

  .sd-contact-card .related-list a svg {
      width: 14px;
      height: 14px;
      opacity: .6;
  }

  /* Child/sub-service card — thumbnail + text, distinct from the icon-based .service-card */
  #sd-children {
      padding-top: 40px;
  }

  .sd-children-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
  }

  @media (max-width:760px) {
      .sd-children-grid {
          grid-template-columns: 1fr;
      }
  }

  .sd-child-card {
      display: flex;
      gap: 18px;
      padding: 20px;
      border: 1px solid var(--stone);
      border-radius: 3px;
      background: #fff;
      transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  }

  .sd-child-card:hover {
      border-color: var(--stone-2);
      box-shadow: var(--shadow);
      transform: translateY(-3px);
  }

  .sd-child-thumb {
      flex: 0 0 84px;
      height: 84px;
      border-radius: 2px;
      overflow: hidden;
      background: var(--paper);
  }

  .sd-child-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .sd-child-body .tag {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--cyan);
  }

  .sd-child-body h3 {
      font-size: 16.5px;
      margin: 6px 0 6px;
  }

  .sd-child-body p {
      font-size: 13.5px;
      margin-bottom: 10px;
  }

  .sd-child-body .more {
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .sd-child-body .more svg {
      width: 13px;
      height: 13px;
  }

  .about-media {
      border-radius: 2px;
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .about-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
  }

  .db-thumb {
      border-radius: 2px;
      overflow: hidden;
      margin-top: 20px;
      box-shadow: var(--shadow);
  }

  .db-thumb img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
  }

  .db-excerpt {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.6;
      padding-left: 20px;
      border-left: 3px solid var(--cyan);
      margin-bottom: 24px;
  }

  .db-content p+p {
      margin-top: 14px;
  }

  .section+.detail-block {
      padding-top: 40px;
  }

  .db-excerpt {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.6;
      padding-left: 20px;
      border-left: 3px solid var(--cyan);
      margin-top: 8px;
      margin-bottom: 24px;
  }

  .detail-grid>div:last-child .btn {
      margin-top: 20px;
  }

  /* ============================================
           CAREER PAGE
           ============================================ */

  .career-intro {
      background: var(--paper, #f5f7f8);
  }

  .career-intro-card {
      background: #fff;
      padding: clamp(28px, 4vw, 52px);
      box-shadow: var(--shadow);
  }

  .career-intro-card h2 {
      margin-top: 16px;
      margin-bottom: 22px;
  }

  .career-intro-content {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
  }

  .career-intro-content p:last-child {
      margin-bottom: 0;
  }


  /* ============================================
           VACANCY ACCORDION
           ============================================ */

  .career-accordion {
      margin-top: 34px;
      border-top: 1px solid rgba(15, 55, 90, .15);
  }

  .career-accordion li {
      border-bottom: 1px solid rgba(15, 55, 90, .15);
  }

  .career-accordion .uk-accordion-title {
      display: block;
      padding: 25px 42px 20px 0;
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
  }

  /* Space between separator line and next vacancy */
  .career-accordion li+li {
      padding-top: 10px;
  }

  .career-accordion .uk-accordion-content {
      padding: 0 0 22px 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
  }

  .career-accordion .uk-accordion-title::before {
      margin-top: 3px;
  }


  /* ============================================
           GAP BETWEEN VACANCY & INFORMATION SECTION
           ============================================ */

  .career-intro+.career-detail {
      padding-top: 30px;
  }


  /* ============================================
           ASSOCIATED CAREER SECTIONS
           IMAGE : CONTENT = 1 : 3
           CONTENT : IMAGE = 3 : 1
           ============================================ */

  .career-detail {
      background: var(--paper, #f5f7f8);
  }

  .career-detail .detail-grid {
      display: grid;
      gap: 50px;
      align-items: center;
  }

  /* Image left - Content right */
  .career-detail .detail-grid.image-content {
      grid-template-columns: 1fr 3fr;
  }

  /* Content left - Image right */
  .career-detail .detail-grid.content-image {
      grid-template-columns: 3fr 1fr;
  }

  .career-detail .detail-grid>div {
      min-width: 0;
  }


  /* ============================================
           CAREER IMAGE
           ============================================ */

  .career-detail .db-thumb {
      margin-top: 0;
      width: 100%;
      overflow: hidden;
      border-radius: 2px;
      box-shadow: var(--shadow);
  }

  .career-detail .db-thumb img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
  }


  /* ============================================
           CAREER CONTENT
           ============================================ */

  .career-detail h2 {
      margin-bottom: 18px;
  }

  .career-detail-content {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
  }

  .career-detail-content p+p {
      margin-top: 14px;
  }

  /* ============================================
       REDUCE GAP BETWEEN CHILD CAREER POSTS
       ============================================ */

  .career-detail {
      padding-top: 40px;
      padding-bottom: 40px;
  }

  .career-detail+.career-detail {
      padding-top: 20px;
  }

  /* Keep the first career section closer to vacancy section */
  .career-intro+.career-detail {
      padding-top: 30px;
  }

  /* ============================================
           MOBILE
           ============================================ */

  @media (max-width: 760px) {

      .career-intro-card {
          padding: 26px 22px;
      }

      .career-accordion .uk-accordion-title {
          font-size: 16px;
      }

      .career-detail .detail-grid,
      .career-detail .detail-grid.image-content,
      .career-detail .detail-grid.content-image {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .career-intro+.career-detail {
          padding-top: 20px;
      }

  }

  /* ============================================
                   LEADERSHIP / TEAM
                   ============================================ */

  .leadership-section {
      background: var(--paper, #f5f7f8);
  }

  .leadership-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
  }

  .leader-card {
      background: #fff;
      border: 1px solid rgba(15, 55, 90, .10);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
  }

  .leader-card:hover {
      transform: translateY(-4px);
  }

  .leader-card-top {
      display: grid;
      grid-template-columns: 220px 1fr;
      min-height: 250px;
  }

  .leader-image {
      width: 220px;
      height: 250px;
      overflow: hidden;
      background: #eef2f4;
      flex-shrink: 0;
  }

  .leader-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
  }

  .leader-info {
      padding: 28px 28px 24px;
  }

  .leader-info h3 {
      margin: 8px 0 5px;
      color: var(--ink);
      font-size: 24px;
      line-height: 1.2;
  }

  .leader-role {
      color: var(--cyan);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  /* ============================================
                   CONTACT DETAILS
                   ============================================ */

  .leader-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .leader-contact a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.5;
      word-break: break-word;
  }

  .leader-contact a:hover {
      color: var(--cyan);
  }

  .leader-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
  }

  .leader-contact-icon {
      width: 18px;
      min-width: 18px;
      margin-top: 2px;
      color: var(--cyan);
  }

  /* ============================================
                   BIOGRAPHY
                   ============================================ */

  .leader-brief {
      padding: 24px 28px 26px;
      border-top: 1px solid rgba(15, 55, 90, .10);
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
  }

  .leader-brief p {
      margin-top: 0;
  }

  .leader-brief p+p {
      margin-top: 12px;
  }

  /* ============================================
                   SOCIAL ICONS
                   ============================================ */
  .leader-social {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
  }

  .leader-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      color: #888;
      text-decoration: none;
      border: none;
      background: transparent;
      transition: color .2s ease;
  }

  .leader-social a:hover {
      color: var(--cyan);
  }

  .leader-social svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
      display: block;
  }

  /* ============================================
                   RESPONSIVE
                   ============================================ */

  @media (max-width: 1000px) {

      .leadership-grid {
          grid-template-columns: 1fr;
      }

      .leader-card-top {
          grid-template-columns: 200px 1fr;
      }

  }

  @media (max-width: 600px) {

      .leadership-grid {
          grid-template-columns: 1fr;
      }

      .leader-card-top {
          grid-template-columns: 1fr;
      }

      .leader-image {
          height: 300px;
          min-height: 0;
      }

      .leader-info {
          padding: 24px 22px;
      }

      .leader-brief {
          padding: 22px;
      }

  }

  /* ============================================
           DEFAULT CONTENT PAGE
           ============================================ */

  .default-content-section {
      background: var(--paper, #f5f7f8);
  }

  .default-content {
      background: #fff;
      padding: clamp(30px, 5vw, 60px);
      box-shadow: var(--shadow);
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
  }

  /* Headings */

  .default-content h1,
  .default-content h2,
  .default-content h3,
  .default-content h4,
  .default-content h5,
  .default-content h6 {
      color: var(--ink);
      line-height: 1.3;
      margin-top: 32px;
      margin-bottom: 14px;
  }

  .default-content h1:first-child,
  .default-content h2:first-child,
  .default-content h3:first-child,
  .default-content h4:first-child {
      margin-top: 0;
  }

  .default-content h2 {
      font-size: clamp(24px, 3vw, 34px);
  }

  .default-content h3 {
      font-size: 24px;
  }

  .default-content h4 {
      font-size: 20px;
  }

  /* Paragraphs */

  .default-content p {
      margin-bottom: 16px;
  }

  .default-content p:last-child {
      margin-bottom: 0;
  }

  /* Links */

  .default-content a {
      color: var(--cyan);
      text-decoration: none;
  }

  .default-content a:hover {
      text-decoration: underline;
  }

  /* Lists */

  .default-content ul,
  .default-content ol {
      margin: 18px 0;
      padding-left: 25px;
  }

  .default-content li {
      margin-bottom: 8px;
  }

  /* Images */

  .default-content img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 24px auto;
  }

  /* Tables */

  .default-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 15px;
  }

  .default-content th,
  .default-content td {
      padding: 12px 14px;
      border: 1px solid rgba(15, 55, 90, .12);
      text-align: left;
  }

  .default-content th {
      background: var(--paper, #f5f7f8);
      color: var(--ink);
      font-weight: 700;
  }

  /* Blockquote */

  .default-content blockquote {
      margin: 28px 0;
      padding: 18px 22px;
      border-left: 3px solid var(--cyan);
      background: var(--paper, #f5f7f8);
      color: var(--ink);
  }

  /* Horizontal line */

  .default-content hr {
      border: 0;
      border-top: 1px solid rgba(15, 55, 90, .12);
      margin: 32px 0;
  }

  /* ============================================
           RESPONSIVE
           ============================================ */

  @media (max-width: 760px) {

      .default-content {
          padding: 26px 22px;
          font-size: 15px;
      }

      .default-content h2 {
          font-size: 26px;
      }

      .default-content h3 {
          font-size: 22px;
      }

      .default-content table {
          display: block;
          overflow-x: auto;
          white-space: nowrap;
      }

  }

  /* ============================================
   RESOURCES / CONTENT CARDS
   ============================================ */

  #reach .journeys {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(15, 55, 90, .15);
      background: #fff;
  }

  #reach .journey {
      display: block;
      padding: 38px 32px;
      min-height: 190px;

      background: #fff;
      color: var(--ink);

      text-decoration: none;

      border-right: 1px solid rgba(15, 55, 90, .15);
      border-bottom: 1px solid rgba(15, 55, 90, .15);

      transition: background .2s ease, transform .2s ease;
  }

  #reach .journey:nth-child(3n) {
      border-right: none;
  }

  #reach .journey:nth-last-child(-n+3) {
      border-bottom: none;
  }

  #reach .journey:hover {
      background: #f7fafc;
      color: var(--ink);
  }

  #reach .journey .idx {
      margin-bottom: 16px;

      color: var(--harbor) !important;

      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
  }

  #reach .journey h4 {
      margin: 0 0 10px;

      color: var(--ink) !important;

      font-size: 22px;
      line-height: 1.3;
      font-weight: 700;
  }

  #reach .journey p {
      margin: 0;

      color: var(--slate) !important;

      font-size: 15px;
      line-height: 1.7;
  }

  #reach .journey p:last-child {
      margin-bottom: 0;
  }

  #reach .journey:nth-child(odd) {
      background: var(--harbor);
      color: #fff;
  }

  #reach .journey:nth-child(odd) h4 {
      color: #fff !important;
  }

  #reach .journey:nth-child(odd) p {
      color: rgba(255, 255, 255, 0.85) !important;
  }

  #reach .journey:nth-child(odd) .idx {
      color: var(--cyan) !important;
  }

  #reach .journey:nth-child(odd):hover {
      background: var(--harbor);
      color: #fff;
  }

  /* ---------- LEADER BRIEF: READ MORE ---------- */
  .leader-brief-content {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: max-height .3s ease;
  }

  .leader-brief-content.expanded {
      display: block;
      -webkit-line-clamp: unset;
  }

  .leader-brief-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      background: none;
      border: none;
      padding: 0;
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 700;
      color: var(--harbor);
      cursor: pointer;
  }

  .leader-brief-toggle:hover {
      color: var(--cyan);
  }

  .leader-brief-toggle svg {
      width: 14px;
      height: 14px;
      transition: transform .25s ease;
  }

  .leader-brief-toggle.expanded svg {
      transform: rotate(180deg);
  }

  /* ============================================
   RESPONSIVE
   ============================================ */

  @media (max-width: 900px) {

      #reach .journeys {
          grid-template-columns: repeat(2, 1fr);
      }

      #reach .journey:nth-child(3n) {
          border-right: 1px solid rgba(15, 55, 90, .15);
      }

      #reach .journey:nth-child(2n) {
          border-right: none;
      }

      #reach .journey:nth-last-child(-n+3) {
          border-bottom: 1px solid rgba(15, 55, 90, .15);
      }

      #reach .journey:nth-last-child(-n+2) {
          border-bottom: none;
      }

  }

  @media (max-width: 600px) {

      #reach .journeys {
          grid-template-columns: 1fr;
      }

      #reach .journey,
      #reach .journey:nth-child(2n),
      #reach .journey:nth-child(3n) {
          border-right: none;
          border-bottom: 1px solid rgba(15, 55, 90, .15);
      }

      #reach .journey:last-child {
          border-bottom: none;
      }

      #reach .journey {
          padding: 30px 24px;
      }

  }

  /* ============================================
   THEME PAGINATION
   ============================================ */

  .theme-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 45px;
      padding-top: 28px;
      border-top: 1px solid rgba(15, 55, 90, .12);
  }

  /* Previous / Next */

  .pagination-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;

      color: var(--ink);
      text-decoration: none;

      font-size: 14px;
      font-weight: 700;

      transition: color .2s ease;
  }

  .pagination-btn:hover {
      color: var(--cyan);
  }

  .pagination-btn svg {
      width: 17px;
      height: 17px;
  }

  .pagination-btn.disabled {
      color: #b8c0c6;
      cursor: not-allowed;
  }


  /* Page numbers */

  .pagination-pages {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .pagination-page {
      width: 38px;
      height: 38px;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      color: var(--ink);
      text-decoration: none;

      font-size: 14px;
      font-weight: 700;

      border: 1px solid rgba(15, 55, 90, .14);
      background: #fff;

      transition:
          background .2s ease,
          color .2s ease,
          border-color .2s ease;
  }

  .pagination-page:hover {
      color: #fff;
      background: var(--harbor);
      border-color: var(--harbor);
  }


  /* Active page */

  .pagination-page.active {
      color: #fff;
      background: var(--cyan);
      border-color: var(--cyan);
  }


  /* Dots */

  .pagination-dots {
      width: 30px;
      text-align: center;
      color: var(--slate);
      font-size: 14px;
  }


  /* ============================================
   MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .theme-pagination {
          gap: 10px;
          margin-top: 35px;
          padding-top: 22px;
      }

      .pagination-btn span {
          display: none;
      }

      .pagination-btn svg {
          width: 20px;
          height: 20px;
      }

      .pagination-pages {
          gap: 4px;
      }

      .pagination-page {
          width: 34px;
          height: 34px;
          font-size: 13px;
      }

      .pagination-dots {
          width: 22px;
      }

  }

  /* ============================================
   INDUSTRY / SECTOR PAGE — MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .page-header {
          padding: 150px 0 50px;
      }

      .page-header h1 {
          font-size: clamp(26px, 7vw, 34px);
      }

      .page-header p.lead {
          font-size: 15px;
      }

      .breadcrumb {
          font-size: 11.5px;
          gap: 6px;
      }

      .industry-grid {
          grid-template-columns: 1fr;
          gap: 14px;
      }

      .industry-tile {
          min-height: auto;
          padding: 22px 20px;
      }

      .career-banner {
          padding: 50px 0;
          text-align: center;
      }

      .career-banner .wrap {
          flex-direction: column;
          text-align: center;
          gap: 24px;
      }

      .career-banner h2 {
          max-width: none;
          font-size: 24px;
      }

      .career-banner .btn {
          width: 100%;
          justify-content: center;
      }
  }

  /* ============================================
   HOME PAGE — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      /* ---- Hero ---- */
      .hero {
          padding: 150px 0 0;
      }

      .hero-inner {
          padding-bottom: 40px;
      }

      .hero h1 {
          font-size: clamp(28px, 8vw, 36px);
          max-width: none;
      }

      .hero p.lead {
          font-size: 15.5px;
      }

      .hero-actions {
          flex-direction: column;
          align-items: stretch;
          gap: 12px;
      }

      .hero-actions .btn {
          justify-content: center;
          width: 100%;
      }

      /* ---- Stat strip ---- */
      .stat-strip .wrap {
          justify-content: flex-start;
          gap: 22px 30px;
      }

      .stat {
          flex: 1 1 40%;
      }

      .stat .n {
          font-size: 21px;
      }

      /* ---- Insights flagship ---- */
      .if-head {
          padding: 50px 0 30px;
      }

      .if-content {
          padding: 32px 22px;
      }

      .if-cadence {
          gap: 18px;
      }

      .if-more {
          flex-direction: column;
          align-items: flex-start;
          text-align: left;
      }

      /* ---- Global reach (vision2030) ---- */
      .moore-badge {
          padding: 14px 18px;
          gap: 12px;
      }

      .moore-badge .l {
          max-width: none;
      }

      /* ---- Final CTA ---- */
      .final-cta {
          padding: 70px 0;
      }

      .final-cta .actions {
          flex-direction: column;
          align-items: stretch;
      }

      .final-cta .actions .btn {
          justify-content: center;
      }

      /* ---- Contact teaser ---- */
      .office {
          padding: 20px 0;
      }
  }

  /* ============================================
   FOOTER — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      footer {
          padding: 50px 0 24px;
      }

      .footer-top {
          grid-template-columns: 1fr;
          gap: 30px;
          padding-bottom: 34px;
      }

      .footer-top>div:first-child img {
          width: 130px !important;
      }

      .footer-top h5 {
          margin-bottom: 14px;
      }

      .footer-top ul {
          gap: 9px;
      }

      .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
          padding-top: 20px;
      }
  }

  /* ============================================
   ABOUT PANEL (About stats) — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .about-panel {
          padding: 28px 24px;
      }

      .about-panel .row {
          flex-direction: column;
          align-items: flex-start;
          gap: 6px;
          padding: 16px 0;
      }

      .about-panel .row .l {
          text-align: left;
          font-size: 11.5px;
      }

      .about-panel .row .n {
          font-size: 22px;
      }
  }

  .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  @media (max-width: 600px) {
      .cta-row {
          flex-direction: column;
          align-items: stretch;
      }

      .cta-row .btn {
          justify-content: center;
      }
  }

  /* ============================================
   INDUSTRIES TEASER (home) — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .section {
          padding: 60px 0;
      }

      .section-tight {
          padding: 44px 0;
      }

      .section-head {
          margin-bottom: 32px;
      }

      .industry-grid {
          gap: 12px;
      }

      .industry-tile {
          min-height: auto;
          padding: 20px 18px;
      }

      .industry-tile .num {
          width: 30px;
          height: 30px;
          font-size: 11px;
      }

      .industry-tile h4 {
          font-size: 15px;
          margin-top: 14px;
      }

      div[style*="text-align: center"] .btn-line {
          width: 100%;
          justify-content: center;
      }
  }

  /* ============================================
   SERVICE DETAIL PAGE — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .detail-block {
          padding: 44px 0;
      }

      .detail-grid {
          gap: 26px;
      }

      .detail-grid h2 {
          font-size: 22px;
      }

      .detail-grid h3 {
          font-size: 13.5px;
          margin-top: 20px;
      }

      .icon-badge {
          width: 48px;
          height: 48px;
          margin-bottom: 16px;
      }

      .icon-badge .icon {
          width: 22px;
          height: 22px;
      }

      .tag-num {
          font-size: 12px;
          margin-top: 4px;
      }

      .detail-grid ul li {
          font-size: 13.5px;
      }

      .detail-grid .btn-line {
          width: 100%;
          justify-content: center;
      }
  }
  /* ============================================
   ABOUT PAGE — SMALL MOBILE
   ============================================ */

  @media (max-width: 600px) {

      .about-media img {
          aspect-ratio: 3/2;
      }

      /* ---- Leadership section ---- */
      .leadership-section .section-head {
          margin-bottom: 32px;
      }

      .leader-info {
          padding: 22px 20px 20px;
      }

      .leader-info h3 {
          font-size: 21px;
      }

      .leader-contact {
          gap: 6px;
      }

      .leader-contact a {
          font-size: 13.5px;
      }

      .leader-social {
          margin-top: 14px;
          gap: 10px;
      }

      .leader-brief {
          padding: 20px 20px 22px;
          font-size: 14px;
      }
  }

  /* ============================================
   LEADER CARD — FINE-TUNE SMALL MOBILE
   ============================================ */

  @media (max-width: 480px) {

      .leader-image {
          height: 240px;
      }

      .leader-info {
          padding: 20px 18px 18px;
      }

      .leader-info h3 {
          font-size: 20px;
          margin: 6px 0 4px;
      }

      .leader-role,
      .leader-info .eyebrow {
          margin-bottom: 14px;
      }

      .leader-contact-item {
          gap: 8px;
      }

      .leader-contact a {
          font-size: 13px;
      }

      .leader-brief {
          padding: 18px 18px 20px;
          font-size: 13.5px;
          line-height: 1.65;
      }
  }

/* ============================================
   MICROSITE TEASER PAGE — SMALL MOBILE
   ============================================ */

@media (max-width: 600px) {

    .nepal-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 26px 24px;
        margin-top: 34px;
        gap: 18px;
    }

    .nepal-cta p {
        font-size: 15px;
    }

    .nepal-cta .btn {
        justify-content: center;
    }
}
