@charset "UTF-8";
blade,
advice,
medium,
brink,
adjust,
kidney,
absolute,
boom,
morale,
wealth,
basis,
winner,
knock,
worth,
month,
proof,
kitchen,
poison,
beef,
prevent {
  display: block;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

a {
  text-decoration: none;
}

@media (max-width: 575px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 575px) {
  .mobile-only {
    display: block;
  }
}

label, input, select, textarea {
  width: 100%;
}

.ncp-hero {
  /* Full-bleed hero with city backdrop (the image can be swapped in HTML or here) */
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  background-image: url(../images/home-hero.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .ncp-hero {
    min-height: 82vh;
  }
}
.ncp-hero .hero-overlay {
  width: 100%;
  height: 100%;
  /* extra subtle dark veil for crisp white text */
  display: grid;
  place-items: center;
  padding: 96px 24px 84px;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay {
    padding: 72px 18px 52px;
  }
}
.ncp-hero .hero-overlay .hero-content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 65px 0;
}
.ncp-hero .hero-overlay .hero-content .hero-tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #eaf2ff;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #6FB1FC 0%, #2563EB 100%); /* light→deep blue */
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-tag {
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-title {
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 67px;
  font-size: 58px;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-title {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-title .hero-highlight {
  color: #a7c5ff; /* airy blue highlight that matches screenshot */
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-title .hero-highlight {
    display: inline;
  }
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-title br {
    display: none;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-sub {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.35;
  color: #e8f0ff;
  font-weight: 600;
  /* thin underline accent like the screenshot */
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-sub {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-sub::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 12px auto 0;
  background: #5aa3ff;
  border-radius: 3px;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-sub::after {
    width: 72px;
    height: 3px;
    margin-top: 10px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-desc {
  margin: 18px auto 28px;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.9;
  color: #cfe0ff;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-desc {
    font-size: 15.5px;
    line-height: 1.75;
    margin: 12px auto 20px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-btns {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-btns {
    gap: 10px;
    width: 100%;
    flex-direction: column;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-primary,
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
@media (max-width: 575px) {
  .ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-primary,
  .ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-secondary {
    height: 50px;
    width: 100%;
    padding: 0 18px;
    font-size: 15px;
  }
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-primary {
  background: #FFFFFF;
  color: #1B3E74;
  box-shadow: 0 10px 22px rgba(43, 107, 227, 0.35);
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-primary:hover {
  background: #2259c2;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(43, 107, 227, 0.45);
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-primary:active {
  transform: translateY(1px);
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
.ncp-hero .hero-overlay .hero-content .hero-btns .hero-btn-secondary:active {
  transform: translateY(1px);
}

.ncp-metrics {
  padding: 48px 0;
}
.ncp-metrics .met-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .ncp-metrics .met-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.ncp-metrics .met-grid .met-card {
  position: relative;
  background: #fff;
  border: 1px solid #e9eef6;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(22, 55, 96, 0.06);
  padding: 40px 32px 36px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 991px) {
  .ncp-metrics .met-grid .met-card {
    padding: 32px 22px 28px;
  }
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid .met-card {
    padding: 26px 18px 24px;
  }
}
.ncp-metrics .met-grid .met-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 55, 96, 0.1);
}
.ncp-metrics .met-grid .met-card .met-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf2ff; /* light blue bubble */
}
.ncp-metrics .met-grid .met-card .met-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: none;
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid .met-card .met-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }
  .ncp-metrics .met-grid .met-card .met-icon img {
    width: 24px;
    height: 24px;
  }
}
.ncp-metrics .met-grid .met-card .met-value {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0c1b2a; /* near-black */
}
@media (max-width: 991px) {
  .ncp-metrics .met-grid .met-card .met-value {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid .met-card .met-value {
    font-size: 34px;
  }
}
.ncp-metrics .met-grid .met-card .met-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #2a63c7; /* primary blue */
}
@media (max-width: 991px) {
  .ncp-metrics .met-grid .met-card .met-title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid .met-card .met-title {
    font-size: 18px;
  }
}
.ncp-metrics .met-grid .met-card .met-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #6e7b8f; /* muted */
}
@media (max-width: 575px) {
  .ncp-metrics .met-grid .met-card .met-desc {
    font-size: 15px;
  }
}

/* Investment Excellence */
.ncp-invest {
  position: relative;
  padding: 80px 0;
  background: #eef5fb; /* soft mist background as in the shot */
}
@media (max-width: 991px) {
  .ncp-invest {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .ncp-invest {
    padding: 48px 0;
  }
}
.ncp-invest .inv-header {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 991px) {
  .ncp-invest .inv-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .ncp-invest .inv-header {
    margin-bottom: 32px;
  }
}
.ncp-invest .inv-header .inv-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #6FB1FC 0%, #2563EB 100%); /* light→deep blue */
  padding: 10px 18px;
  border-radius: 14px;
  margin-bottom: 16px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .ncp-invest .inv-header .inv-tag {
    font-size: 12px;
    padding: 8px 14px;
  }
}
.ncp-invest .inv-header .inv-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0c1b2a;
  position: relative;
  display: inline-block;
  /* underline accent */
}
@media (max-width: 991px) {
  .ncp-invest .inv-header .inv-title {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .ncp-invest .inv-header .inv-title {
    font-size: 34px;
  }
}
.ncp-invest .inv-header .inv-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 6px;
  border-radius: 4px;
  background: #2a63c7;
  margin: 14px auto 0;
}
.ncp-invest .inv-header .inv-sub {
  margin: 0 auto;
  max-width: 1100px;
  font-size: 22px;
  line-height: 1.45;
  color: #59677c;
}
@media (max-width: 991px) {
  .ncp-invest .inv-header .inv-sub {
    font-size: 20px;
    max-width: 920px;
  }
}
@media (max-width: 575px) {
  .ncp-invest .inv-header .inv-sub {
    font-size: 16px;
  }
}
.ncp-invest .inv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .ncp-invest .inv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (max-width: 575px) {
  .ncp-invest .inv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.ncp-invest .inv-grid .inv-card {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(22, 55, 96, 0.07);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ncp-invest .inv-grid .inv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22, 55, 96, 0.12);
}
.ncp-invest .inv-grid .inv-card .inv-icon {
  width: 68px;
  height: 68px;
  margin: 4px 0 16px;
  border-radius: 10px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
}
.ncp-invest .inv-grid .inv-card .inv-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .ncp-invest .inv-grid .inv-card .inv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  .ncp-invest .inv-grid .inv-card .inv-icon img {
    width: 24px;
    height: 24px;
  }
}
.ncp-invest .inv-grid .inv-card .inv-card-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  color: #0f2236;
}
@media (max-width: 575px) {
  .ncp-invest .inv-grid .inv-card .inv-card-title {
    font-size: 18px;
  }
}
.ncp-invest .inv-grid .inv-card .inv-card-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: #64748b;
}
@media (max-width: 575px) {
  .ncp-invest .inv-grid .inv-card .inv-card-desc {
    font-size: 15px;
  }
}

/* Proven Track Record */
.ncp-track {
  background: #0e1522;
  padding: 88px 0;
  color: #e8efff;
  /* ===== Header ===== */
  /* ===== Results banner ===== */
  /* ===== Case studies ===== */
}
@media (max-width: 991px) {
  .ncp-track {
    padding: 72px 0;
  }
}
@media (max-width: 575px) {
  .ncp-track {
    padding: 56px 0;
  }
}
.ncp-track .trk-header {
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.ncp-track .trk-header .trk-tag {
  display: inline-block;
  background: linear-gradient(90deg, #6FB1FC 0%, #2563EB 100%); /* light→deep blue */
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.ncp-track .trk-header .trk-title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.08;
  color: #f6f9ff;
  position: relative;
  display: inline-block;
}
.ncp-track .trk-header .trk-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 4px;
  margin: 14px auto 0;
  background: #2a63c7;
}
@media (max-width: 991px) {
  .ncp-track .trk-header .trk-title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .ncp-track .trk-header .trk-title {
    font-size: 28px;
  }
}
.ncp-track .trk-header .trk-sub {
  margin: 0 auto;
  max-width: 900px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #a6b3cb;
}
@media (max-width: 575px) {
  .ncp-track .trk-header .trk-sub {
    font-size: 15px;
  }
}
.ncp-track .trk-results {
  max-width: 1100px;
  margin: 0 auto 44px;
  background: #2354d6;
  color: #fff;
  border-radius: 22px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .ncp-track .trk-results {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .ncp-track .trk-results {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.ncp-track .trk-results .trk-result-card {
  position: relative;
  text-align: center;
}
.ncp-track .trk-results .trk-result-card:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 575px) {
  .ncp-track .trk-results .trk-result-card:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 12px;
  }
}
.ncp-track .trk-results .trk-result-card .trk-result-label {
  margin: 0 0 6px;
  opacity: 0.9;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ncp-track .trk-results .trk-result-card .trk-result-value {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media (max-width: 991px) {
  .ncp-track .trk-results .trk-result-card .trk-result-value {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .ncp-track .trk-results .trk-result-card .trk-result-value {
    font-size: 34px;
  }
}
.ncp-track .trk-results .trk-result-card .trk-result-note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.9);
}
.ncp-track .trk-cases {
  max-width: 1100px;
  margin: 0 auto;
}
.ncp-track .trk-cases .trk-cases-title {
  text-align: center;
  margin: 0 0 18px;
  font-size: 22px;
  color: #e6eeff;
}
@media (max-width: 575px) {
  .ncp-track .trk-cases .trk-cases-title {
    font-size: 18px;
  }
}
.ncp-track .trk-cases .trk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .ncp-track .trk-cases .trk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .ncp-track .trk-cases .trk-grid {
    grid-template-columns: 1fr;
  }
}
.ncp-track .trk-cases .trk-grid .trk-card {
  position: relative;
  background: #121e31;
  border: 1px solid #2067D5;
  border-radius: 18px;
  padding: 28px 27px 33px;
  box-shadow: 0 8px 24px rgba(4, 14, 28, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.ncp-track .trk-cases .trk-grid .trk-card:hover {
  transform: translateY(-3px);
  border-color: #2a63c7;
  box-shadow: 0 14px 30px rgba(15, 35, 66, 0.55);
}
.ncp-track .trk-cases .trk-grid .trk-card .trk-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #f4f8ff;
}
.ncp-track .trk-cases .trk-grid .trk-card .trk-card-desc {
  margin: 0 0 6px;
  color: #a7b6cf;
  font-size: 13.5px;
}
.ncp-track .trk-cases .trk-grid .trk-card .trk-card-meta {
  margin: 0;
  font-size: 15.5px;
  color: #62B9F8;
}
.ncp-track .trk-cases .trk-grid .trk-card .trk-flag {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  pointer-events: none;
}
.ncp-track .trk-cases .trk-btn-box {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.ncp-track .trk-cases .trk-btn-box .trk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #e7f0ff;
  border: 1px solid #2e4771;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  color: #2e4771;
}
.ncp-track .trk-cases .trk-btn-box .trk-btn:hover {
  background: #23406d;
  border-color: #3d6cd1;
  transform: translateY(-1px);
}

/* ============== Investment Sectors : header + tabs ============== */
.is-hd {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 6rem;
  /* top pill */
  /* title + underline */
  /* subtitle */
  /* tabs row */
}
@media (max-width: 991px) {
  .is-hd {
    padding-top: 4rem;
  }
}
.is-hd .is-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(90deg, #6FB1FC 0%, #2563EB 100%); /* light→deep blue */
}
.is-hd .is-title {
  margin: 16px 0 10px;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  color: #0b1628;
}
@media (max-width: 991px) {
  .is-hd .is-title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .is-hd .is-title {
    font-size: 32px;
  }
}
.is-hd .is-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  border-radius: 4px;
  margin-top: 12px;
  background: #2a63c7;
}
.is-hd .is-sub {
  max-width: 980px;
  margin: 0 0 28px;
  color: #5a6473;
  font-size: 20px;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .is-hd .is-sub {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .is-hd .is-sub {
    font-size: 16px;
  }
}
.is-hd .is-tabs {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  /* light baseline under the whole row (as in the mock) */
}
.is-hd .is-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8edf5;
}
.is-hd .is-tabs .is-tab {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 18px;
  color: #334155;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  /* active state driven by aria-selected */
}
@media (max-width: 575px) {
  .is-hd .is-tabs .is-tab {
    font-size: 16px;
    padding: 12px 16px;
  }
}
.is-hd .is-tabs .is-tab:hover {
  background: #f2f6ff;
}
.is-hd .is-tabs .is-tab:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(47, 99, 199, 0.25);
}
.is-hd .is-tabs .is-tab[aria-selected=true] {
  color: #fff;
  background: #1f4299;
  box-shadow: 0 10px 22px rgba(31, 66, 153, 0.25);
}

/* =====================  Investment Sectors – feature block  ===================== */
.is-wrap {
  --radius: 22px;
  --radius-lg: 26px;
  --ink: #0b1628;
  --muted: #5a6676;
  --primary: #1f4299;
  --primary-2: #275ddc;
  --cloud: #eaf3ff;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: start;
  margin-top: 35px;
  /* ---------------- left card ---------------- */
  /* ---------------- right panel ---------------- */
}
@media (max-width: 1080px) {
  .is-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.is-wrap .is-card {
  position: relative;
}
.is-wrap .is-card .is-fig {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  /* caption overlay */
}
.is-wrap .is-card .is-fig .is-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: translateZ(0);
  filter: saturate(0.95) contrast(1.02);
}
.is-wrap .is-card .is-fig .is-cap {
  position: absolute;
  inset: auto 0 0 0;
  color: #fff;
  padding: 34px 36px 28px;
  bottom: 45px;
}
.is-wrap .is-card .is-fig .is-cap .is-cap-ttl {
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(26px, 2.4vw, 40px);
}
.is-wrap .is-card .is-fig .is-cap .is-metrics {
  display: flex;
  gap: 36px;
}
.is-wrap .is-card .is-fig .is-cap .is-metrics .is-mt {
  display: flex;
  flex-direction: column;
}
.is-wrap .is-card .is-fig .is-cap .is-metrics .is-mt .is-num {
  font-weight: 800;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.1;
}
.is-wrap .is-card .is-fig .is-cap .is-metrics .is-mt .is-label {
  font-size: 14px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}
.is-wrap .is-side {
  padding-top: 8px;
  /* badges */
  /* CTA button */
}
.is-wrap .is-side .is-ttl {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.4vw, 42px);
  font-weight: 800;
  color: var(--ink);
}
.is-wrap .is-side .is-ttl::after {
  /* blue underline like in the comp */
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  border-radius: 4px;
  margin-top: 14px;
  background: var(--primary-2);
}
.is-wrap .is-side .is-desc {
  margin: 8px 0 24px;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}
.is-wrap .is-side .is-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 12px 0 28px;
}
@media (max-width: 680px) {
  .is-wrap .is-side .is-badges {
    grid-template-columns: 1fr;
  }
}
.is-wrap .is-side .is-badges .is-badge {
  display: flex;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 16px;
  background: var(--cloud);
  box-shadow: 0 6px 16px rgba(22, 34, 69, 0.06);
}
.is-wrap .is-side .is-badges .is-badge .is-ico {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
}
.is-wrap .is-side .is-badges .is-badge .is-ico img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.is-wrap .is-side .is-badges .is-badge .is-btxt .is-btitle {
  margin: 0 0 6px;
  color: #0c244d;
  font-weight: 800;
  font-size: 18px;
}
.is-wrap .is-side .is-badges .is-badge .is-btxt .is-bcopy {
  margin: 0;
  color: #445065;
  font-size: 15.5px;
  line-height: 1.5;
}
.is-wrap .is-side .is-cta-wrap {
  margin-top: 6px;
}
.is-wrap .is-side .is-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: #173a86;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(23, 58, 134, 0.28);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.is-wrap .is-side .is-cta::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 2px;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.172 12 7.05 5.879 8.464 4.464 16 12l-7.536 7.536-1.414-1.415z' fill='%23000'/%3E%3C/svg%3E") no-repeat 50% 50%/contain;
  background: #fff;
}
.is-wrap .is-side .is-cta:hover {
  transform: translateY(-1px);
  background: #1b479e;
  box-shadow: 0 16px 32px rgba(23, 58, 134, 0.34);
}
.is-wrap .is-side .is-cta:active {
  transform: translateY(0);
}
.is-wrap .is-side .is-cta:focus-visible {
  outline: 3px solid rgba(39, 93, 220, 0.35);
  outline-offset: 2px;
}

/* ========= Investment Strategy (based on provided shot) ========= */
.invstg {
  padding: 72px 0;
  color: #0f172a; /* slate-900 */
  background: #fff;
  /* ---------- header ---------- */
  /* ---------- grid ---------- */
}
@media (max-width: 575px) {
  .invstg {
    padding: 40px 0;
  }
}
.invstg .invstg-hd {
  max-width: 720px;
  margin: 0 0 40px 0;
}
@media (max-width: 575px) {
  .invstg .invstg-hd {
    margin-bottom: 28px;
  }
}
.invstg .invstg-hd .invstg-tag {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .invstg .invstg-hd .invstg-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
}
.invstg .invstg-hd .invstg-title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px 0;
  position: relative;
}
.invstg .invstg-hd .invstg-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  border-radius: 3px;
  background: #3b82f6;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .invstg .invstg-hd .invstg-title {
    font-size: 28px;
  }
  .invstg .invstg-hd .invstg-title::after {
    width: 64px;
    height: 4px;
  }
}
.invstg .invstg-hd .invstg-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #334155; /* slate-700 */
  margin: 0;
}
@media (max-width: 575px) {
  .invstg .invstg-hd .invstg-sub {
    font-size: 15px;
  }
}
.invstg .invstg-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 56px 64px;
  align-items: start;
  /* ======= Left column ======= */
  /* ======= Right column ======= */
}
@media (max-width: 575px) {
  .invstg .invstg-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left {
    order: 2;
  }
}
.invstg .invstg-grid .invstg-left .invstg-diff {
  background: #eaf2ff; /* very light blue */
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04) inset;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-diff {
    padding: 20px 16px;
  }
}
.invstg .invstg-grid .invstg-left .invstg-diff .invstg-diff-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px 0;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-diff .invstg-diff-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.invstg .invstg-grid .invstg-left .invstg-diff .invstg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.invstg .invstg-grid .invstg-left .invstg-diff .invstg-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  padding: 10px 0;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-diff .invstg-list li {
    font-size: 14px;
    gap: 10px;
  }
}
.invstg .invstg-grid .invstg-left .invstg-diff .invstg-list li img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-diff .invstg-list li img {
    width: 18px;
    height: 18px;
  }
}
.invstg .invstg-grid .invstg-left .invstg-link {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-link {
    margin-top: 14px;
  }
}
.invstg .invstg-grid .invstg-left .invstg-link .invstg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
  padding-right: 8px;
  position: relative;
}
.invstg .invstg-grid .invstg-left .invstg-link .invstg-btn::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(1px);
}
.invstg .invstg-grid .invstg-left .invstg-link .invstg-btn:hover {
  color: #0f3fb2;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-left .invstg-link .invstg-btn {
    font-size: 14px;
  }
}
.invstg .invstg-grid .invstg-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right {
    gap: 28px;
    order: 1;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item {
  display: grid;
  grid-template-columns: 56px 1fr;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf2ff;
  display: grid;
  place-items: center;
  position: relative;
  left: -10px;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item .invstg-icon {
    width: 48px;
    height: 48px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item .invstg-icon img {
    width: 22px;
    height: 22px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-item-title {
  grid-column: 2/-1;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 6px 0;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item .invstg-item-title {
    font-size: 22px;
    margin-bottom: 4px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-item-desc {
  grid-column: 2/-1;
  margin: 0 0 10px 0;
  color: #475569; /* slate-600 */
  font-size: 17px;
  line-height: 1.7;
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item .invstg-item-desc {
    font-size: 14px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-points {
  grid-column: 2/-1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-points li {
  position: relative;
  padding-left: 30px;
  margin: 8px 0;
  font-size: 16px;
  color: #334155;
  line-height: 1.6;
  /* check bullet */
}
@media (max-width: 575px) {
  .invstg .invstg-grid .invstg-right .invstg-item .invstg-points li {
    font-size: 14px;
    padding-left: 24px;
  }
}
.invstg .invstg-grid .invstg-right .invstg-item .invstg-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9999 21.7482C11.0399 21.7482 10.0799 21.3832 9.34992 20.6522L8.909 20.2112C8.769 20.0712 8.57597 19.9912 8.37897 19.9912H7.758C5.692 19.9912 4.00995 18.3102 4.00995 16.2432V15.6222C4.00995 15.4252 3.92998 15.2312 3.78998 15.0922L3.34894 14.6512C1.88694 13.1902 1.88694 10.8122 3.34894 9.35021L3.78998 8.9092C3.92998 8.7692 4.00995 8.57619 4.00995 8.37819V7.75719C4.00995 5.69019 5.692 4.0092 7.758 4.0092H8.37897C8.57597 4.0092 8.77 3.9292 8.909 3.7892L9.34992 3.34819C10.8109 1.88719 13.1899 1.88719 14.6509 3.34819L15.092 3.7892C15.232 3.9292 15.4249 4.0092 15.6219 4.0092H16.243C18.309 4.0092 19.9909 5.69019 19.9909 7.75719V8.37819C19.9909 8.57619 20.071 8.7692 20.211 8.9092L20.6519 9.35021C22.1139 10.8112 22.1139 13.1892 20.6519 14.6512L20.211 15.0922C20.071 15.2322 19.9909 15.4252 19.9909 15.6222V16.2432C19.9909 18.3102 18.309 19.9912 16.243 19.9912H15.6219C15.4249 19.9912 15.231 20.0712 15.092 20.2102L14.6509 20.6522C13.9199 21.3832 12.9599 21.7482 11.9999 21.7482ZM7.7569 5.5092C6.5179 5.5092 5.50898 6.51819 5.50898 7.75719V8.37819C5.50898 8.97919 5.27492 9.54419 4.84992 9.96919L4.409 10.4102C3.984 10.8352 3.75092 11.3992 3.75092 12.0002C3.75092 12.6012 3.984 13.1652 4.409 13.5902L4.84992 14.0312C5.27492 14.4562 5.50898 15.0212 5.50898 15.6222V16.2432C5.50898 17.4832 6.5179 18.4912 7.7569 18.4912H8.37799C8.97099 18.4912 9.55094 18.7312 9.96894 19.1502L10.41 19.5912C11.26 20.4402 12.7399 20.4402 13.5899 19.5912L14.0309 19.1502C14.4489 18.7312 15.0289 18.4912 15.6219 18.4912H16.243C17.482 18.4912 18.4909 17.4822 18.4909 16.2432V15.6222C18.4909 15.0212 18.725 14.4562 19.15 14.0312L19.5909 13.5902C20.0159 13.1652 20.249 12.6012 20.249 12.0002C20.249 11.3992 20.0159 10.8352 19.5909 10.4102L19.15 9.96919C18.725 9.54419 18.4909 8.97919 18.4909 8.37819V7.75719C18.4909 6.51719 17.482 5.5092 16.243 5.5092H15.6219C15.0299 5.5092 14.4499 5.26921 14.0309 4.85021L13.5899 4.4092C12.7399 3.5602 11.26 3.5602 10.41 4.4092L9.96894 4.85021C9.54994 5.26921 8.96999 5.5092 8.37799 5.5092H7.7569ZM11.53 14.5302L15.53 10.5302C15.823 10.2372 15.823 9.76219 15.53 9.46919C15.237 9.17619 14.7619 9.17619 14.4689 9.46919L10.999 12.9392L9.529 11.4692C9.23599 11.1762 8.76096 11.1762 8.46796 11.4692C8.17496 11.7622 8.17496 12.2372 8.46796 12.5302L10.468 14.5302C10.614 14.6762 10.806 14.7502 10.998 14.7502C11.19 14.7502 11.384 14.6772 11.53 14.5302Z' fill='%232067D5'/%3E%3C/svg%3E%0A");
}

/* ============== Investment Process ============== */
.invproc {
  padding: 72px 0;
  background: #fff;
  color: #0f172a;
  /* ---------- header ---------- */
  /* ---------- grid ---------- */
}
@media (max-width: 575px) {
  .invproc {
    padding: 40px 0;
  }
}
.invproc .ip-hd {
  margin-bottom: 36px;
}
@media (max-width: 575px) {
  .invproc .ip-hd {
    margin-bottom: 22px;
  }
}
.invproc .ip-hd .ip-title {
  margin: 0;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  .invproc .ip-hd .ip-title {
    font-size: 28px;
  }
}
.invproc .ip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  align-items: start;
  /* ---------- step card ---------- */
}
@media (max-width: 575px) {
  .invproc .ip-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.invproc .ip-grid .ip-step {
  position: relative;
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step {
    padding-right: 0;
  }
}
.invproc .ip-grid .ip-step .ip-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2067D5;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step .ip-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
}
.invproc .ip-grid .ip-step .ip-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step .ip-icon img {
    width: 24px;
    height: 24px;
  }
}
.invproc .ip-grid .ip-step .ip-stepnum {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 800;
  color: #1d4ed8; /* blue */
  letter-spacing: 0.02em;
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step .ip-stepnum {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.invproc .ip-grid .ip-step .ip-step-title {
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step .ip-step-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.invproc .ip-grid .ip-step .ip-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #475569; /* slate-600 */
}
@media (max-width: 575px) {
  .invproc .ip-grid .ip-step .ip-desc {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ============== Ready to Partner ============== */
.rdyprt {
  padding: 0;
  position: relative;
  margin-bottom: 65px;
}
.rdyprt .rdyprt-bg {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  /* Replace with real image path */
  background: url("path/to/partner-bg.jpg") center/cover no-repeat;
  /* blue overlay */
}
.rdyprt .rdyprt-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.7); /* blue */
  mix-blend-mode: multiply;
}
@media (max-width: 575px) {
  .rdyprt .rdyprt-bg {
    min-height: 260px;
    border-radius: 12px;
  }
}
.rdyprt .rdyprt-bg .rdyprt-content {
  position: relative; /* above overlay */
  z-index: 1;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 24px;
  color: #fff;
}
@media (max-width: 575px) {
  .rdyprt .rdyprt-bg .rdyprt-content {
    padding: 40px 18px;
  }
}
.rdyprt .rdyprt-bg .rdyprt-content .rdyprt-title {
  margin: 0 0 14px 0;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 575px) {
  .rdyprt .rdyprt-bg .rdyprt-content .rdyprt-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.rdyprt .rdyprt-bg .rdyprt-content .rdyprt-text {
  max-width: 820px;
  margin: 0 auto 28px auto;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 575px) {
  .rdyprt .rdyprt-bg .rdyprt-content .rdyprt-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.rdyprt .rdyprt-bg .rdyprt-content .rdyprt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: #ffffff;
  color: #1d4ed8; /* primary blue */
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.rdyprt .rdyprt-bg .rdyprt-content .rdyprt-btn:after {
  content: "›";
  font-size: 22px;
  line-height: 1;
}
.rdyprt .rdyprt-bg .rdyprt-content .rdyprt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18);
}
@media (max-width: 575px) {
  .rdyprt .rdyprt-bg .rdyprt-content .rdyprt-btn {
    padding: 13px 20px;
    font-size: 15px;
  }
  .rdyprt .rdyprt-bg .rdyprt-content .rdyprt-btn:after {
    font-size: 20px;
  }
}

.menu {
  padding: 24px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
@media (max-width: 575px) {
  .menu {
    padding: 15px;
    padding-left: 0;
  }
}
.menu .container {
  display: flex;
  justify-content: space-between;
}
.menu .container .lin {
  display: flex;
  gap: 32px;
}
@media (max-width: 575px) {
  .menu .container .lin {
    display: none;
  }
}
.menu .container .lin .lin-item a {
  color: white;
}
.menu .container .lin .lin-item a.contact {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 500;
}

.header {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 85px;
  width: 100%;
  background: transparent;
  text-align: right;
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 999999999;
}
@media (max-width: 575px) {
  .header {
    display: block;
  }
}
.header .burger-container {
  position: relative;
  display: inline-block;
  height: 37px;
  z-index: 1000000000000000000;
  width: 43px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #95C8F6;
  top: 16px;
  right: 14px;
}
.header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #FFF;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.header .burger-container #burger .bar.topBar {
  transform: translateY(0px) rotate(0deg);
}
.header .burger-container #burger .bar.btmBar {
  transform: translateY(6px) rotate(0deg);
}
.header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  transform: translateX(0px);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.header ul.menu {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
}
.header ul.menu li.menu-item {
  border-bottom: 1px solid #18315A;
  margin-top: 5px;
  transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.header ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.header ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.header ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.07s;
}
.header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #18315A;
  font-family: "Ek Mukta", sans-serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 22px;
  line-height: 2.35;
  font-weight: 300;
  width: 100%;
  text-align: left;
}
.header.menu-opened {
  height: 100%;
  background-color: #95C8F6;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.header.menu-opened .burger-container {
  transform: rotate(90deg);
}
.header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.header.menu-opened .burger-container #burger .bar.topBar {
  transform: translateY(4px) rotate(45deg);
}
.header.menu-opened .burger-container #burger .bar.btmBar {
  transform: translateY(3px) rotate(-45deg);
}
.header.menu-opened ul.menu li.menu-item {
  transform: scale(1) translateY(0px);
  opacity: 1;
}
.header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.69s;
}
.header.menu-opened .icon.icon-bag {
  transform: translateX(75px);
  transition-delay: 0.3s;
}

.ncp-reg {
  background: #2d7deb;
  padding: 64px 0;
}
@media (max-width: 575px) {
  .ncp-reg {
    padding: 48px 0;
  }
}
.ncp-reg .reg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.ncp-reg .reg-wrap .reg-text {
  max-width: 760px;
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap .reg-text {
    max-width: 100%;
  }
}
.ncp-reg .reg-wrap .reg-text .reg-title {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap .reg-text .reg-title {
    font-size: 28px;
  }
}
.ncp-reg .reg-wrap .reg-text .reg-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap .reg-text .reg-desc {
    font-size: 13.5px;
  }
}
.ncp-reg .reg-wrap .reg-text .reg-desc br {
  content: "";
}
.ncp-reg .reg-wrap .reg-btn-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap .reg-btn-box {
    width: 100%;
    margin-top: 12px;
  }
}
.ncp-reg .reg-wrap .reg-btn-box .reg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 9999px;
  background: #eaf2ff;
  color: #0e2f5a;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(10, 18, 31, 0.04), 0 2px 8px rgba(10, 18, 31, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.ncp-reg .reg-wrap .reg-btn-box .reg-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 18, 31, 0.12);
}
.ncp-reg .reg-wrap .reg-btn-box .reg-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 18, 31, 0.1);
}
.ncp-reg .reg-wrap .reg-btn-box .reg-btn:focus-visible {
  outline: 2px solid #bcd6ff;
  outline-offset: 2px;
}
@media (max-width: 575px) {
  .ncp-reg .reg-wrap .reg-btn-box .reg-btn {
    width: auto;
    padding: 12px 20px;
    font-size: 15px;
  }
}

.ncp-who {
  position: relative;
}
.ncp-who .who-bg {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.ncp-who .who-bg.contact-header {
  background-image: url(../images/headers/contact-header.png);
}
.ncp-who .who-bg.insights-header {
  background-image: url(../images/headers/insights-header.png);
}
.ncp-who .who-bg.team-header {
  background-image: url(../images/headers/team-header.png);
}
.ncp-who .who-bg.sectors-header {
  background-image: url(../images/headers/sectors-header.png);
}
.ncp-who .who-bg.strategy-header {
  background-image: url(../images/headers/strategy-header.png);
}
.ncp-who .who-bg.about-header {
  background-image: url(../images/headers/who-header.png);
}
.ncp-who .who-bg.track-header {
  background-image: url(../images/headers/track-header.png);
}
@media (max-width: 575px) {
  .ncp-who .who-bg {
    min-height: 180px;
  }
}
.ncp-who .who-bg .who-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 164px 0;
  padding-top: 170px;
}
@media (max-width: 575px) {
  .ncp-who .who-bg .who-content {
    padding: 28px 18px 36px;
  }
}
.ncp-who .who-bg .who-content .who-title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  /* small underline accent */
}
.ncp-who .who-bg .who-content .who-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}
@media (max-width: 575px) {
  .ncp-who .who-bg .who-content .who-title {
    font-size: 32px;
  }
  .ncp-who .who-bg .who-content .who-title::after {
    width: 54px;
    height: 3px;
    margin-top: 10px;
  }
}
.ncp-who .who-bg .who-content .who-desc {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
@media (max-width: 575px) {
  .ncp-who .who-bg .who-content .who-desc {
    font-size: 15px;
    max-width: 100%;
  }
}

.ncp-ft {
  background: #0f1b2a;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}
@media (max-width: 575px) {
  .ncp-ft {
    padding: 36px 0 20px;
  }
}
.ncp-ft .ft-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr 1.2fr;
  gap: 48px;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }
}
.ncp-ft .ft-grid .ft-brand .ft-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.95);
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-brand .ft-logo {
    width: 160px;
  }
}
.ncp-ft .ft-grid .ft-brand .ft-h2 {
  margin: 0 0 12px;
  font-size: 0; /* purely decorative, hidden */
  line-height: 1;
  color: #fff;
}
.ncp-ft .ft-grid .ft-brand .ft-blurb {
  margin: 0;
  max-width: 280px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-brand .ft-blurb {
    max-width: 100%;
    font-size: 14px;
  }
}
.ncp-ft .ft-grid .ft-links .ft-h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-links .ft-h3 {
    margin-bottom: 10px;
  }
}
.ncp-ft .ft-grid .ft-links .ft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-links .ft-list {
    gap: 8px;
  }
}
.ncp-ft .ft-grid .ft-links .ft-list .ft-item .ft-link {
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.ncp-ft .ft-grid .ft-links .ft-list .ft-item .ft-link:hover {
  color: #d4e1ff;
  transform: translateX(2px);
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-links .ft-list .ft-item .ft-link {
    font-size: 15px;
  }
}
.ncp-ft .ft-grid .ft-ctc .ft-h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.ncp-ft .ft-grid .ft-ctc .ft-row {
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-ctc .ft-row {
    font-size: 14px;
  }
}
.ncp-ft .ft-grid .ft-ctc .ft-row .ft-ic {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-ctc .ft-row .ft-ic {
    width: 17px;
    height: 17px;
  }
}
.ncp-ft .ft-grid .ft-ctc .ft-row .ft-tel {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s ease;
}
.ncp-ft .ft-grid .ft-ctc .ft-row .ft-tel:hover {
  color: #d4e1ff;
}
.ncp-ft .ft-grid .ft-ctc .ft-addr {
  font-style: normal;
  margin-top: 8px;
}
.ncp-ft .ft-grid .ft-ctc .ft-addr .ft-row {
  margin: 0;
  grid-template-columns: 20px 1fr;
}
.ncp-ft .ft-grid .ft-ctc .ft-addr .ft-row span {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.ncp-ft .ft-grid .ft-mail .ft-h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.ncp-ft .ft-grid .ft-mail .ft-mail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-mail .ft-mail-list {
    gap: 10px;
  }
}
.ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
}
.ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item .ft-ic {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item .ft-ic {
    width: 17px;
    height: 17px;
  }
}
.ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item .ft-email {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}
.ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item .ft-email:hover {
  color: #d4e1ff;
  text-decoration: underline;
}
@media (max-width: 575px) {
  .ncp-ft .ft-grid .ft-mail .ft-mail-list .ft-mail-item .ft-email {
    font-size: 14px;
    word-break: break-all;
  }
}
.ncp-ft .ft-hr {
  max-width: 1200px;
  margin: 28px auto 18px;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}
@media (max-width: 575px) {
  .ncp-ft .ft-hr {
    margin: 24px auto 14px;
  }
}
.ncp-ft .ft-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
@media (max-width: 575px) {
  .ncp-ft .ft-copy {
    padding: 0 18px;
    text-align: left;
    font-size: 13px;
  }
}