:root {
  --nd-ink: #17144f;
  --nd-ink-2: #2f2a83;
  --nd-red: #ff2438;
  --nd-red-dark: #d80f25;
  --nd-cyan: #58d7f5;
  --nd-soft: #f7f8ff;
  --nd-soft-2: #eef7ff;
  --nd-line: #e7e8f6;
  --nd-text: #24233d;
  --nd-muted: #666986;
  --nd-white: #ffffff;
  --nd-shadow: 0 22px 60px rgba(23, 20, 79, .13);
  --nd-radius: 8px;
}

* {
  letter-spacing: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--nd-text);
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 36, 56, .11), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(88, 215, 245, .16), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 46%, #ffffff 100%);
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.nd-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 0;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 42, 131, .08);
}

.nd-navbar {
  padding: 0;
}

.nd-navbar .navbar-collapse {
  align-items: center;
}

.nd-brand img {
  max-height: 54px;
  width: auto;
}

.nd-navbar .nd-brand,
.nd-navbar .nd-brand:focus,
.nd-navbar .nd-brand:hover {
  padding: 0;
  border-bottom: 0;
}

.nd-toggler {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nd-ink);
  border: 1px solid var(--nd-line);
  box-shadow: none;
}

.nd-menu {
  gap: 4px;
}

.nd-menu .nav-item {
  position: relative;
}

.nd-menu .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--nd-ink);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: visible;
  transition: color .18s ease;
}

.nd-menu .nav-link:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--nd-red), var(--nd-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nd-menu .dropdown-toggle::after {
  margin-left: 7px;
  vertical-align: middle;
  border-top-color: var(--nd-red);
  border-top-width: .32em;
}

.nd-menu .nav-link:hover,
.nd-menu .nav-link.active {
  color: var(--nd-ink);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nd-menu .nav-link:hover:before,
.nd-menu .nav-link.active:before {
  transform: scaleX(1);
}

.nd-dropdown,
.nd-mega {
  border: 1px solid rgba(47, 42, 131, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--nd-shadow);
  margin-top: 14px;
  opacity: 1;
  visibility: visible;
}

.nd-navbar .dropdown-menu {
  color: var(--nd-text);
  border: 1px solid rgba(47, 42, 131, .11);
}

.nd-navbar .dropdown:hover > .dropdown-menu,
.nd-navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.nd-navbar .dropdown:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 16px;
}

.nd-mega {
  left: 50%;
  min-width: min(680px, calc(100vw - 30px));
  padding: 16px;
  transform: translateX(-50%);
}

.nd-mega:before,
.nd-dropdown:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 34px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(47, 42, 131, .11);
  border-top: 1px solid rgba(47, 42, 131, .11);
  background: #fff;
  transform: rotate(45deg);
}

.nd-mega:before {
  left: 50%;
  margin-left: -8px;
}

.nd-mega-link {
  display: block;
  height: 100%;
  padding: 13px;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fbfcff);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.nd-mega-link span {
  display: block;
  color: var(--nd-ink);
  font-weight: 900;
}

.nd-mega-link small {
  display: block;
  margin-top: 6px;
  color: var(--nd-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.nd-mega-link:hover {
  border-color: rgba(255, 36, 56, .3);
  transform: translateY(-2px);
}

.nd-mega-all {
  background: linear-gradient(135deg, rgba(47, 42, 131, .08), rgba(88, 215, 245, .14));
}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.nd-btn:hover {
  transform: translateY(-2px);
}

.nd-nav-actions .nd-btn {
  min-width: max-content;
  font-size: .94rem;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.nd-nav-actions .nd-btn i {
  flex: 0 0 auto;
}

.nd-navbar .nd-nav-actions a.nd-btn,
.nd-navbar .nd-nav-actions a.nd-btn:focus,
.nd-navbar .nd-nav-actions a.nd-btn:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center !important;
  gap: 9px;
  padding: 11px 17px;
  border-bottom: 0;
  text-align: center;
}

.nd-navbar .nd-nav-actions a.nd-btn-primary,
.nd-navbar .nd-nav-actions a.nd-btn-primary:focus,
.nd-navbar .nd-nav-actions a.nd-btn-primary:hover {
  min-width: 220px;
}

.nd-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-red-dark) 48%, var(--nd-ink-2));
  box-shadow: 0 15px 34px rgba(255, 36, 56, .25);
}

.nd-btn-light {
  color: var(--nd-ink);
  background: #fff;
  border-color: var(--nd-line);
  box-shadow: 0 12px 28px rgba(23, 20, 79, .08);
}

.nd-dropdown {
  min-width: 240px;
  padding: 10px;
}

.nd-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--nd-ink);
  border: 0;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 850;
}

.nd-dropdown .dropdown-item:hover,
.nd-dropdown .dropdown-item:focus {
  color: var(--nd-red);
  background: rgba(255, 36, 56, .07);
}

.nd-btn-ghost {
  color: var(--nd-ink);
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .32);
}

.nd-kicker,
.mk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nd-red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nd-kicker:before,
.mk-eyebrow:before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--nd-cyan);
}

.nd-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 36, 56, .64), transparent 22rem),
    radial-gradient(circle at 86% 18%, rgba(88, 215, 245, .44), transparent 28rem),
    linear-gradient(135deg, #17144f 0%, #25206d 47%, #0f1037 100%);
}

.nd-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 190px;
  background: #fff;
  transform: rotate(-2.6deg);
}

.nd-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.nd-hero .container {
  z-index: 1;
}

.nd-hero h1 {
  max-width: 850px;
  margin: 16px 0 20px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2.35rem, 5.4vw, 5.45rem);
  line-height: 1;
  font-weight: 900;
}

.nd-hero-title {
  display: grid;
  grid-template-rows: 1em 1em;
  gap: 8px;
  min-height: calc(2em + 8px);
}

.nd-title-static,
.nd-typed-wrap {
  display: block;
  height: 1em;
  overflow: hidden;
  white-space: nowrap;
}

.nd-title-static {
  color: #fff;
}

.nd-typed-wrap {
  display: flex;
  align-items: center;
}

.nd-hero .typed-cursor {
  color: var(--nd-cyan);
}

.nd-hero h1 .nd-typed {
  color: var(--nd-cyan);
  font-size: .82em;
  text-shadow: 0 0 24px rgba(88, 215, 245, .28);
}

.nd-hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
  line-height: 1.75;
}

.nd-hero .nd-kicker {
  color: #fff;
}

.nd-hero-stats {
  max-width: 720px;
  margin-top: 34px;
}

.nd-hero-stats div div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--nd-radius);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
}

.nd-hero-stats strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}

.nd-hero-stats span {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.nd-command-center,
.nd-mac-window {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.nd-mac-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(12, 12, 48, .42);
}

.nd-mac-dots {
  display: flex;
  gap: 7px;
}

.nd-mac-dots span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nd-red);
}

.nd-mac-dots i {
  color: rgba(23, 20, 79, .78);
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transition: opacity .18s ease;
}

.nd-mac-window:hover .nd-mac-dots i {
  opacity: 1;
}

.nd-mac-dots span:nth-child(2) {
  background: #ffb02e;
}

.nd-mac-dots span:nth-child(3) {
  background: var(--nd-cyan);
}

.nd-mac-top strong {
  flex: 1;
  text-align: center;
  font-size: .76rem;
  font-weight: 900;
}

.nd-mac-top i {
  color: var(--nd-cyan);
}

.nd-mac-body {
  padding: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 215, 245, .22), transparent 13rem),
    rgba(255, 255, 255, .95);
  color: var(--nd-ink);
}

.nd-window-head,
.nd-module-list div,
.nd-mac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nd-window-head span {
  color: var(--nd-muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nd-window-head strong {
  color: var(--nd-red);
  font-size: 1.5rem;
  font-weight: 900;
}

.nd-progress-track {
  height: 8px;
  margin: 10px 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47, 42, 131, .11);
}

.nd-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nd-red), var(--nd-cyan));
}

.nd-mini-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 78px;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f3f7ff);
}

.nd-mini-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--nd-cyan), var(--nd-ink-2));
}

.nd-mini-chart span:nth-child(even) {
  background: linear-gradient(180deg, var(--nd-red), var(--nd-red-dark));
}

.nd-module-list {
  display: grid;
  gap: 9px;
}

.nd-module-list div {
  padding: 10px;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  background: #fff;
}

.nd-module-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-ink-2), var(--nd-red));
}

.nd-module-list span {
  flex: 1;
  color: var(--nd-ink);
  font-size: .86rem;
  font-weight: 900;
}

.nd-module-list strong {
  color: var(--nd-red);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nd-mac-footer {
  padding: 12px 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(12, 12, 48, .48);
}

.nd-mac-footer span,
.nd-mac-footer strong {
  font-size: .76rem;
  font-weight: 900;
}

.nd-command-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, .78);
}

.nd-command-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nd-red);
}

.nd-command-top span:nth-child(2) {
  background: var(--nd-cyan);
}

.nd-command-top span:nth-child(3) {
  background: #fff;
}

.nd-command-top strong {
  margin-left: auto;
  font-size: .82rem;
}

.nd-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nd-stack-grid > div,
.nd-live-strip {
  padding: 14px;
  border-radius: var(--nd-radius);
  background: rgba(255, 255, 255, .94);
  color: var(--nd-ink);
}

.nd-stack-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-ink-2), var(--nd-red));
}

.nd-stack-grid strong,
.nd-stack-grid span {
  display: block;
}

.nd-stack-grid strong {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 900;
}

.nd-stack-grid span,
.nd-live-strip span {
  color: var(--nd-muted);
  font-size: .78rem;
}

.nd-live-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
}

.nd-live-strip strong {
  color: var(--nd-red);
}

.nd-section {
  padding: 92px 0;
}

.nd-section-light {
  background: linear-gradient(180deg, #fff, var(--nd-soft));
}

.nd-section-head {
  width: 100%;
  max-width: none;
  margin-bottom: 34px;
}

.nd-section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.nd-section-head h2,
.nd-band h2,
.nd-footer-cta h2,
.nd-page-hero h1 {
  margin: 12px 0 0;
  color: var(--nd-ink);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  font-weight: 900;
}

.nd-section-head p,
.nd-band p,
.nd-page-hero p {
  margin: 16px 0 0;
  color: var(--nd-muted);
  line-height: 1.75;
}

.nd-solution-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(23, 20, 79, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nd-solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 36, 56, .32);
  box-shadow: var(--nd-shadow);
}

.nd-card-media {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  background:
    radial-gradient(circle at 20% 10%, rgba(88, 215, 245, .55), transparent 45%),
    linear-gradient(135deg, var(--nd-ink), var(--nd-ink-2) 58%, var(--nd-red));
}

.nd-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.nd-card-body {
  flex: 1;
  padding: 22px;
}

.nd-card-meta,
.nd-price-row,
.nd-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nd-card-meta {
  margin-bottom: 14px;
  color: var(--nd-muted);
  font-size: .84rem;
  font-weight: 800;
}

.nd-card-meta strong {
  color: var(--nd-red);
}

.nd-card-category {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: var(--nd-ink-2);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.1;
  border: 1px solid rgba(88, 215, 245, .45);
  border-radius: 999px;
  background: rgba(88, 215, 245, .12);
}

.nd-card-category:hover {
  color: var(--nd-red);
  border-color: rgba(255, 36, 56, .32);
  background: rgba(255, 36, 56, .08);
}

.nd-card-body h3 {
  min-height: 58px;
  color: var(--nd-ink);
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 900;
}

.nd-card-body p {
  color: var(--nd-muted);
  line-height: 1.65;
}

.nd-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  color: var(--nd-ink);
  font-weight: 900;
  border-top: 1px solid var(--nd-line);
}

.nd-card-link:hover {
  color: var(--nd-red);
}

.nd-service-card {
  padding-top: 22px;
}

.nd-service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-left: 22px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
  box-shadow: 0 14px 28px rgba(255, 36, 56, .18);
}

.nd-market-toolbar {
  display: grid;
  gap: 12px;
}

.nd-solution-explorer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 36, 56, .08), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(88, 215, 245, .16), transparent 26rem),
    #fff;
}

.nd-solution-explorer .nd-market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(47, 42, 131, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 45px rgba(23, 20, 79, .09);
  backdrop-filter: blur(14px);
}

.nd-solution-explorer .nd-filter-pills {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: var(--nd-soft);
}

.nd-solution-explorer .nd-filter-pills button {
  min-height: 42px;
  min-width: 112px;
  padding: 10px 12px;
  border: 0;
  color: var(--nd-ink);
  background: transparent;
  box-shadow: none;
}

.nd-solution-explorer .nd-filter-pills .is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
  box-shadow: 0 12px 24px rgba(255, 36, 56, .18);
}

.nd-market-search {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 14px;
  margin: 0;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  background: #fff;
}

.nd-market-search i {
  color: var(--nd-red);
}

.nd-market-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--nd-ink);
  background: transparent;
  font-weight: 800;
}

.nd-market-search input::placeholder {
  color: var(--nd-muted);
  font-weight: 700;
}

.nd-explorer-grid {
  position: relative;
}

.nd-explorer-grid .nd-solution-card {
  border-color: rgba(47, 42, 131, .1);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 36, 56, .35), rgba(88, 215, 245, .3), rgba(47, 42, 131, .18)) border-box;
  box-shadow: 0 18px 42px rgba(23, 20, 79, .08);
}

.nd-explorer-grid .nd-solution-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--nd-red), var(--nd-cyan), var(--nd-ink-2));
}

.nd-explorer-grid .nd-solution-card:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 215, 245, .28), transparent 68%);
  pointer-events: none;
}

.nd-explorer-grid .nd-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(23, 20, 79, .15);
}

.nd-explorer-grid .nd-card-compact .nd-card-media,
.nd-explorer-grid .nd-card-compact.nd-service-card {
  min-height: 0;
}

.nd-explorer-grid .nd-card-compact .nd-card-media {
  height: 138px;
  overflow: hidden;
}

.nd-explorer-grid .nd-card-compact .nd-card-media img {
  height: 138px;
  transition: transform .3s ease;
}

.nd-explorer-grid .nd-solution-card:hover .nd-card-media img {
  transform: scale(1.06);
}

.nd-explorer-grid .nd-service-card {
  padding-top: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 36, 56, .12), transparent 14rem),
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 36, 56, .35), rgba(88, 215, 245, .3), rgba(47, 42, 131, .18)) border-box;
}

.nd-explorer-grid .nd-service-mark {
  width: 52px;
  height: 52px;
  margin-left: 20px;
  box-shadow: 0 18px 34px rgba(255, 36, 56, .2);
}

.nd-explorer-grid .nd-card-body {
  padding: 20px;
}

.nd-explorer-grid .nd-card-body h3 {
  min-height: 48px;
  font-size: 1.12rem;
}

.nd-explorer-grid .nd-card-meta {
  padding: 8px 10px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: var(--nd-soft);
  font-size: .76rem;
}

.nd-explorer-grid .nd-card-meta span,
.nd-explorer-grid .nd-card-meta strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nd-explorer-grid .nd-card-link {
  margin: 0 18px 18px;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 42, 131, .07), rgba(88, 215, 245, .12));
}

.nd-explorer-grid .nd-card-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
}

.nd-search-panel {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(320px, 1.2fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(47, 42, 131, .12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 215, 245, .18), transparent 18rem),
    #fff;
  box-shadow: 0 16px 42px rgba(23, 20, 79, .07);
}

.nd-search-panel h2 {
  margin: 7px 0 0;
  color: var(--nd-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.nd-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: rgba(247, 248, 255, .72);
}

.nd-search-box > i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--nd-red);
  border-radius: 50%;
  background: #fff;
}

.nd-search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--nd-ink);
  background: transparent;
  font-weight: 800;
}

.nd-search-box input::placeholder {
  color: var(--nd-muted);
  font-weight: 700;
}

.nd-empty-state {
  padding: 44px 24px;
  text-align: center;
  border: 1px dashed rgba(47, 42, 131, .24);
  border-radius: 8px;
  background: #fff;
}

.nd-empty-state > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
}

.nd-empty-state h3 {
  margin: 18px 0 8px;
  color: var(--nd-ink);
  font-weight: 900;
}

.nd-empty-state p {
  color: var(--nd-muted);
}

.nd-input,
.mk-input,
.mk-search {
  min-height: 50px;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  box-shadow: none;
  background: #fff;
}

.nd-input:focus,
.mk-input:focus,
.mk-search:focus {
  outline: none;
  border-color: rgba(255, 36, 56, .45);
  box-shadow: 0 0 0 .2rem rgba(255, 36, 56, .09);
}

.mk-market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.nd-filter-pills,
.mk-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nd-filter-pills button,
.mk-filter-pills button,
.mk-filter-pills a {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  color: var(--nd-ink);
  background: #fff;
  font-weight: 900;
}

.nd-filter-pills .is-active,
.mk-filter-pills .is-active,
.mk-filter-pills a:hover {
  color: #fff;
  border-color: transparent;
  background: var(--nd-red);
}

.nd-band,
.mk-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 36, 56, .32), transparent 24rem),
    radial-gradient(circle at 85% 12%, rgba(88, 215, 245, .23), transparent 28rem),
    linear-gradient(135deg, var(--nd-ink), #090928);
}

.nd-band h2,
.nd-band .nd-section-head h2,
.mk-dark .nd-section-head h2,
.mk-dark h2,
.mk-dark h3 {
  color: #fff;
}

.nd-band p,
.mk-dark p,
.mk-dark .nd-section-head p {
  color: rgba(255, 255, 255, .72);
}

.nd-feature,
.mk-info-card,
.mk-process-card,
.nd-category-tile,
.nd-quote {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 20, 79, .07);
}

.nd-band .nd-feature,
.mk-dark .mk-info-card,
.mk-dark .mk-process-card {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .09);
}

.nd-feature i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
}

.nd-feature h3,
.mk-info-card h3,
.mk-process-card h3,
.nd-category-tile h3 {
  margin-top: 16px;
  color: var(--nd-ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.nd-band .nd-feature h3,
.mk-dark .mk-process-card h3,
.mk-dark .mk-info-card h3 {
  color: #fff;
}

.nd-product-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.nd-product-cloud span {
  padding: 14px 18px;
  color: var(--nd-ink);
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 20, 79, .06);
  font-weight: 900;
}

.nd-product-cloud span:nth-child(3n) {
  color: var(--nd-red);
}

.nd-product-cloud span:nth-child(4n) {
  color: var(--nd-ink-2);
  background: var(--nd-soft-2);
}

.nd-category-tile {
  display: block;
  color: inherit;
}

.nd-category-tile span {
  color: var(--nd-red);
  font-weight: 900;
}

.nd-category-showcase {
  position: relative;
  overflow: hidden;
}

.nd-category-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  color: inherit;
  border: 1px solid rgba(47, 42, 131, .1);
  border-radius: var(--nd-radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(88, 215, 245, .18), transparent 13rem),
    linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 18px 42px rgba(23, 20, 79, .08);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nd-category-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--nd-red), var(--nd-cyan), var(--nd-ink-2));
}

.nd-category-card:hover {
  color: inherit;
  border-color: rgba(255, 36, 56, .28);
  box-shadow: 0 28px 70px rgba(23, 20, 79, .14);
  transform: translateY(-6px);
}

.nd-category-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
  box-shadow: 0 16px 34px rgba(255, 36, 56, .22);
}

.nd-category-icon i {
  font-size: 1.45rem;
}

.nd-category-count {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(47, 42, 131, .16);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.nd-category-card h3 {
  margin: 4px 0 0;
  color: var(--nd-ink);
  font-size: 1.16rem;
  font-weight: 900;
}

.nd-category-card p {
  flex: 1;
  margin: 0;
  color: var(--nd-muted);
  line-height: 1.65;
}

.nd-category-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nd-red);
  font-size: .9rem;
  font-weight: 900;
}

.nd-quote p {
  color: var(--nd-text);
  line-height: 1.75;
}

.nd-quote strong,
.nd-quote span {
  display: block;
}

.nd-quote span {
  color: var(--nd-muted);
  font-size: .9rem;
}

.nd-blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 20, 79, .07);
}

.mk-blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 20, 79, .07);
}

.mk-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mk-blog-card > div {
  padding: 22px;
}

.mk-blog-card h3 {
  color: var(--nd-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.mk-blog-card p {
  color: var(--nd-muted);
  line-height: 1.65;
}

.nd-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.nd-blog-card > div {
  padding: 22px;
}

.nd-blog-card h3 {
  color: var(--nd-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.nd-blog-card p {
  color: var(--nd-muted);
  line-height: 1.65;
}

.nd-blog-card a:last-child {
  color: var(--nd-red);
  font-weight: 900;
}

.nd-accordion {
  max-width: 920px;
  margin: 0 auto;
}

.mk-faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.mk-faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  background: #fff;
}

.mk-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--nd-ink);
  font-weight: 900;
}

.mk-faq-item div {
  padding: 0 20px 20px;
  color: var(--nd-muted);
  line-height: 1.7;
}

.nd-accordion .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
}

.nd-accordion .accordion-button {
  color: var(--nd-ink);
  font-weight: 900;
  box-shadow: none;
}

.nd-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--nd-ink-2);
}

.nd-page-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 40px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 36, 56, .22), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(88, 215, 245, .28), transparent 28rem),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.nd-breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 30px rgba(23, 20, 79, .07);
}

.nd-breadcrumb a {
  color: var(--nd-ink-2);
  font-weight: 900;
}

.nd-breadcrumb .active {
  color: var(--nd-red);
  font-weight: 900;
}

.nd-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.nd-orbit-one {
  right: 6%;
  top: 28px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(255, 36, 56, .14);
}

.nd-orbit-two {
  left: 7%;
  bottom: -64px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(88, 215, 245, .18);
}

.mk-section,
.mk-section-sm {
  padding: 86px 0;
}

.mk-section-sm {
  padding-top: 38px;
}

.mk-container {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .mk-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .mk-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .mk-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .mk-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .mk-container {
    max-width: 1320px;
  }
}

.mk-surface {
  background: linear-gradient(180deg, #fff, var(--nd-soft));
}

.breadcrumbs {
  position: relative;
  overflow: hidden;
  padding: 76px 0 54px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 36, 56, .16), transparent 22rem),
    radial-gradient(circle at 88% 4%, rgba(88, 215, 245, .22), transparent 24rem),
    linear-gradient(135deg, #f8fbff, #fff);
}

.breadcrumbs h2 {
  margin: 10px 0 0;
  color: var(--nd-ink);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
}

.breadcrumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 9px 14px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--nd-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 30px rgba(23, 20, 79, .07);
}

.breadcrumbs ol a {
  color: var(--nd-ink-2);
  font-weight: 900;
}

.breadcrumbs ol li {
  color: var(--nd-red);
  font-weight: 900;
}

.contact,
.services.section-bg {
  padding: 82px 0;
  background: linear-gradient(180deg, #fff, var(--nd-soft));
}

.contact .card,
.services form,
.payment-card {
  border: 1px solid var(--nd-line) !important;
  border-radius: 8px !important;
  background: #fff;
  box-shadow: var(--nd-shadow) !important;
}

.contact textarea.form-control {
  min-height: 220px;
  resize: vertical;
}

.form-control,
.form-select {
  max-width: 100%;
  border-color: var(--nd-line);
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 36, 56, .45);
  box-shadow: 0 0 0 .2rem rgba(255, 36, 56, .09);
}

.btn-primary,
.btn-dark {
  border: 0;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-red-dark), var(--nd-ink-2));
}

.btn-outline-secondary {
  color: var(--nd-ink);
  border-color: var(--nd-line);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.mk-rich table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.mk-rich img,
.mk-rich iframe,
.mk-rich video {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

.mk-grid {
  display: grid;
  gap: 24px;
}

.mk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.mk-sidebar-card,
.nd-form-panel,
.mk-form-panel {
  position: sticky;
  top: 100px;
  padding: 26px;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  background: #fff;
  box-shadow: var(--nd-shadow);
}

.nd-form-panel,
.mk-form-panel {
  position: static;
}

.nd-enquiry-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(47, 42, 131, .12);
  background:
    radial-gradient(circle at 95% 0%, rgba(88, 215, 245, .24), transparent 16rem),
    linear-gradient(180deg, #fff, #fbfcff);
}

.nd-enquiry-panel:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--nd-red), var(--nd-cyan), var(--nd-ink-2));
}

.nd-enquiry-head {
  display: flex;
  gap: 16px;
  padding: 28px 28px 18px;
}

.nd-enquiry-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-ink-2));
  box-shadow: 0 16px 34px rgba(255, 36, 56, .22);
}

.nd-enquiry-head span {
  color: var(--nd-red);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nd-enquiry-head h3 {
  margin: 4px 0 7px;
  color: var(--nd-ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.nd-enquiry-head p {
  margin: 0;
  color: var(--nd-muted);
  line-height: 1.62;
}

.nd-enquiry-form {
  padding: 0 28px 24px;
}

.nd-detail-contact {
  position: relative;
  overflow: hidden;
}

.nd-detail-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.nd-detail-contact-copy {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(47, 42, 131, .12);
  border-radius: var(--nd-radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(88, 215, 245, .18), transparent 15rem),
    #fff;
  box-shadow: 0 18px 45px rgba(23, 20, 79, .07);
}

.nd-detail-contact-copy .nd-section-head {
  margin-bottom: 24px;
}

.nd-contact-mini-list {
  display: grid;
  gap: 12px;
}

.nd-contact-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: var(--nd-ink);
  border: 1px solid rgba(47, 42, 131, .1);
  border-radius: 8px;
  background: rgba(247, 248, 255, .86);
  font-weight: 900;
}

.nd-contact-mini-list i {
  color: var(--nd-red);
}

.nd-detail-contact .nd-enquiry-panel {
  box-shadow: 0 28px 75px rgba(23, 20, 79, .13);
}

.nd-field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.nd-field > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--nd-ink);
  font-size: .83rem;
  font-weight: 900;
}

.nd-field > span i {
  color: var(--nd-red);
}

.nd-enquiry-panel .nd-input {
  min-height: 54px;
  border-color: rgba(47, 42, 131, .14);
  background: rgba(255, 255, 255, .86);
}

.nd-enquiry-panel textarea.nd-input {
  min-height: 130px;
  resize: vertical;
}

.nd-captcha-wrap {
  overflow: hidden;
  padding: 14px;
  border: 1px dashed rgba(47, 42, 131, .2);
  border-radius: 8px;
  background: rgba(247, 248, 255, .72);
}

.nd-enquiry-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--nd-line);
  background: rgba(247, 248, 255, .82);
}

.nd-enquiry-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  color: var(--nd-ink);
  border: 1px solid rgba(47, 42, 131, .1);
  border-radius: 999px;
  background: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.nd-enquiry-foot i {
  color: var(--nd-red);
}

.nd-contact-page .mk-detail-layout {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
}

.nd-contact-page .mk-info-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(47, 42, 131, .12);
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 215, 245, .14), transparent 9rem),
    #fff;
}

.nd-contact-page .mk-info-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--nd-red), var(--nd-cyan));
}

.nd-contact-page .nd-enquiry-panel {
  border: 0;
  box-shadow: 0 30px 85px rgba(23, 20, 79, .16);
}

.nd-contact-page .nd-enquiry-form {
  padding: 10px 34px 32px;
}

.nd-contact-page .nd-enquiry-foot {
  padding-right: 34px;
  padding-left: 34px;
}

.nd-contact-page .nd-enquiry-panel:after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 36, 56, .13), transparent 70%);
  pointer-events: none;
}

.nd-contact-page .nd-enquiry-head {
  color: #fff;
  background:
    radial-gradient(circle at 96% 0%, rgba(88, 215, 245, .3), transparent 13rem),
    linear-gradient(135deg, var(--nd-ink), var(--nd-ink-2));
}

.nd-contact-page .nd-enquiry-head span,
.nd-contact-page .nd-enquiry-head h3,
.nd-contact-page .nd-enquiry-head p {
  color: #fff;
}

.nd-contact-page .nd-enquiry-icon {
  background: linear-gradient(135deg, var(--nd-red), var(--nd-cyan));
}

.mk-rich {
  color: var(--nd-text);
  line-height: 1.82;
}

.mk-rich h1,
.mk-rich h2,
.mk-rich h3,
.mk-sidebar-card h3 {
  color: var(--nd-ink);
  font-weight: 900;
}

.mk-price-row,
.nd-price-row {
  padding: 13px 0;
  color: var(--nd-muted);
  border-bottom: 1px solid var(--nd-line);
}

.mk-total-row,
.nd-total-row {
  margin: 16px 0;
  padding: 16px;
  color: var(--nd-ink);
  border-radius: 8px;
  background: var(--nd-soft);
  font-size: 1.08rem;
  font-weight: 900;
}

.mk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.mk-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--nd-red), var(--nd-red-dark), var(--nd-ink-2));
}

.mk-button-soft {
  color: var(--nd-ink);
  border: 1px solid var(--nd-line);
  background: #fff;
}

.mk-alert {
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.mk-alert-success {
  color: #0f5132;
  background: #d1e7dd;
}

.mk-alert-danger {
  color: #842029;
  background: #f8d7da;
}

.nd-footer,
.nd-final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 36, 56, .38), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(88, 215, 245, .22), transparent 28rem),
    linear-gradient(135deg, #17144f, #0b0b2e);
}

.nd-footer {
  padding: 74px 0 28px;
}

.nd-final-cta {
  padding-bottom: 72px;
}

.nd-footer-cta,
.mk-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.nd-footer-cta h2,
.mk-footer-cta h3 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 900;
}

.mk-footer-cta {
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 36, 56, .32), transparent 22rem),
    linear-gradient(135deg, var(--nd-ink), #111044);
}

.nd-footer .nd-kicker,
.nd-final-cta .nd-kicker {
  color: #fff;
}

.nd-footer-logo {
  max-height: 62px;
  padding: 8px 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
}

.nd-footer p,
.nd-footer li,
.nd-footer span {
  color: rgba(255, 255, 255, .74);
}

.nd-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.nd-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nd-footer li + li {
  margin-top: 10px;
}

.nd-footer a {
  color: rgba(255, 255, 255, .82);
}

.nd-footer a:hover {
  color: var(--nd-cyan);
}

.mk-footer-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.mk-footer-links li + li {
  margin-top: 10px;
}

.mk-footer-links a {
  color: var(--nd-ink);
  font-weight: 800;
}

.mk-footer-links a:hover {
  color: var(--nd-red);
}

.mk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mk-span-2 {
  grid-column: span 2;
}

.nd-contact-list {
  display: grid;
  gap: 10px;
}

.nd-footer-pills,
.nd-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nd-footer-pills a,
.nd-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.nd-socials {
  margin-top: 18px;
}

.nd-socials a {
  width: 42px;
  padding: 0;
}

.nd-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.back-to-top,
.back-to-whatsapp {
  position: fixed;
  right: 16px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
}

.back-to-top {
  bottom: 22px;
  background: var(--nd-ink-2);
}

.back-to-whatsapp {
  bottom: 74px;
  background: #25d366;
  font-size: 1.35rem;
}

@media (min-width: 1200px) {
  .nd-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .nd-mega-item:hover .nd-mega {
    display: block;
  }
}

@media (max-width: 1199px) {
  .nd-header {
    padding: 10px 0;
  }

  .nd-menu {
    display: flex !important;
    width: 100%;
    align-items: stretch !important;
    padding-top: 18px;
    gap: 6px;
  }

  .nd-navbar .navbar-collapse {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 18px 0 6px;
  }

  .nd-nav-actions {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }

  .nd-nav-actions .nd-btn {
    width: min(100%, 360px);
    min-width: 0;
  }

  .nd-navbar .dropdown:after {
    display: none;
  }

  .nd-menu .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--nd-line);
  }

  .nd-navbar .dropdown-menu {
    position: static !important;
    inset: auto !important;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 12px;
    padding: 12px;
    transform: none !important;
    overflow: hidden;
  }

  .nd-navbar .dropdown-menu:not(.show) {
    display: none;
  }

  .nd-navbar .dropdown-menu.show {
    display: block;
  }

  .nd-mega {
    left: auto;
    min-width: 100%;
    transform: none;
  }

  .nd-mega .row {
    margin-right: 0;
    margin-left: 0;
  }

  .nd-mega:before,
  .nd-dropdown:before {
    display: none;
  }

  .nd-hero h1 {
    font-size: clamp(2.5rem, 6.2vw, 4.9rem);
  }
}

@media (max-width: 991px) {
  .nd-hero {
    min-height: auto;
    padding: 95px 0 120px;
  }

  .nd-hero h1 {
    max-width: 720px;
    font-size: clamp(2.4rem, 8vw, 4.35rem);
  }

  .nd-command-center,
  .nd-mac-window {
    margin-top: 18px;
    margin-left: 0;
  }

  .mk-grid-3,
  .mk-grid-4,
  .nd-contact-page .mk-detail-layout,
  .nd-detail-contact-layout,
  .mk-detail-layout {
    grid-template-columns: 1fr;
  }

  .mk-sidebar-card {
    position: static;
  }

  .nd-search-panel {
    grid-template-columns: 1fr;
  }

  .nd-solution-explorer .nd-market-toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nd-solution-explorer .nd-filter-pills {
    flex: 1 1 330px;
  }

  .nd-market-search {
    flex: 1 1 320px;
  }

  .nd-search-box {
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 8px;
  }

  .nd-search-box input {
    flex-basis: calc(100% - 52px);
  }

  .nd-search-box .nd-btn {
    flex: 1 1 150px;
  }

  .nd-footer-cta,
  .mk-footer-cta,
  .nd-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mk-market-toolbar,
  .mk-form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .mk-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .nd-brand img {
    max-height: 46px;
  }

  .nd-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .nd-hero h1 .nd-typed {
    font-size: .68em;
  }

  .nd-typed-wrap {
    height: 1em;
  }

  .nd-solution-explorer .nd-filter-pills {
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
  }

  .nd-solution-explorer .nd-filter-pills button {
    width: 100%;
    min-width: 0;
  }

  .nd-stack-grid {
    grid-template-columns: 1fr;
  }

  .nd-enquiry-head {
    flex-direction: column;
    padding: 24px 20px 16px;
  }

  .nd-enquiry-form {
    padding: 0 20px 22px;
  }

  .nd-contact-page .nd-enquiry-form {
    padding: 8px 22px 24px;
  }

  .nd-enquiry-foot {
    padding: 15px 20px 22px;
  }

  .nd-detail-contact-copy {
    padding: 22px;
  }

  .nd-section {
    padding: 70px 0;
  }

  .mk-section,
  .mk-section-sm,
  .contact,
  .services.section-bg {
    padding: 62px 0;
  }

  .nd-card-body h3 {
    min-height: auto;
  }
}
