/**
 * NaviaDesk Child — original enterprise field-service UI
 * Quality bar inspired by modern tech marketing sites; brand, colours,
 * composition, and assets are exclusive to NaviaDesk.
 */

@import url("tokens.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nd-header-h) + 12px);
}

body.naviadesk-theme {
  margin: 0;
  font-family: var(--nd-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--nd-text);
  background: var(--nd-bg);
  -webkit-font-smoothing: antialiased;
  /* clip keeps sticky sidebars working; hidden on body breaks position:sticky */
  overflow-x: clip;
}

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

a {
  color: var(--nd-teal-dark);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--nd-teal);
}

:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.45);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nd-font);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--nd-navy);
  line-height: 1.2;
}

.nd-container {
  width: min(var(--nd-container), 100% - 2rem);
  margin-inline: auto;
}

.nd-text-gradient {
  background: var(--nd-gradient-teal);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ——— Reveal on scroll ——— */
.nd-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.nd-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ——— Sections ——— */
.nd-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  position: relative;
}
.nd-section--muted { background: var(--nd-white); }
.nd-section--alt { background: var(--nd-bg-alt); }
.nd-section--navy,
.nd-section--dark {
  background: var(--nd-navy);
  color: #cbd5e1;
}
.nd-section--navy h2,
.nd-section--navy h3,
.nd-section--dark h2,
.nd-section--dark h3 { color: #fff; }
.nd-section--gradient {
  background: var(--nd-gradient-cta);
  color: #fff;
}
.nd-section--gradient .nd-section__title { color: #fff; }
.nd-section--gradient .nd-section__lead { color: rgba(255, 255, 255, 0.88); }

.nd-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.95rem;
  background: var(--nd-teal-soft);
  border-radius: var(--nd-radius-pill);
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.nd-section--navy .nd-section__label,
.nd-section--dark .nd-section__label,
.nd-section--gradient .nd-section__label {
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.nd-section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
}
.nd-section--navy .nd-section__title,
.nd-section--dark .nd-section__title { color: #fff; }

.nd-section__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--nd-text-muted);
  font-size: 1.05rem;
}
.nd-section--navy .nd-section__lead,
.nd-section--dark .nd-section__lead { color: #94a3b8; }

.nd-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* Centered section intro (services, etc.) */
.nd-section__intro {
  margin-bottom: 2rem;
}
.nd-section__intro--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.nd-section__intro--center .nd-section__label {
  margin-left: auto;
  margin-right: auto;
}
.nd-section__intro--center .nd-section__title {
  margin-left: auto;
  margin-right: auto;
}
.nd-section__intro--center .nd-section__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}
.nd-section__pills {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.nd-section__pills li {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--nd-teal-dark);
  background: var(--nd-teal-soft);
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: var(--nd-radius-pill);
  padding: 0.4rem 0.9rem;
}
.nd-section__footer-cta--simple {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
  padding: 0;
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.nd-section__footer-cta--simple .nd-btn {
  min-width: 0;
}

/* ——— Header ——— */
.nd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nd-header.is-transparent {
  background: transparent;
}
.nd-header.is-transparent .nd-nav a,
.nd-header.is-transparent .nd-logo {
  color: #fff;
}
.nd-header.is-transparent .nd-menu-toggle span,
.nd-header.is-transparent .nd-menu-toggle span::before,
.nd-header.is-transparent .nd-menu-toggle span::after {
  background: #fff;
}
.nd-header.is-transparent .nd-btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.nd-header.is-scrolled,
.nd-header:not(.is-transparent) {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(11, 31, 58, 0.06);
  box-shadow: var(--nd-shadow-sm);
}

.nd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nd-header-h);
  padding: 0.5rem 0;
}
.nd-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--nd-navy);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  z-index: 2;
}
.nd-logo:hover { color: var(--nd-teal); }
.nd-logo__img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}
/* Dual logo swap for transparent homepage header */
.nd-logo__img--light {
  display: none;
}
.nd-header.is-transparent .nd-logo__img--dark {
  display: none;
}
.nd-header.is-transparent .nd-logo__img--light {
  display: block;
}
.nd-header.is-scrolled .nd-logo__img--dark,
.nd-header:not(.is-transparent) .nd-logo__img--dark {
  display: block;
}
.nd-header.is-scrolled .nd-logo__img--light,
.nd-header:not(.is-transparent) .nd-logo__img--light {
  display: none;
}
.nd-logo__img--footer {
  height: 48px;
  width: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.custom-logo-link img {
  max-height: 48px;
  width: auto;
}

.nd-nav { display: none; }
.nd-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}
.nd-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--nd-text);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nd-nav a:hover { color: var(--nd-teal); }
.nd-nav .current-menu-item > a {
  color: var(--nd-teal);
  font-weight: 700;
}
.nd-nav .menu-item-has-children { position: relative; }
.nd-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.nd-nav .menu-item-has-children > a::after {
  content: "\ea4e";
  font-family: "remixicon" !important;
  font-style: normal;
  margin-left: 0.15rem;
  font-size: 0.95em;
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nd-nav .menu-item-has-children:hover > a::after,
.nd-nav .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

/* Hover bridge so panel stays open while moving pointer down */
.nd-nav .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: none;
}
.nd-nav .menu-item-has-children:hover::after,
.nd-nav .menu-item-has-children:focus-within::after {
  display: block;
}

.nd-nav .sub-menu,
.nd-nav .nd-nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4ebf1;
  box-shadow:
    0 4px 6px rgba(11, 31, 58, 0.04),
    0 18px 40px rgba(11, 31, 58, 0.14);
  z-index: 80;
  text-align: left;
  animation: nd-nav-panel-in 0.18s ease;
}
@keyframes nd-nav-panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nd-nav .menu-item-has-children:hover > .sub-menu,
.nd-nav .menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}

/* Services mega panel — 2 columns, icons, no dead empty space */
.nd-nav .nd-nav__mega > .sub-menu {
  left: 0;
  width: min(560px, calc(100vw - 2rem));
  min-width: min(560px, calc(100vw - 2rem));
  max-width: min(560px, calc(100vw - 2rem));
  max-height: none;
  overflow: visible;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.35rem;
  padding: 0.7rem;
  border-radius: 18px;
}
.nd-nav .nd-nav__mega:hover > .sub-menu,
.nd-nav .nd-nav__mega:focus-within > .sub-menu {
  display: grid;
}

.nd-nav .sub-menu > li {
  width: 100%;
  margin: 0;
  list-style: none;
}
.nd-nav .sub-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
  color: var(--nd-navy) !important;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  padding: 0.55rem 0.65rem !important;
  border-radius: 12px;
  text-align: left !important;
  white-space: normal;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.nd-nav .sub-menu a:hover,
.nd-nav .sub-menu a:focus-visible {
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.04)) !important;
  color: var(--nd-teal-dark) !important;
  box-shadow: inset 3px 0 0 var(--nd-teal);
}
.nd-nav .sub-menu .current-menu-item > a {
  color: var(--nd-teal-dark) !important;
  background: rgba(13, 148, 136, 0.1) !important;
  font-weight: 750;
  box-shadow: inset 3px 0 0 var(--nd-teal);
}

.nd-nav__svc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.05rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nd-nav .sub-menu a:hover .nd-nav__svc-icon,
.nd-nav .sub-menu .current-menu-item > a .nd-nav__svc-icon {
  background: rgba(13, 148, 136, 0.2);
  color: #0f766e;
}
.nd-nav__svc-label {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Transparent header: keep panel solid and readable */
.nd-header.is-transparent .nd-nav .sub-menu a {
  color: var(--nd-navy) !important;
}
.nd-header.is-transparent .nd-nav .sub-menu a:hover {
  color: var(--nd-teal-dark) !important;
}

@media (prefers-reduced-motion: reduce) {
  .nd-nav .sub-menu,
  .nd-nav .nd-nav__mega:hover > .sub-menu {
    animation: none;
  }
  .nd-nav .menu-item-has-children > a::after {
    transition: none;
  }
}

.nd-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.nd-header__cta .nd-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nd-border);
  color: var(--nd-navy);
  text-decoration: none;
  font-size: 1.15rem;
  background: #fff;
  transition: all 0.2s ease;
}
.nd-header.is-transparent .nd-header__cta .nd-icon-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.nd-header__cta .nd-icon-btn:hover {
  border-color: var(--nd-teal);
  color: var(--nd-teal);
}
.nd-header__cta .nd-icon-btn--wa:hover {
  border-color: var(--nd-whatsapp);
  color: var(--nd-whatsapp);
}

.nd-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nd-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nd-navy);
  position: relative;
  border-radius: 2px;
}
.nd-menu-toggle span::before,
.nd-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: inherit;
  border-radius: 2px;
}
.nd-menu-toggle span::before { top: -7px; }
.nd-menu-toggle span::after { top: 7px; }

@media (min-width: 1100px) {
  .nd-nav { display: block; }
  .nd-header__cta { display: flex; }
  .nd-menu-toggle { display: none; }
}

.nd-mobile-nav {
  display: none;
  border-top: 1px solid var(--nd-border);
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
  max-height: calc(100vh - var(--nd-header-h));
  overflow: auto;
}
.nd-mobile-nav.is-open { display: block; }
.nd-header.is-transparent .nd-mobile-nav {
  background: #fff;
}
.nd-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.nd-mobile-nav a {
  display: block;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid var(--nd-border);
  color: var(--nd-navy);
  text-decoration: none;
  font-weight: 600;
}
.nd-mobile-nav .sub-menu,
.nd-mobile-nav .nd-nav__panel {
  display: block !important;
  position: static !important;
  transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0.15rem 0 0.5rem;
  padding: 0.35rem 0.25rem 0.35rem 0.55rem;
  border: 0;
  border-left: 2px solid rgba(13, 148, 136, 0.28);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  animation: none;
  grid-template-columns: none !important;
}
.nd-mobile-nav .sub-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-weight: 550;
  font-size: 0.9rem;
  color: var(--nd-text) !important;
  padding: 0.55rem 0.45rem !important;
  border-bottom: 1px solid #eef2f6;
  border-radius: 10px;
  box-shadow: none !important;
}
.nd-mobile-nav .sub-menu a:hover {
  background: rgba(13, 148, 136, 0.07) !important;
  color: var(--nd-teal-dark) !important;
}
.nd-mobile-nav .nd-nav__svc-icon {
  width: 30px;
  height: 30px;
  font-size: 0.95rem;
  border-radius: 9px;
}
.nd-mobile-nav .menu-item-has-children > a {
  font-weight: 750;
}
.nd-mobile-nav .menu-item-has-children > a::after {
  display: none;
}

/* Offset content under fixed header (inner pages) */
body:not(.home) .nd-page-header,
body:not(.home) main > .nd-hero {
  padding-top: calc(var(--nd-header-h) + 1.5rem);
}
/* Homepage hero padding is defined on .nd-hero */

/* ——— Buttons ——— */
.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--nd-radius-pill);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nd-btn:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.4);
  outline-offset: 2px;
}
.nd-btn--primary {
  background: var(--nd-orange);
  color: #fff;
  border-color: var(--nd-orange);
  box-shadow: var(--nd-shadow-orange);
}
.nd-btn--primary:hover {
  background: var(--nd-orange-hover);
  border-color: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-2px);
}
.nd-btn--secondary {
  background: transparent;
  color: var(--nd-navy);
  border-color: var(--nd-navy);
}
.nd-btn--secondary:hover {
  background: var(--nd-navy);
  color: #fff;
}
.nd-btn--teal {
  background: var(--nd-gradient-teal);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--nd-shadow-teal);
}
.nd-btn--teal:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--nd-shadow-lg);
}
.nd-btn--ghost {
  background: transparent;
  color: var(--nd-navy);
  border-color: var(--nd-border);
}
.nd-btn--ghost:hover {
  border-color: var(--nd-teal);
  color: var(--nd-teal-dark);
  background: var(--nd-teal-soft);
}
.nd-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.nd-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.nd-btn--light {
  background: #fff;
  color: var(--nd-navy);
  border-color: #fff;
}
.nd-btn--light:hover {
  transform: translateY(-2px);
  color: var(--nd-navy);
  box-shadow: var(--nd-shadow-lg);
}
.nd-btn--whatsapp {
  background: var(--nd-whatsapp);
  color: #fff;
  border-color: var(--nd-whatsapp);
}
.nd-btn--whatsapp:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.05);
}

/* ——— Hero ——— */
.nd-hero {
  position: relative;
  background: var(--nd-gradient-hero);
  color: #fff;
  padding: calc(var(--nd-header-h, 78px) + 1.35rem) 0 3rem;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 960px) {
  .nd-hero {
    padding: calc(var(--nd-header-h, 78px) + 1.5rem) 0 3.5rem;
    min-height: clamp(560px, 72vh, 700px);
    display: flex;
    align-items: center;
  }
}
.nd-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(240, 106, 26, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(13, 148, 136, 0.25), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Keep .nd-container side margins (do not force width: 100%). */
.nd-hero > .nd-container {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.nd-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1.75rem 2rem;
  }
}
.nd-hero__copy {
  min-width: 0;
  max-width: 36rem;
}
.nd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--nd-radius-pill);
  padding: 0.4rem 0.9rem;
  margin: 0 0 0.9rem;
}
.nd-hero__badge i { color: var(--nd-orange); }
.nd-hero__title,
.nd-hero h1.nd-hero__title,
.nd-hero h1 {
  margin: 0 0 0.85rem;
  max-width: none;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff !important;
  text-wrap: balance;
}
.nd-hero__title-main {
  display: block;
  color: #fff;
}
.nd-hero__title-accent {
  display: block;
  margin-top: 0.12rem;
  color: #5eead4 !important;
  -webkit-text-fill-color: #5eead4;
  background: none;
}
.nd-hero__text {
  margin: 0 0 1.25rem;
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  color: #c5d0dc;
  max-width: 33rem;
  line-height: 1.65;
}
.nd-hero__cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.nd-hero__actions .nd-btn {
  min-width: 0;
}
.nd-hero__cta-primary {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 750;
  box-shadow: 0 14px 32px rgba(240, 106, 26, 0.32);
}
.nd-hero__cta-primary i {
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}
.nd-hero__cta-primary:hover i {
  transform: translateX(3px);
}
.nd-hero__cta-secondary {
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  font-size: 0.94rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff !important;
}
.nd-hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff !important;
}
.nd-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.1rem;
  padding-top: 0.9rem;
}
.nd-hero__trust-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #99f6e4;
}
.nd-hero__trust-label i {
  color: #5eead4;
  font-size: 0.9rem;
}
.nd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nd-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 650;
  color: #e8f0f7;
  line-height: 1.25;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nd-trust li:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(94, 234, 212, 0.3);
}
.nd-trust__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.28);
  color: #5eead4;
  font-size: 0.78rem;
  border: 0;
}
.nd-trust__text {
  min-width: 0;
}

.nd-hero__visual {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}
.nd-hero__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: #0b1f3a;
  aspect-ratio: 4 / 3;
}
.nd-hero__media-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.14) 0%, transparent 42%),
    linear-gradient(to top, rgba(7, 21, 37, 0.18) 0%, transparent 35%);
  z-index: 1;
}
.nd-hero__video,
.nd-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  background: #0b1f3a;
}
.nd-hero__video {
  position: absolute;
  inset: 0;
}
.nd-hero__image {
  position: relative;
  height: auto;
  aspect-ratio: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.12);
}
.nd-hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  padding: 0.5rem 0.85rem;
  border-radius: var(--nd-radius-pill);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.16);
  font-weight: 750;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  color: var(--nd-navy);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  max-width: min(240px, calc(100% - 1.25rem));
  line-height: 1.25;
}
.nd-hero__chip i { color: var(--nd-teal); font-size: 1rem; flex-shrink: 0; }
.nd-hero__chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: nd-pulse 2s infinite;
  flex-shrink: 0;
}
.nd-hero__chip--tl { top: 12px; left: 12px; }
.nd-hero__chip--br { bottom: 12px; right: 12px; }
@keyframes nd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.2); }
}
@media (max-width: 959px) {
  .nd-hero__copy {
    max-width: none;
  }
  .nd-hero__visual {
    max-width: 520px;
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .nd-hero {
    padding: calc(var(--nd-header-h, 78px) + 0.85rem) 0 2.35rem;
  }
  .nd-hero__title,
  .nd-hero h1.nd-hero__title,
  .nd-hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.05rem);
  }
  .nd-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nd-hero__actions .nd-btn {
    width: 100%;
    justify-content: center;
  }
  .nd-hero__chip {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }
  .nd-hero__chip--tl { top: 10px; left: 10px; }
  .nd-hero__chip--br { bottom: 10px; right: 10px; }
}

/* Service hero (inner) */
.nd-hero--service {
  background: var(--nd-gradient-navy);
  padding-bottom: 3rem;
}
.nd-hero--service h1 { color: #fff; }
.nd-hero--service .nd-hero__text { color: #cbd5e1; }

/* ——— Trust strip ——— */
.nd-trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 5;
}
.nd-trust-strip__item {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--nd-shadow);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nd-trust-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--nd-shadow-lg);
}
.nd-trust-strip__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}
.nd-trust-strip__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--nd-text-muted);
  line-height: 1.45;
}

/* ——— Icons ——— */
.nd-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  background: var(--nd-teal-soft);
  color: var(--nd-teal-dark);
  flex-shrink: 0;
}
.nd-icon-wrap--orange {
  background: var(--nd-orange-soft);
  color: var(--nd-orange);
}
.nd-icon-wrap--navy {
  background: rgba(11, 31, 58, 0.08);
  color: var(--nd-navy);
}
.nd-icon-wrap--sm {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}
.nd-icon-wrap i { line-height: 1; }

/* Feature / model grid */
.nd-feature-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}
.nd-feature-icons__item {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 1.35rem;
  box-shadow: var(--nd-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.nd-feature-icons__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--nd-shadow-lg);
}
.nd-feature-icons__item p {
  margin: 0.65rem 0 0;
  font-weight: 650;
  color: var(--nd-navy);
  font-size: 0.95rem;
}

/* Engagement models — balanced 3×2 grid */
.nd-engage .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.nd-engage-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: 20px;
  padding: 1.45rem 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.nd-engage-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--nd-teal) 0%, var(--nd-orange) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nd-engage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.1);
}
.nd-engage-card:hover::after {
  opacity: 1;
}
.nd-engage-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.nd-engage-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--nd-teal-dark);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(13, 148, 136, 0.06));
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.nd-engage-card__num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(11, 31, 58, 0.28);
}
.nd-engage-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
}
.nd-engage-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  flex: 1;
}
.nd-engage__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
}
@media (max-width: 960px) {
  .nd-engage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .nd-engage-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards (services / industries) — equal height */
.nd-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.nd-card {
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--nd-radius-lg);
  padding: 1.6rem;
  box-shadow: var(--nd-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.nd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nd-shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}
.nd-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
}
.nd-card__title a {
  color: inherit;
  text-decoration: none;
}
.nd-card__title a:hover { color: var(--nd-teal); }
.nd-card__text {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.94rem;
  flex: 1;
}
.nd-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.nd-card__actions .nd-btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.nd-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Industry cards — centered content (homepage + industries page) */
.nd-cards--industries .nd-card--compact {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}
.nd-cards--industries .nd-card--compact .nd-icon-wrap,
.nd-cards--industries .nd-card--compact .nd-card__icon {
  margin-left: auto;
  margin-right: auto;
}
.nd-cards--industries .nd-card--compact .nd-card__title,
.nd-cards--industries .nd-card--compact .nd-card__text {
  text-align: center;
  width: 100%;
}
.nd-cards--industries .nd-card--compact .nd-card__text {
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

/* Service cards — centered, refined CTAs */
.nd-cards--services {
  gap: 1.35rem;
}
.nd-cards--services .nd-card {
  align-items: center;
  text-align: center;
  padding: 1.85rem 1.4rem 1.35rem;
  border: 1px solid var(--nd-border);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.05);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) border-box;
}
.nd-cards--services .nd-card:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.1);
  transform: translateY(-5px);
}
.nd-cards--services .nd-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.35rem;
  border-radius: 16px;
  font-size: 1.55rem;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.14), rgba(13, 148, 136, 0.06));
  color: var(--nd-teal-dark);
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.nd-cards--services .nd-card__icon {
  margin: 0 auto 0.35rem;
}
.nd-cards--services .nd-card__title {
  font-size: 1.05rem;
  line-height: 1.3;
}
.nd-cards--services .nd-card__text {
  max-width: 28ch;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}
.nd-cards--services .nd-card__actions {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.6rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eef2f6;
}

/* Dedicated card action buttons (cleaner than generic .nd-btn) */
.nd-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nd-card__btn i {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
.nd-card__btn--ghost {
  background: #f4f7fa;
  color: var(--nd-navy);
  border-color: #e4eaf0;
}
.nd-card__btn--ghost:hover {
  background: #fff;
  border-color: var(--nd-teal);
  color: var(--nd-teal-dark);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}
.nd-card__btn--primary {
  background: var(--nd-orange);
  color: #fff;
  border-color: var(--nd-orange);
  box-shadow: 0 4px 12px rgba(240, 106, 26, 0.2);
}
.nd-card__btn--primary:hover {
  background: var(--nd-orange-hover);
  border-color: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(240, 106, 26, 0.26);
}
.nd-card__btn:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.35);
  outline-offset: 2px;
}

/* Services section bottom CTA — dual action cards (not pill bar) */
.nd-services-cta {
  margin-top: 2.75rem;
  padding: 1.75rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b1f3a 0%, #0f3d4a 48%, #0d9488 100%);
  color: #fff;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.18);
  position: relative;
  overflow: hidden;
}
.nd-services-cta::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(240, 106, 26, 0.18);
  pointer-events: none;
}
.nd-services-cta__copy,
.nd-services-cta__actions {
  position: relative;
  z-index: 1;
}
.nd-services-cta__copy {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.nd-services-cta__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.55rem;
}
.nd-services-cta__title {
  display: block;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.45rem;
}
.nd-services-cta__text {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
}
.nd-services-cta__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.nd-services-cta__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  backdrop-filter: blur(6px);
}
.nd-services-cta__link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.nd-services-cta__link--accent {
  background: var(--nd-orange);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(240, 106, 26, 0.28);
}
.nd-services-cta__link--accent:hover {
  background: var(--nd-orange-hover);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 106, 26, 0.34);
}
.nd-services-cta__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nd-services-cta__link--accent .nd-services-cta__icon {
  background: rgba(255, 255, 255, 0.2);
}
.nd-services-cta__label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.nd-services-cta__hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.15rem;
}
.nd-services-cta__link > .ri-arrow-right-line {
  font-size: 1.15rem;
  opacity: 0.9;
}
@media (max-width: 700px) {
  .nd-services-cta {
    padding: 1.35rem;
    border-radius: 20px;
  }
  .nd-services-cta__actions {
    grid-template-columns: 1fr;
  }
  .nd-cards--services .nd-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .nd-card__btn {
    font-size: 0.8rem;
    padding: 0.6rem 0.45rem;
    min-height: 42px;
  }
}

/* Bullet grids (service pages / fallbacks) */
.nd-bullet-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.nd-bullet-grid__item {
  background: #fff;
  border-radius: var(--nd-radius);
  padding: 1rem 1rem 1rem 2.6rem;
  position: relative;
  font-weight: 550;
  font-size: 0.94rem;
  color: var(--nd-navy);
  box-shadow: var(--nd-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nd-bullet-grid__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--nd-shadow);
}
.nd-bullet-grid__item::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--nd-gradient-teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}
.nd-section--navy .nd-bullet-grid__item {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  box-shadow: none;
}

/* Why NaviaDesk — balanced feature grid */
.nd-why .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.nd-why-card {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 18px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.04);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.nd-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
}
.nd-why-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--nd-teal-dark);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.15), rgba(13, 148, 136, 0.06));
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.nd-why-card__title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
}
.nd-why-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
@media (max-width: 960px) {
  .nd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .nd-why-grid {
    grid-template-columns: 1fr;
  }
}

/* Project capabilities — even 4×3 / 3×4 grid */
.nd-capabilities .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}
.nd-cap-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 18px;
  padding: 1.3rem 1.2rem 1.35rem;
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.04);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.nd-cap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nd-teal), var(--nd-orange));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.nd-cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.09);
}
.nd-cap-card:hover::before {
  opacity: 1;
}
.nd-cap-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--nd-teal-dark);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.15), rgba(13, 148, 136, 0.06));
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
  margin: 0 auto;
}
.nd-cap-card__body {
  width: 100%;
  text-align: center;
}
.nd-cap-card__title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
}
.nd-cap-card__text {
  margin: 0 auto;
  max-width: 22ch;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-cap__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
}
@media (max-width: 1100px) {
  .nd-cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .nd-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .nd-cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Process steps — timeline cards */
.nd-section__intro--on-dark .nd-section__title {
  color: #fff;
}
.nd-section__intro--on-dark .nd-section__lead {
  color: #94a3b8;
}
.nd-process .nd-section__intro--center {
  margin-bottom: 2.5rem;
}
.nd-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  counter-reset: none;
}
.nd-steps--timeline {
  position: relative;
}
.nd-steps__item {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.35rem 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: left;
  height: 100%;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.nd-steps__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0d9488, #f06a1a);
  opacity: 0.85;
}
.nd-steps__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(94, 234, 212, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}
.nd-steps__marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.nd-steps__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--nd-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.nd-steps__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.18);
  color: #5eead4;
  font-size: 1.2rem;
}
.nd-steps__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nd-steps__label {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}
.nd-steps__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94a3b8;
}
.nd-process__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2.25rem 0 0;
}
@media (max-width: 900px) {
  .nd-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .nd-steps {
    grid-template-columns: 1fr;
  }
}

/* Coverage */
.nd-coverage-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .nd-coverage-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.75rem 2rem;
    align-items: center;
  }
}
.nd-coverage-layout__visual {
  position: relative;
  border-radius: var(--nd-radius-lg);
  overflow: hidden;
  box-shadow: var(--nd-shadow-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: linear-gradient(145deg, #0b1f3a, #0f4a4a);
  aspect-ratio: 4 / 3;
}
.nd-coverage-layout__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nd-coverage-layout__chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--nd-navy);
  max-width: calc(100% - 1.5rem);
}
.nd-coverage-layout__chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}
.nd-coverage-layout__regions {
  min-width: 0;
}
.nd-coverage-layout__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.75rem;
}
.nd-coverage-layout .nd-disclaimer {
  margin-top: 1rem;
}
.nd-coverage {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.nd-coverage__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: var(--nd-radius-pill);
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nd-navy);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.04);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.nd-coverage__item:hover {
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.07);
}
.nd-coverage__item i {
  color: var(--nd-teal-dark);
  font-size: 1rem;
}
.nd-disclaimer {
  margin-top: 1.15rem;
  font-size: 0.9rem;
  color: var(--nd-text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Thank-you / form success */
.nd-thankyou-page {
  background: #f4f7fa;
}
.nd-thankyou {
  padding-top: calc(var(--nd-header-h, 78px) + 2rem);
  padding-bottom: 3.5rem;
}
.nd-thankyou__inner {
  max-width: 640px;
  text-align: center;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 22px;
  padding: 2.25rem 1.5rem 2rem;
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
}
.nd-thankyou__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.nd-thankyou__title {
  margin: 0 0 0.65rem;
  color: var(--nd-navy);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
}
.nd-thankyou__lead {
  margin: 0 0 1.25rem;
  color: var(--nd-text-muted);
  line-height: 1.65;
}
.nd-thankyou__wa {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1rem 1.25rem;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.nd-thankyou__wa-text {
  margin: 0 0 0.9rem;
  font-size: 0.94rem;
  color: #166534;
  line-height: 1.5;
}
.nd-thankyou__wa-btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.nd-thankyou__wa-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}
.nd-thankyou__wa-alt {
  margin: 0 0 1.25rem;
}
.nd-thankyou__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

/* ——— Service locations page ——— */
.nd-locations-page {
  background: #f4f7fa;
}
.nd-locations-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 38%, #123a4a 72%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-locations-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-locations-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-locations-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-locations-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-locations-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.15) 0%, transparent 70%);
}
.nd-locations-hero__ring {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: inset 0 0 50px rgba(13, 148, 136, 0.08);
}
.nd-locations-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-locations-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-locations-hero__row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-locations-hero__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.5rem;
  }
}
.nd-locations-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-locations-hero__kicker i {
  color: #5eead4;
}
.nd-locations-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.nd-locations-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-locations-hero__pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-locations-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
}
.nd-locations-hero__pills i {
  color: #5eead4;
}
.nd-locations-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.nd-locations-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.nd-locations-hero__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 0.95rem;
  backdrop-filter: blur(10px);
}
.nd-locations-hero__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.nd-locations-hero__stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.nd-locations-hero__stat span {
  font-size: 0.8rem;
  color: rgba(226, 236, 245, 0.7);
  font-weight: 550;
}
.nd-locations-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-locations-hero__ring {
    display: none;
  }
}
.nd-locations-highlights {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: transparent;
}
.nd-locations-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 700px) {
  .nd-locations-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-locations-highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.nd-locations-highlight {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-locations-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.08);
}
.nd-locations-highlight__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.nd-locations-highlight__title {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-locations-highlight__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-locations-regions {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
.nd-locations-regions__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.nd-locations-regions__head .nd-section__title {
  margin-bottom: 0.5rem;
}
.nd-locations-regions__head .nd-section__lead {
  margin: 0 auto;
}
.nd-locations-regions__panel {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.05);
}
.nd-locations-regions__panel .nd-coverage {
  justify-content: center;
}
.nd-locations-regions__panel .nd-disclaimer {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid #eef2f6;
  font-style: normal;
}
.nd-locations-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(120deg, #f0faf8 0%, #eef6fb 100%);
  border: 1px solid #d5e9e4;
  border-radius: 16px;
}
.nd-locations-note__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}
.nd-locations-note strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--nd-navy);
  margin-bottom: 0.25rem;
}
.nd-locations-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-locations-how {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
.nd-locations-how__panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(125deg, #0b1f3a 0%, #12304f 50%, #0f4a4a 100%);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  color: #fff;
  box-shadow: 0 20px 44px rgba(11, 31, 58, 0.16);
}
@media (min-width: 900px) {
  .nd-locations-how__panel {
    grid-template-columns: 1.35fr auto;
    padding: 2rem 2rem;
    gap: 2rem;
  }
}
.nd-locations-how__copy .nd-section__label--light,
.nd-section__label--light {
  color: #7dd3c7;
  background: rgba(13, 148, 136, 0.18);
}
.nd-locations-how__copy h2 {
  margin: 0.55rem 0 1.15rem;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.nd-locations-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.nd-locations-how__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.nd-locations-how__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: #0d9488;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 14px rgba(13, 148, 136, 0.3);
}
.nd-locations-how__steps strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.15rem;
}
.nd-locations-how__steps p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(226, 236, 245, 0.78);
}
.nd-locations-how__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 220px;
}
@media (min-width: 900px) {
  .nd-locations-how__actions .nd-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Featured band */
.nd-featured {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .nd-featured {
    grid-template-columns: 1fr 1fr;
  }
}
.nd-featured__visual {
  position: relative;
  border-radius: var(--nd-radius-lg);
  overflow: hidden;
  box-shadow: var(--nd-shadow-lg);
  background: linear-gradient(145deg, #0b1f3a, #0f4a4a);
  border: 1px solid rgba(11, 31, 58, 0.08);
  aspect-ratio: 4 / 3;
}
.nd-featured__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dual CTA */
/* Dual path CTAs — technician vs business */
.nd-paths .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}
.nd-path-card {
  border-radius: 24px;
  padding: 1.85rem 1.75rem 1.65rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nd-path-card:hover {
  transform: translateY(-5px);
}
.nd-path-card--light {
  background: linear-gradient(165deg, #ffffff 0%, #f3faf8 100%);
  border: 1px solid rgba(13, 148, 136, 0.16);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
  color: var(--nd-navy);
}
.nd-path-card--light:hover {
  box-shadow: 0 22px 48px rgba(11, 31, 58, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
}
.nd-path-card--dark {
  background: linear-gradient(155deg, #0b1f3a 0%, #12304f 55%, #0f4a4a 100%);
  color: #e2e8f0;
  box-shadow: 0 18px 44px rgba(11, 31, 58, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nd-path-card--dark::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(240, 106, 26, 0.16);
  pointer-events: none;
}
.nd-path-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}
.nd-path-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}
.nd-path-card--light .nd-path-card__icon {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(13, 148, 136, 0.06));
  color: var(--nd-teal-dark);
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.12);
}
.nd-path-card--dark .nd-path-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #5eead4;
}
.nd-path-card__badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.nd-path-card--light .nd-path-card__badge {
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.12);
}
.nd-path-card--dark .nd-path-card__badge {
  color: #fdba74;
  background: rgba(240, 106, 26, 0.18);
}
.nd-path-card__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.nd-path-card--dark .nd-path-card__title {
  color: #fff;
}
.nd-path-card__text {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.nd-path-card--light .nd-path-card__text {
  color: var(--nd-text-muted);
}
.nd-path-card--dark .nd-path-card__text {
  color: #cbd5e1;
}
.nd-path-card__list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.nd-path-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.4;
}
.nd-path-card__list i {
  margin-top: 0.1rem;
  font-size: 1rem;
  flex-shrink: 0;
}
.nd-path-card--light .nd-path-card__list i {
  color: var(--nd-teal);
}
.nd-path-card--dark .nd-path-card__list i {
  color: #5eead4;
}
.nd-path-card--light .nd-path-card__list li {
  color: var(--nd-navy);
}
.nd-path-card--dark .nd-path-card__list li {
  color: #e2e8f0;
}
.nd-path-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}
.nd-path-card__btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.nd-path-card__btn:hover i {
  transform: translateX(3px);
}
.nd-path-card__btn--teal {
  background: var(--nd-teal-dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}
.nd-path-card__btn--teal:hover {
  background: var(--nd-teal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.32);
}
.nd-path-card__btn--orange {
  background: var(--nd-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 106, 26, 0.3);
}
.nd-path-card__btn--orange:hover {
  background: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(240, 106, 26, 0.34);
}
@media (max-width: 800px) {
  .nd-paths-grid {
    grid-template-columns: 1fr;
  }
}

/* Legacy dual-cta aliases (if used elsewhere) */
.nd-dual-cta {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .nd-dual-cta {
    grid-template-columns: 1fr 1fr;
  }
}
.nd-dual-cta__card {
  border-radius: var(--nd-radius-lg);
  padding: 2rem;
  box-shadow: var(--nd-shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.nd-dual-cta__card--dark {
  background: var(--nd-navy);
  color: #e2e8f0;
}
.nd-dual-cta__card--dark h3 { color: #fff; }
.nd-dual-cta__card--accent {
  background: linear-gradient(145deg, #fff 0%, #eef6f5 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
}
.nd-dual-cta__card h3 {
  margin: 0;
  font-size: 1.3rem;
}
.nd-dual-cta__card p {
  margin: 0;
  flex: 1;
  color: inherit;
  opacity: 0.9;
}

/* CTA band (legacy) */
.nd-cta-band { text-align: center; }
.nd-cta-band .nd-section__lead { margin-inline: auto; }
.nd-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Final conversion CTA */
.nd-final-cta {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  color: #fff;
}
.nd-final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(240, 106, 26, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(94, 234, 212, 0.18), transparent 50%),
    linear-gradient(125deg, #0b1f3a 0%, #0f3d4a 42%, #0d9488 100%);
  z-index: 0;
}
.nd-final-cta .nd-container {
  position: relative;
  z-index: 1;
}
.nd-final-cta__panel {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nd-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
}
.nd-final-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}
.nd-final-cta__text {
  margin: 0 auto 1.25rem;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
}
.nd-final-cta__trust {
  list-style: none;
  margin: 0 auto 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
}
.nd-final-cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: #e2e8f0;
}
.nd-final-cta__trust i {
  color: #5eead4;
  font-size: 1rem;
}
.nd-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.nd-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nd-final-cta__btn i {
  font-size: 1.05rem;
  line-height: 1;
}
.nd-final-cta__btn--primary {
  background: #fff;
  color: var(--nd-navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.nd-final-cta__btn--primary:hover {
  transform: translateY(-2px);
  color: var(--nd-navy);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.nd-final-cta__btn--secondary {
  background: var(--nd-orange);
  color: #fff;
  border-color: var(--nd-orange);
  box-shadow: 0 10px 24px rgba(240, 106, 26, 0.28);
}
.nd-final-cta__btn--secondary:hover {
  background: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-2px);
}
.nd-final-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.nd-final-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.nd-final-cta__btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.nd-final-cta__btn--wa:hover {
  filter: brightness(1.05);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .nd-final-cta__actions {
    flex-direction: column;
  }
  .nd-final-cta__btn {
    width: 100%;
  }
}

/* Page chrome */
.nd-page-header {
  background: var(--nd-white);
  border-bottom: 1px solid var(--nd-border);
  padding: 2rem 0 1.75rem;
}
.nd-page-header h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.nd-breadcrumbs { font-size: 0.85rem; color: var(--nd-text-muted); }
.nd-breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.nd-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: #cbd5e1;
}
.nd-breadcrumbs a {
  text-decoration: none;
  color: var(--nd-teal-dark);
  font-weight: 550;
}

.nd-prose { max-width: 48rem; }
.nd-prose h2 { color: var(--nd-navy); margin-top: 2rem; font-weight: 800; }

.nd-service-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1000px) {
  .nd-service-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
}
.nd-sidebar-card {
  background: #fff;
  border-radius: var(--nd-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--nd-shadow-lg);
  position: sticky;
  top: calc(var(--nd-header-h) + 16px);
}
.nd-sidebar-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}
.nd-sidebar-card .nd-btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* ——— Single service page ——— */
.nd-service-page .nd-svc-hero {
  position: relative;
  padding: calc(var(--nd-header-h) + 2rem) 0 3.25rem;
  color: #fff;
  overflow: hidden;
}
.nd-svc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(240, 106, 26, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 55% at 10% 90%, rgba(13, 148, 136, 0.22), transparent 50%),
    linear-gradient(145deg, #0b1f3a 0%, #12304f 48%, #0f766e 100%);
  z-index: 0;
}
.nd-svc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .nd-svc-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.nd-breadcrumbs--light a { color: #99f6e4; }
.nd-breadcrumbs--light { color: #94a3b8; margin-bottom: 1rem; }
.nd-breadcrumbs--light .nd-breadcrumbs__list li:not(:last-child)::after { color: rgba(148, 163, 184, 0.5); }
.nd-svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
}
.nd-svc-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.nd-svc-hero__text {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
}
.nd-svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.nd-svc-hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.nd-svc-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.nd-svc-hero__chips i { color: #5eead4; }
.nd-svc-hero__visual {
  display: flex;
  justify-content: center;
}
.nd-svc-hero__card {
  width: min(100%, 360px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}
.nd-svc-hero__icon,
.nd-svc-hero__card .nd-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  font-size: 1.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #5eead4;
}
.nd-svc-hero__card-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.nd-svc-hero__card-meta {
  display: block;
  font-size: 0.88rem;
  color: #94a3b8;
}

.nd-svc-body {
  padding-top: 2.5rem;
}
.nd-svc-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.nd-svc-block {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
}
.nd-svc-block--dark {
  background: linear-gradient(155deg, #0b1f3a 0%, #12304f 55%, #0f4a4a 100%);
  border-color: transparent;
  color: #e2e8f0;
}
.nd-svc-block--dark h2,
.nd-svc-block--dark .nd-svc-block__head h2 {
  color: #fff;
}
.nd-svc-block--dark .nd-svc-block__head p {
  color: #94a3b8;
}
.nd-svc-block--dark .nd-svc-block__label {
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.nd-svc-block--form {
  background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
}
.nd-svc-block__head {
  margin-bottom: 1.15rem;
}
.nd-svc-block__head--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
}
.nd-svc-block__head--center .nd-svc-block__label {
  margin-left: auto;
  margin-right: auto;
}
.nd-svc-block__label {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.65rem;
}
.nd-svc-block__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
}
.nd-svc-block__head p {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.nd-svc-block--prose .nd-prose h2:first-child {
  display: none; /* seeded content often repeats "Service Overview" */
}
.nd-svc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.65rem;
}
.nd-svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.4;
}
.nd-svc-checklist i {
  color: var(--nd-teal);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.nd-svc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.nd-svc-feature {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nd-navy);
  line-height: 1.35;
}
.nd-svc-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
}
.nd-svc-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(240, 106, 26, 0.08);
  border: 1px solid rgba(240, 106, 26, 0.18);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.nd-svc-note__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 106, 26, 0.14);
  color: var(--nd-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nd-svc-note strong {
  display: block;
  color: var(--nd-navy);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.nd-svc-note p {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.nd-svc-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.nd-svc-related__card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 1.15rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nd-svc-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
}
.nd-svc-related__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.02em;
}
.nd-svc-related__text {
  font-size: 0.85rem;
  color: var(--nd-text-muted);
  line-height: 1.45;
}
.nd-svc-related__link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nd-teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nd-why-grid--service {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 700px) {
  .nd-why-grid--service {
    grid-template-columns: 1fr;
  }
}
.nd-svc-aside__card {
  border: 1px solid #e8eef3;
}
.nd-svc-aside__badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-orange);
  background: rgba(240, 106, 26, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
}
.nd-svc-aside__card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--nd-text-muted);
  line-height: 1.5;
}
.nd-svc-aside__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px solid #eef2f6;
}
.nd-svc-aside__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nd-navy);
  text-decoration: none;
}
.nd-svc-aside__links a:hover {
  color: var(--nd-teal-dark);
}
.nd-svc-aside__links i {
  color: var(--nd-teal);
}

.nd-map {
  border: 0;
  border-radius: var(--nd-radius);
  width: 100%;
  min-height: 280px;
  background: var(--nd-bg);
}

/* ——— Blog archive page ——— */
.nd-blog-page {
  background: #f4f7fa;
}
.nd-blog-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 40%, #123a4a 74%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 1.75rem) 0 3.25rem;
}
.nd-blog-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-blog-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-blog-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-blog-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-blog-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.14) 0%, transparent 70%);
}
.nd-blog-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-blog-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-blog-hero .nd-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.nd-blog-hero .nd-breadcrumbs a:hover {
  color: #99f6e4;
}
.nd-blog-hero .nd-breadcrumbs [aria-current="page"] {
  color: #fff;
}
.nd-blog-hero .nd-breadcrumbs__list li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}
.nd-blog-hero__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-blog-hero__row {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.7fr);
    gap: 2.25rem;
  }
}
.nd-blog-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-blog-hero__kicker i {
  color: #5eead4;
}
.nd-blog-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.nd-blog-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-blog-hero__topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-blog-hero__topics li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
}
.nd-blog-hero__topics i {
  color: #5eead4;
}
.nd-blog-hero__panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}
.nd-blog-hero__panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.5rem;
}
.nd-blog-hero__panel p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 236, 245, 0.85);
}
.nd-blog-hero__panel .nd-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.nd-blog-hero__panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  color: #a5f3e8 !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}
.nd-blog-hero__panel-link:hover {
  color: #fff !important;
}
.nd-blog-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.nd-blog-body {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
.nd-blog-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1000px) {
  .nd-blog-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
    gap: 1.75rem;
  }
}
.nd-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .nd-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nd-blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5ebf1;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  margin: 0;
}
.nd-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.09);
  border-color: rgba(13, 148, 136, 0.25);
}
.nd-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1f3a, #0f4a4a);
  text-decoration: none;
}
.nd-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.nd-blog-card:hover .nd-blog-card__media img {
  transform: scale(1.04);
}
.nd-blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(94, 234, 212, 0.55);
  font-size: 2.5rem;
}
.nd-blog-card__body {
  padding: 1.25rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nd-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  color: var(--nd-text-muted);
  font-weight: 550;
}
.nd-blog-card__cat {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--nd-teal-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nd-blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.nd-blog-card__title a {
  text-decoration: none;
  color: var(--nd-navy);
}
.nd-blog-card__title a:hover {
  color: var(--nd-teal-dark);
}
.nd-blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  flex: 1;
}
.nd-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--nd-teal-dark);
  text-decoration: none;
}
.nd-blog-card__more:hover {
  color: #0f766e;
}
.nd-blog-pagination {
  margin-top: 1.75rem;
}
.nd-blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.nd-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5ebf1;
  color: var(--nd-navy);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.88rem;
}
.nd-blog-pagination .page-numbers.current,
.nd-blog-pagination .page-numbers:hover {
  background: var(--nd-teal);
  border-color: var(--nd-teal);
  color: #fff;
}
.nd-blog-empty {
  text-align: center;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
}
.nd-blog-empty__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.nd-blog-empty h2 {
  margin: 0 0 0.5rem;
  color: var(--nd-navy);
}
.nd-blog-empty p {
  margin: 0 0 1.25rem;
  color: var(--nd-text-muted);
}
.nd-blog-layout__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1000px) {
  .nd-blog-layout__side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-blog-side-card {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
}
.nd-blog-side-card--cta {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  border-color: transparent;
  color: #e8f0f7;
}
.nd-blog-side-card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.75rem;
}
.nd-blog-side-card--cta .nd-blog-side-card__label {
  color: #7dd3c7;
}
.nd-blog-side-card--cta p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.78);
}
.nd-blog-side-card--cta .nd-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.nd-blog-side-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #a5f3e8 !important;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
}
.nd-blog-side-card__phone:hover {
  color: #fff !important;
}
.nd-blog-side-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.nd-blog-side-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nd-navy);
  transition: background 0.15s ease;
}
.nd-blog-side-links a:hover {
  background: #f4faf9;
  color: var(--nd-teal-dark);
}
.nd-blog-side-links i {
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
}

/* —— Single post (blog detail) —— */
.nd-post-page {
  background: #f4f7fa;
}
.nd-post-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 40%, #123a4a 74%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 1.75rem) 0 3.25rem;
}
.nd-post-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-post-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-post-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-post-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-post-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.14) 0%, transparent 70%);
}
.nd-post-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-post-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-post-hero .nd-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.nd-post-hero .nd-breadcrumbs a:hover {
  color: #99f6e4;
}
.nd-post-hero .nd-breadcrumbs [aria-current="page"] {
  color: #fff;
  max-width: 28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
.nd-post-hero .nd-breadcrumbs__list li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}
.nd-post-hero__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-post-hero__row {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.65fr);
    gap: 2.25rem;
  }
}
.nd-post-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-post-hero__kicker i {
  color: #5eead4;
}
.nd-post-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
  text-wrap: balance;
  max-width: 40rem;
}
.nd-post-hero__lead {
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-post-hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-post-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 600;
  color: #e8f0f7;
  line-height: 1.3;
}
.nd-post-hero__meta i {
  color: #5eead4;
  font-size: 1rem;
  flex-shrink: 0;
}
.nd-post-hero__panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}
.nd-post-hero__panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.5rem;
}
.nd-post-hero__panel p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 236, 245, 0.85);
}
.nd-post-hero__panel .nd-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.nd-post-hero__panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  color: #a5f3e8 !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}
.nd-post-hero__panel-link:hover {
  color: #fff !important;
}
.nd-post-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.nd-post-body {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.nd-post-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1000px) {
  .nd-post-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
    gap: 1.75rem;
  }
}
.nd-post-article {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.05);
  margin: 0;
}
.nd-post-article__media {
  margin: 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1f3a, #0f4a4a);
}
.nd-post-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nd-post-article__content {
  max-width: none;
  padding: 1.75rem 1.4rem 0.5rem;
  color: var(--nd-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 700px) {
  .nd-post-article__content {
    padding: 2.1rem 2.15rem 0.75rem;
  }
}
.nd-post-article__content > *:first-child {
  margin-top: 0;
}
.nd-post-article__content h2,
.nd-post-article__content .wp-block-heading {
  margin: 1.85rem 0 0.7rem;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #eef2f6;
}
.nd-post-article__content h2:first-child,
.nd-post-article__content > h2:first-of-type {
  margin-top: 0.15rem;
}
.nd-post-article__content h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--nd-navy);
}
.nd-post-article__content p {
  margin: 0 0 1.05rem;
}
.nd-post-article__content ul,
.nd-post-article__content ol {
  margin: 0 0 1.2rem;
  padding-left: 1.25rem;
}
.nd-post-article__content li {
  margin-bottom: 0.4rem;
}
.nd-post-article__content a {
  color: var(--nd-teal-dark);
  font-weight: 600;
  text-underline-offset: 2px;
}
.nd-post-article__content a:hover {
  color: #0f766e;
}
.nd-post-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}
.nd-post-article__content blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--nd-teal);
  background: #f4faf9;
  border-radius: 0 14px 14px 0;
  color: var(--nd-navy);
  font-weight: 550;
}
.nd-post-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}
.nd-post-article__content th,
.nd-post-article__content td {
  border: 1px solid #e5ebf1;
  padding: 0.55rem 0.7rem;
  text-align: left;
}
.nd-post-article__content th {
  background: #f4f7fa;
  color: var(--nd-navy);
  font-weight: 750;
}
.nd-post-article__footer {
  padding: 0 1.4rem 1.6rem;
}
@media (min-width: 700px) {
  .nd-post-article__footer {
    padding: 0 2.15rem 2rem;
  }
}
.nd-post-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.nd-post-article__tags-label {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-text-muted);
}
.nd-post-article__tag {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--nd-teal-dark);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}
.nd-post-article__tag:hover {
  background: rgba(13, 148, 136, 0.18);
  color: #0f766e;
}
.nd-post-article__cta {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  color: #e8f0f7;
}
@media (min-width: 700px) {
  .nd-post-article__cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
  }
}
.nd-post-article__cta-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
  margin-bottom: 0.35rem;
}
.nd-post-article__cta-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.82);
}
.nd-post-article__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nd-post-article__cta-actions .nd-btn {
  white-space: nowrap;
}
.nd-post-article__cta-actions .nd-post-article__cta-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #e8f0f7 !important;
}
.nd-post-article__cta-actions .nd-post-article__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}
.nd-post-layout__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1000px) {
  .nd-post-layout__side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-post-related-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.nd-post-related-side__list a {
  display: block;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nd-post-related-side__list a:hover {
  background: #f4faf9;
}
.nd-post-related-side__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nd-navy);
  line-height: 1.35;
  margin-bottom: 0.2rem;
}
.nd-post-related-side__list a:hover .nd-post-related-side__title {
  color: var(--nd-teal-dark);
}
.nd-post-related-side__date {
  display: block;
  font-size: 0.78rem;
  color: var(--nd-text-muted);
  font-weight: 550;
}
.nd-post-related {
  padding-top: 0.25rem;
  padding-bottom: 3.5rem;
  background: #f4f7fa;
}
.nd-post-related__head {
  margin-bottom: 1.25rem;
}
.nd-post-related__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.35rem;
}
.nd-post-related__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nd-navy);
}
@media (min-width: 700px) {
  .nd-post-related .nd-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nd-post-related .nd-blog-card__title {
  font-size: 1rem;
}

.nd-meta { font-size: 0.85rem; color: var(--nd-text-muted); margin-bottom: 0.5rem; }

.nd-empty-state {
  background: #fff;
  border: 1px dashed var(--nd-border);
  border-radius: var(--nd-radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--nd-text-muted);
  box-shadow: var(--nd-shadow-sm);
}

/* Case studies section */
.nd-cases {
  position: relative;
  overflow: hidden;
}
.nd-cases .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}
.nd-cases-card {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.55rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.nd-cases-card--link {
  text-decoration: none;
  color: inherit;
}
.nd-cases-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.09);
}
.nd-cases-card__badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.85rem;
}
.nd-cases-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--nd-teal-dark);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(13, 148, 136, 0.06));
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
  margin-bottom: 0.85rem;
}
.nd-cases-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
}
.nd-cases-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--nd-teal-dark);
  margin-bottom: 0.55rem;
}
.nd-cases-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  flex: 1;
}
.nd-cases-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--nd-teal-dark);
  margin-top: auto;
}

/* Empty-state showcase */
.nd-cases-showcase {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.05);
  overflow: hidden;
  position: relative;
}
@media (min-width: 860px) {
  .nd-cases-showcase {
    grid-template-columns: 220px 1fr;
    padding: 1.75rem 1.75rem;
    gap: 2rem;
  }
}
.nd-cases-showcase__visual {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nd-cases-showcase__orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, rgba(13, 148, 136, 0.04) 55%, transparent 70%);
}
.nd-cases-showcase__stack {
  position: relative;
  width: 120px;
  height: 130px;
}
.nd-cases-showcase__sheet {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(155deg, #0b1f3a, #12304f);
  color: #5eead4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.2);
  transform: rotate(-8deg) translate(-10px, 8px);
}
.nd-cases-showcase__sheet--mid {
  background: linear-gradient(155deg, #0f766e, #0d9488);
  color: #fff;
  transform: rotate(4deg) translate(6px, 0);
  z-index: 1;
}
.nd-cases-showcase__sheet--front {
  background: #fff;
  color: var(--nd-teal-dark);
  border: 1px solid #e5ebf1;
  transform: rotate(-2deg) translate(0, -6px);
  z-index: 2;
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.12);
}
.nd-cases-showcase__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
}
.nd-cases-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.18);
  animation: nd-pulse-dot 1.6s ease infinite;
}
@keyframes nd-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.08); }
}
.nd-cases-showcase__copy h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nd-navy);
  line-height: 1.25;
}
.nd-cases-showcase__copy > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--nd-text-muted);
  max-width: 40rem;
}
.nd-cases-showcase__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
@media (max-width: 520px) {
  .nd-cases-showcase__checklist { grid-template-columns: 1fr; }
}
.nd-cases-showcase__checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--nd-navy);
}
.nd-cases-showcase__checklist i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nd-cases-themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}
.nd-cases-theme {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nd-cases-theme:hover {
  border-color: rgba(13, 148, 136, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.07);
}
.nd-cases-theme__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
}
.nd-cases-theme__title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-cases-theme__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-cases-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  background: linear-gradient(135deg, #0b1f3a 0%, #0f3d4a 50%, #0d9488 100%);
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
}
.nd-cases-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #5eead4;
  flex-shrink: 0;
}
.nd-cases-panel__copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: #fff;
}
.nd-cases-panel__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
  max-width: 46rem;
}
.nd-cases-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}
.nd-cases-panel__actions .nd-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.nd-cases-panel__actions .nd-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
@media (max-width: 960px) {
  .nd-cases-grid,
  .nd-cases-themes {
    grid-template-columns: 1fr;
  }
  .nd-cases-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nd-cases-panel__icon {
    margin: 0 auto;
  }
  .nd-cases-panel__copy p {
    margin-inline: auto;
  }
  .nd-cases-panel__actions {
    justify-content: center;
  }
}

/* FAQ section layout (homepage) */
.nd-faq-section .nd-section__intro--center {
  margin-bottom: 2rem;
}
.nd-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.nd-faq-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.75rem 0 0;
}

/* ——— FAQ full page ——— */
.nd-faq-page {
  background: #f4f7fa;
}
.nd-faq-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 38%, #123a4a 72%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-faq-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-faq-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-faq-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.nd-faq-hero__glow--a {
  width: 440px;
  height: 440px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.42) 0%, transparent 68%);
}
.nd-faq-hero__glow--b {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.16) 0%, transparent 70%);
}
.nd-faq-hero__ring {
  position: absolute;
  right: 12%;
  top: 22%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: inset 0 0 50px rgba(13, 148, 136, 0.08);
}
.nd-faq-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-faq-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2.5rem;
  }
}
.nd-faq-hero__copy {
  min-width: 0;
}
.nd-faq-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-faq-hero .nd-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.nd-faq-hero .nd-breadcrumbs a:hover {
  color: #99f6e4;
}
.nd-faq-hero .nd-breadcrumbs [aria-current="page"] {
  color: #fff;
}
.nd-faq-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-faq-hero__kicker i {
  color: #5eead4;
  font-size: 0.95rem;
}
.nd-faq-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.nd-faq-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-faq-hero__topics {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-faq-hero__topics li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nd-faq-hero__topics li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(94, 234, 212, 0.35);
}
.nd-faq-hero__topics i {
  color: #5eead4;
  font-size: 1.05rem;
}
.nd-faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.nd-faq-hero__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: #f06a1a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(240, 106, 26, 0.32);
  transition: transform 0.15s ease, background 0.15s ease;
}
.nd-faq-hero__action:hover {
  background: #d95a10;
  transform: translateY(-1px);
  color: #fff !important;
}
.nd-faq-hero__action--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  color: #e8f0f7 !important;
}
.nd-faq-hero__action--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

/* Glass overview panel */
.nd-faq-hero__panel {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nd-faq-hero__panel-head {
  padding: 1.15rem 1.15rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.1) 0%, transparent 100%);
}
.nd-faq-hero__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.nd-faq-hero__panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.22);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08);
}
.nd-faq-hero__panel-badge i {
  font-size: 0.9rem;
  color: #5eead4;
}
.nd-faq-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem 0.45rem 0.55rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
}
.nd-faq-hero__stat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.35rem;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.45), rgba(15, 61, 74, 0.9));
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.nd-faq-hero__stat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.nd-faq-hero__stat-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.nd-faq-hero__stat-sub {
  font-size: 0.72rem;
  font-weight: 550;
  color: rgba(226, 236, 245, 0.7);
  line-height: 1.2;
}
.nd-faq-hero__panel-lead {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(226, 236, 245, 0.82);
  max-width: 28rem;
}
/* Legacy count classes */
.nd-faq-hero__panel-count,
.nd-faq-hero__panel-count-num,
.nd-faq-hero__panel-count-label {
  display: none;
}
.nd-faq-hero__panel-list {
  list-style: none;
  margin: 0;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.nd-faq-hero__panel-list li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.nd-faq-hero__panel-list li:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(94, 234, 212, 0.22);
  transform: translateY(-1px);
}
.nd-faq-hero__panel-step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(153, 246, 228, 0.7);
  min-width: 1.25rem;
}
.nd-faq-hero__panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.24);
  border: 1px solid rgba(94, 234, 212, 0.22);
  color: #5eead4;
  font-size: 1.05rem;
}
.nd-faq-hero__panel-copy {
  min-width: 0;
}
.nd-faq-hero__panel-list strong,
.nd-faq-hero__panel-copy strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.nd-faq-hero__panel-list span,
.nd-faq-hero__panel-copy span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(226, 236, 245, 0.72);
}
.nd-faq-hero__panel-foot {
  display: grid;
  gap: 0.5rem;
  padding: 0.95rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.nd-faq-hero__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.nd-faq-hero__wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
  color: #fff !important;
}
.nd-faq-hero__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(165, 243, 232, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #a5f3e8 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.nd-faq-hero__contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 243, 232, 0.5);
  color: #fff !important;
}
.nd-faq-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-faq-hero__ring {
    display: none;
  }
  .nd-faq-hero__panel {
    max-width: 420px;
  }
}
.nd-faq-page__body {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
.nd-faq-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .nd-faq-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
    gap: 1.85rem;
  }
}
.nd-faq-layout__intro {
  margin-bottom: 1.25rem;
}
.nd-faq-layout__heading {
  margin: 0.4rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nd-navy);
}
.nd-faq-layout__intro p {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}
.nd-faq-layout__list .nd-faq {
  gap: 0.7rem;
}
.nd-faq-layout__list .nd-faq__item {
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.04);
}
.nd-faq-layout__list .nd-faq__question {
  padding: 1.05rem 1.15rem;
}
.nd-faq-layout__list .nd-faq__answer {
  padding-left: 4.15rem;
}
@media (max-width: 560px) {
  .nd-faq-layout__list .nd-faq__answer {
    padding-left: 1rem;
  }
}
.nd-faq-layout__note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--nd-text-muted);
}
.nd-faq-layout__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .nd-faq-layout__side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-faq-help-card {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.4rem;
  color: #e8f0f7;
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.16);
}
.nd-faq-help-card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
  margin-bottom: 0.45rem;
}
.nd-faq-help-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.nd-faq-help-card__text {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.78);
}
.nd-faq-help-card__actions {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.nd-faq-help-card__actions .nd-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.nd-faq-help-card__actions .nd-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.nd-faq-help-card__contact {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.5rem;
}
.nd-faq-help-card__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #a5f3e8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.nd-faq-help-card__contact a:hover {
  color: #fff;
}
.nd-faq-links {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.1rem 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  display: grid;
  gap: 0.55rem;
}
.nd-faq-links__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.2rem;
}
.nd-faq-links__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nd-faq-links__item:hover {
  background: #f4faf9;
  border-color: #e0eeeb;
  color: inherit;
}
.nd-faq-links__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
}
.nd-faq-links__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--nd-navy);
  margin-bottom: 0.1rem;
}
.nd-faq-links__item span span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--nd-text-muted);
  font-weight: 500;
}
.nd-faq-links__item > i {
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
}

/* Testimonials section */
.nd-testimonials {
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(240, 106, 26, 0.06), transparent 55%),
    var(--nd-bg, #f8fafc);
}
.nd-testimonials .nd-section__intro--center {
  margin-bottom: 2.25rem;
}
.nd-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}
.nd-testi-card {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.nd-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 106, 26, 0.25);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.08);
}
.nd-testi-card__quote {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--nd-orange);
  background: rgba(240, 106, 26, 0.12);
  margin-bottom: 0.9rem;
}
.nd-testi-card__text {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--nd-text-muted);
  flex: 1;
  font-style: italic;
}
.nd-testi-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.nd-testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0b1f3a, #12304f);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.nd-testi-card__meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.01em;
}
.nd-testi-card__meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--nd-text-muted);
  margin-top: 0.1rem;
}
.nd-testi-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nd-orange);
  background: rgba(240, 106, 26, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

/* Featured integrity block (empty state) */
.nd-testi-featured {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.15rem;
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
  position: relative;
}
@media (min-width: 900px) {
  .nd-testi-featured {
    grid-template-columns: 1.4fr 0.75fr;
  }
}
.nd-testi-featured__quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(240, 106, 26, 0.12);
  pointer-events: none;
}
.nd-testi-featured__body {
  padding: 1.75rem 1.5rem 1.6rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .nd-testi-featured__body {
    padding: 2rem 1.75rem 1.85rem 2rem;
    border-right: 1px solid #eef2f6;
  }
}
.nd-testi-featured__badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-orange);
  background: rgba(240, 106, 26, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.9rem;
}
.nd-testi-featured__text {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  font-style: normal;
  quotes: none;
  max-width: 38rem;
}
.nd-testi-featured__byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}
.nd-testi-featured__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.nd-testi-featured__byline strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--nd-navy);
}
.nd-testi-featured__byline span span {
  display: block;
  font-size: 0.82rem;
  color: var(--nd-text-muted);
  margin-top: 0.1rem;
  font-weight: 500;
}
.nd-testi-featured__aside {
  padding: 1.5rem 1.35rem;
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  color: #e8f0f7;
}
@media (min-width: 900px) {
  .nd-testi-featured__aside {
    padding: 1.85rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.nd-testi-featured__aside-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
}
.nd-testi-featured__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.nd-testi-featured__aside li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #dce7f1;
}
.nd-testi-featured__aside i {
  color: #2dd4bf;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nd-testi-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}
.nd-testi-pillar {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1.25rem;
  text-align: left;
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-testi-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 106, 26, 0.22);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.07);
}
.nd-testi-pillar__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 106, 26, 0.12);
  color: var(--nd-orange);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.nd-testi-pillar__title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-testi-pillar__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-testi-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
}
.nd-testi-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(240, 106, 26, 0.12);
  color: var(--nd-orange);
  flex-shrink: 0;
}
.nd-testi-panel__copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  margin-bottom: 0.3rem;
}
.nd-testi-panel__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  max-width: 44rem;
}
.nd-testi-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .nd-testi-grid,
  .nd-testi-pillars {
    grid-template-columns: 1fr;
  }
  .nd-testi-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nd-testi-panel__icon {
    margin: 0 auto;
  }
  .nd-testi-panel__actions {
    justify-content: center;
  }
  .nd-testi-panel__copy p {
    margin-inline: auto;
  }
  .nd-testi-panel__actions {
    justify-content: center;
  }
  .nd-testi-card__tag {
    align-self: center;
  }
  .nd-testi-card__meta {
    justify-content: center;
    text-align: left;
  }
  .nd-testi-card {
    text-align: center;
    align-items: center;
  }
  .nd-testi-card__quote {
    margin-left: auto;
    margin-right: auto;
  }
}

.nd-404 {
  text-align: center;
  padding: 6rem 0 4rem;
}
.nd-404 h1 { font-size: 2.25rem; font-weight: 800; }

/* Footer */
/* Footer — clean enterprise layout */
.nd-footer {
  background: #0b1f3a;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  font-size: 0.94rem;
}
.nd-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nd-footer a:hover {
  color: #5eead4;
}

/* Slim top strip */
.nd-footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.nd-footer__top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.95rem 0;
}
.nd-footer__top-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}
.nd-footer__top-copy strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}
.nd-footer__top-copy span {
  color: #94a3b8;
  font-size: 0.88rem;
}
.nd-footer__top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-footer__top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.88rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
/* Higher specificity than .nd-footer a so label colors are not muted */
.nd-footer a.nd-footer__top-btn--primary {
  background: var(--nd-orange);
  color: #ffffff;
  border: 2px solid var(--nd-orange);
  box-shadow: 0 8px 18px rgba(240, 106, 26, 0.28);
}
.nd-footer a.nd-footer__top-btn--primary:hover {
  background: var(--nd-orange-hover);
  border-color: var(--nd-orange-hover);
  color: #ffffff;
  transform: translateY(-1px);
}
.nd-footer a.nd-footer__top-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.nd-footer a.nd-footer__top-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #5eead4;
  color: #5eead4;
}
.nd-footer a.nd-footer__top-btn--ghost i {
  color: inherit;
}

.nd-footer__main {
  padding-top: 3rem;
}
.nd-footer__grid {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .nd-footer__grid {
    grid-template-columns: minmax(220px, 1.2fr) minmax(140px, 0.85fr) minmax(170px, 1fr) minmax(240px, 1.1fr);
  }
}

.nd-footer__brand .nd-logo {
  margin-bottom: 0.15rem;
}
.nd-footer__brand p {
  margin: 0.85rem 0 0;
  max-width: 32ch;
  line-height: 1.65;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Compact chips — must override .nd-footer ul column layout */
.nd-footer__pills {
  list-style: none;
  margin: 1rem 0 0 !important;
  padding: 0;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 0.4rem !important;
  width: auto;
  max-width: 100%;
}
.nd-footer__pills li {
  display: inline-flex;
  align-items: center;
  width: auto !important;
  max-width: max-content;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.14);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  white-space: nowrap;
}

.nd-footer h3,
.nd-footer__col h3 {
  margin: 0.15rem 0 1rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nd-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nd-footer__col ul a {
  display: inline-block;
  font-size: 0.9rem;
  color: #cbd5e1;
  padding: 0.12rem 0;
  line-height: 1.35;
}
.nd-footer__col ul a:hover {
  color: #5eead4;
}

/* Contact — cleaner, less boxed */
.nd-footer__col--contact .nd-footer__contact-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.nd-footer__company {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.nd-footer__address {
  margin: 0 0 0.9rem;
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.55;
}
.nd-footer__contact-list {
  gap: 0.55rem !important;
  margin: 0 0 0.85rem !important;
}
.nd-footer__contact-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 550;
}
.nd-footer__contact-list a:hover {
  color: #5eead4;
}
.nd-footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #5eead4;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.nd-footer__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.45;
}
.nd-footer__hours i {
  color: #5eead4;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.nd-footer__quick {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nd-footer__quick a {
  font-size: 0.88rem;
  font-weight: 700;
  color: #99f6e4;
}
.nd-footer__quick a:hover {
  color: #fff;
}

.nd-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nd-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1.15rem;
  font-size: 0.84rem;
  color: #94a3b8;
}
.nd-footer__bottom-inner p {
  margin: 0;
}
.nd-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.nd-footer__legal a {
  color: #94a3b8;
  font-size: 0.84rem;
}
.nd-footer__legal a:hover {
  color: #5eead4;
}

.nd-footer .nd-logo {
  color: #fff;
  gap: 0.65rem;
}
.nd-footer .nd-logo:hover {
  color: #5eead4;
}
.nd-footer .nd-logo__word {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nd-footer .nd-logo__word-navia {
  color: #fff;
}
.nd-footer .nd-logo__word-desk {
  color: #5eead4;
}
.nd-footer .nd-logo:hover .nd-logo__word-desk {
  color: #99f6e4;
}
.nd-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.nd-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
}
.nd-footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.nd-footer__social--wa:hover {
  background: #25d366 !important;
  color: #fff !important;
}
@media (max-width: 640px) {
  .nd-footer__top-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .nd-footer__top-copy {
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
  }
  .nd-footer__top-actions {
    justify-content: center;
  }
  .nd-footer__pills {
    justify-content: flex-start;
  }
  .nd-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .nd-footer__legal {
    justify-content: center;
  }
}

/* Float + mobile bar */
.nd-float-wa {
  position: fixed;
  right: 1.35rem;
  bottom: 5.75rem;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--nd-shadow-lg);
  text-decoration: none;
  font-size: 1.8rem;
  transition: transform 0.25s ease;
}
.nd-float-wa:hover {
  transform: scale(1.08);
  color: #fff !important;
}
.nd-mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--nd-navy);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .nd-mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
  }
  body.naviadesk-theme { padding-bottom: 62px; }
  .nd-float-wa {
    bottom: 5.1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
}
.nd-mobile-cta-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.35rem;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 650;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 54px;
}
.nd-mobile-cta-bar__item i { font-size: 1.15rem; }
.nd-mobile-cta-bar__item--cta {
  background: var(--nd-orange);
  border-right: 0;
}
.nd-mobile-cta-bar__item--wa { background: #128c7e; }

.nd-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100000;
  background: var(--nd-teal);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}
.nd-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ========== Service page — Elementor full layout (banner + body) ========== */
.nd-service-page--elementor {
  background: #fff;
  min-height: 40vh;
}
.nd-service-elementor {
  width: 100%;
}
.nd-service-elementor .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}
/* Let Elementor hero sections sit flush under the fixed header when full-width. */
.nd-service-page--elementor > .nd-service-elementor > .elementor > .elementor-section:first-child {
  margin-top: 0;
}
/* Editor / preview: give empty canvas a comfortable drop zone. */
.elementor-editor-active .nd-service-page--elementor,
.elementor-editor-preview .nd-service-page--elementor {
  min-height: 60vh;
}

/* ========== Service page v2 — distinctive layout ========== */
.nd-service-page--v2 {
  background: #f4f7fa;
}
.nd-sp-hero {
  position: relative;
  padding: calc(var(--nd-header-h) + 2.25rem) 0 0;
  color: #fff;
  overflow: hidden;
}
.nd-sp-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(240, 106, 26, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(13, 148, 136, 0.35), transparent 55%),
    linear-gradient(135deg, #071525 0%, #0b1f3a 40%, #0f4a48 100%);
  z-index: 0;
}
.nd-sp-hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}
.nd-sp-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
}
.nd-sp-hero__row {
  display: grid;
  gap: 2rem;
  margin-top: 0.75rem;
}
@media (min-width: 960px) {
  .nd-sp-hero__row {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
  }
  .nd-sp-hero__row--media {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 2rem 2.25rem;
  }
}
.nd-sp-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.nd-sp-hero__icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.35), rgba(240, 106, 26, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #5eead4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.nd-sp-hero__kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
}
.nd-sp-hero__title {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.nd-sp-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #cbd5e1;
}
.nd-sp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nd-sp-hero__media {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0b1f3a;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.nd-sp-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nd-sp-hero__media-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.18) 0%, transparent 45%),
    linear-gradient(to top, rgba(7, 21, 37, 0.22) 0%, transparent 38%);
  z-index: 1;
}
.nd-sp-hero__media-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--nd-navy);
  max-width: calc(100% - 1.5rem);
  line-height: 1.25;
}
.nd-sp-hero__media-chip i {
  color: var(--nd-teal);
  font-size: 1rem;
  flex-shrink: 0;
}
.nd-sp-hero__media-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}
.nd-sp-hero__media-chip--tl { top: 12px; left: 12px; }
.nd-sp-hero__media-chip--br { bottom: 12px; right: 12px; }
@media (max-width: 600px) {
  .nd-sp-hero__media-chip {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }
  .nd-sp-hero__media-chip--tl { top: 10px; left: 10px; }
  .nd-sp-hero__media-chip--br { bottom: 10px; right: 10px; }
}
.nd-sp-hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: center;
}
.nd-sp-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.nd-sp-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}
.nd-sp-stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.4rem;
}
.nd-sp-stat strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}
.nd-sp-hero__curve {
  position: relative;
  z-index: 1;
  height: 48px;
  margin-top: -1px;
  background: #f4f7fa;
  border-radius: 32px 32px 0 0;
}

.nd-sp-body {
  padding: 0.5rem 0 3.5rem;
}
.nd-sp-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 1040px) {
  .nd-sp-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 300px);
    align-items: start;
  }
}
.nd-sp-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nd-sp-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5ebf1;
}
.nd-sp-section:last-child {
  border-bottom: 0;
}
.nd-sp-section--tint .nd-sp-section__content,
.nd-sp-section--why .nd-sp-section__content,
.nd-sp-section--overview .nd-sp-section__content,
.nd-sp-section--faq .nd-sp-section__content {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
}
.nd-sp-section--tint .nd-sp-section__content {
  background: linear-gradient(165deg, #ffffff 0%, #f0faf8 100%);
}
.nd-sp-section__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.nd-sp-section__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.28);
  flex-shrink: 0;
}
.nd-sp-section__rail-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.45), rgba(13, 148, 136, 0.05));
  border-radius: 2px;
}
.nd-sp-section__label {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.55rem;
}
.nd-sp-section__content > h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nd-navy);
}
.nd-sp-section__intro {
  margin: -0.25rem 0 1.1rem;
  color: var(--nd-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.nd-sp-prose h2:first-child {
  display: none;
}
.nd-sp-prose {
  color: var(--nd-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.nd-sp-prose h3 {
  color: var(--nd-navy);
  margin-top: 1.25rem;
}

/* —— Service overview —— */
.nd-sp-section--overview .nd-sp-section__content {
  background:
    linear-gradient(180deg, rgba(13, 148, 136, 0.05) 0%, transparent 120px),
    #fff;
  border-color: #dce8e6;
  padding: 1.75rem 1.6rem 1.85rem;
}
.nd-sp-overview__head {
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #e8eef3;
}
.nd-sp-overview__head h2 {
  margin-bottom: 0.55rem;
}
.nd-sp-overview__lead {
  margin: 0;
  max-width: 48rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-sp-overview__prose {
  margin: 0 0 1.15rem;
  max-width: 48rem;
}
.nd-sp-overview__prose > *:first-child {
  margin-top: 0;
}
.nd-sp-overview__prose > *:last-child {
  margin-bottom: 0;
}
.nd-sp-overview__prose h2,
.nd-sp-overview__prose h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--nd-navy);
}
.nd-sp-overview__prose p {
  margin: 0 0 0.85rem;
}
.nd-sp-overview__prose p:last-child {
  margin-bottom: 0;
}
.nd-sp-overview__prose ul {
  list-style: none;
  margin: 0.75rem 0 0.95rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.nd-sp-overview__prose ul li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 2.15rem;
  background: #f4faf9;
  border: 1px solid #e0eeeb;
  border-radius: 12px;
  color: var(--nd-navy);
  font-size: 0.92rem;
  font-weight: 550;
  line-height: 1.4;
}
.nd-sp-overview__prose ul li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 0.85rem;
  height: 0.85rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.18);
  box-shadow: inset 0 0 0 3px #0d9488;
}
/* Full-width engage strip — avoids empty column beside long prose */
.nd-sp-overview__engage {
  margin: 0 0 1.15rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  color: #e8f0f7;
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.16);
}
.nd-sp-overview__engage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  margin-bottom: 0.85rem;
}
.nd-sp-overview__engage-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
}
.nd-sp-overview__engage-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(232, 240, 247, 0.72);
  max-width: 28rem;
}
.nd-sp-overview__engage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .nd-sp-overview__engage-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1rem;
  }
}
@media (min-width: 1024px) {
  .nd-sp-overview__engage-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.nd-sp-overview__engage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #dce7f1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
}
.nd-sp-overview__engage-list i {
  color: #2dd4bf;
  font-size: 1.05rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-sp-overview__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
}
@media (min-width: 640px) {
  .nd-sp-overview__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nd-sp-overview__hl {
  background: #f7fbfa;
  border: 1px solid #e2eeeb;
  border-radius: 16px;
  padding: 1rem 1rem 1.05rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nd-sp-overview__hl:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.06);
  transform: translateY(-2px);
}
.nd-sp-overview__hl-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}
.nd-sp-overview__hl-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}
.nd-sp-overview__hl-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-sp-overview__need {
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(120deg, #f0faf8 0%, #eef6fb 100%);
  border: 1px solid #d5e9e4;
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}
@media (min-width: 800px) {
  .nd-sp-overview__need {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 1.25rem;
  }
}
.nd-sp-overview__need-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.nd-sp-overview__need-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
}
.nd-sp-overview__need-copy strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  margin-bottom: 0.25rem;
}
.nd-sp-overview__need-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-sp-overview__need-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.nd-sp-overview__need-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.4;
}
.nd-sp-overview__need-list i {
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

/* Bento devices */
.nd-sp-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .nd-sp-bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .nd-sp-bento__item--wide {
    grid-column: span 2;
  }
}
.nd-sp-bento__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f8fafc;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nd-navy);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-sp-bento__item:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.06);
}
.nd-sp-bento__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Work cards */
.nd-sp-work {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}
.nd-sp-work__card {
  position: relative;
  background: #fff;
  border: 1px solid #e2ebe8;
  border-radius: 18px;
  padding: 1.2rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 140px;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nd-sp-work__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.08);
}
.nd-sp-work__n {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(13, 148, 136, 0.45);
  letter-spacing: 0.04em;
}
.nd-sp-work__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(240, 106, 26, 0.1));
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
}
.nd-sp-work__text {
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--nd-navy);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

/* Industries inside service page */
.nd-sp-industries .nd-cards {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.nd-sp-industries .nd-card {
  padding: 1rem;
  text-align: center;
  align-items: center;
}
.nd-sp-industries .nd-card__text {
  display: none;
}
.nd-sp-industries .nd-card__title {
  font-size: 0.88rem;
}
.nd-sp-industries .nd-icon-wrap {
  margin: 0 auto 0.35rem;
}

/* Responsibilities timeline */
.nd-sp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(13, 148, 136, 0.2);
  margin-left: 0.85rem;
}
.nd-sp-timeline li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 0 0.85rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.45;
}
.nd-sp-timeline__dot {
  position: absolute;
  left: -0.95rem;
  top: 0.95rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--nd-teal);
  color: var(--nd-teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
}

/* Why cards */
.nd-sp-why {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}
.nd-sp-why__card {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 100%);
  color: #e2e8f0;
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
  min-height: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nd-sp-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.2);
}
.nd-sp-why__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.nd-sp-why__card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.nd-sp-why__card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.nd-sp-alert {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(240, 106, 26, 0.08);
  border: 1px solid rgba(240, 106, 26, 0.2);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}
.nd-sp-alert__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 106, 26, 0.14);
  color: var(--nd-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.nd-sp-alert strong {
  display: block;
  color: var(--nd-navy);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.nd-sp-alert p {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nd-sp-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.nd-sp-related__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 18px;
  padding: 1.2rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nd-sp-related__card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.09);
}
.nd-sp-related__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.nd-sp-related__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.02em;
}
.nd-sp-related__text {
  font-size: 0.84rem;
  color: var(--nd-text-muted);
  line-height: 1.45;
}
.nd-sp-related__go {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--nd-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/* Sticky side card — sticky the column itself so it tracks while main scrolls */
.nd-sp-side {
  position: relative;
  z-index: 4;
}
@media (min-width: 1040px) {
  .nd-sp-side {
    position: sticky;
    top: calc(var(--nd-header-h, 78px) + 16px);
    align-self: start;
    max-height: calc(100vh - var(--nd-header-h, 78px) - 32px);
  }
}
.nd-sp-side__card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid #e8eef3;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
  overflow: auto;
  max-height: inherit;
  -webkit-overflow-scrolling: touch;
}
.nd-sp-side__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #f06a1a);
  z-index: 1;
}
.nd-sp-side__badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-orange);
  background: rgba(240, 106, 26, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
}
.nd-sp-side__card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
}
.nd-sp-side__card > p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--nd-text-muted);
  line-height: 1.5;
}
.nd-sp-side__card .nd-btn {
  width: 100%;
  margin-bottom: 0.55rem;
}
.nd-sp-side__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.nd-sp-side__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.35;
}
.nd-sp-side__list i {
  color: var(--nd-teal);
  margin-top: 0.1rem;
}
.nd-sp-side__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #eef2f6;
}
.nd-sp-side__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--nd-navy);
  text-decoration: none;
}
.nd-sp-side__contact a:hover {
  color: var(--nd-teal-dark);
}
.nd-sp-side__contact i {
  color: var(--nd-teal);
}

/* Bottom CTA band */
.nd-sp-bottom-cta {
  background: linear-gradient(125deg, #0b1f3a 0%, #0f3d4a 50%, #0d9488 100%);
  color: #fff;
  padding: 1.5rem 0;
}
.nd-sp-bottom-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.nd-sp-bottom-cta__inner strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.nd-sp-bottom-cta__inner span {
  color: #cbd5e1;
  font-size: 0.92rem;
}
.nd-sp-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 700px) {
  .nd-sp-section {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .nd-sp-section__rail {
    flex-direction: row;
    justify-content: flex-start;
  }
  .nd-sp-section__rail-line {
    display: none;
  }
  .nd-sp-hero__panel {
    grid-template-columns: 1fr 1fr;
  }
  .nd-sp-bottom-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .nd-sp-bottom-cta__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ——— Form page (Request a Technician, Quote, etc.) ——— */
.nd-form-page {
  background: #f4f7fa;
}

/* ——— Legal pages (Privacy, Terms, Disclaimer) ——— */
.nd-legal-page {
  background: #f4f7fa;
}
.nd-legal-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 40%, #123a4a 74%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 1.75rem) 0 3.25rem;
}
.nd-legal-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-legal-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-legal-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-legal-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -90px;
  top: -70px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.42) 0%, transparent 68%);
}
.nd-legal-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.14) 0%, transparent 70%);
}
.nd-legal-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-legal-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
    gap: 2.25rem;
  }
}
.nd-legal-hero__copy {
  min-width: 0;
}
.nd-legal-hero .nd-breadcrumbs {
  margin: 0 0 1.15rem;
}
.nd-legal-hero .nd-breadcrumbs__list {
  gap: 0.25rem;
}
.nd-legal-hero .nd-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 550;
}
.nd-legal-hero .nd-breadcrumbs a:hover {
  color: #99f6e4;
}
.nd-legal-hero .nd-breadcrumbs [aria-current="page"] {
  color: #fff;
  font-weight: 650;
}
.nd-legal-hero .nd-breadcrumbs__list li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}
.nd-legal-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin: 0 0 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-legal-hero__kicker i {
  color: #5eead4;
  font-size: 0.95rem;
}
.nd-legal-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.nd-legal-hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-legal-hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nd-legal-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 600;
  color: #e8f0f7;
  line-height: 1.3;
}
.nd-legal-hero__meta i {
  color: #5eead4;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.nd-legal-hero__meta a {
  color: inherit;
  text-decoration: none;
}
.nd-legal-hero__meta a:hover {
  color: #99f6e4;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nd-legal-hero__panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.2rem 1.3rem;
}
.nd-legal-hero__panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.85rem;
}
.nd-legal-hero__panel-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nd-legal-hero__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: #e8f0f7;
}
.nd-legal-hero__panel-list i {
  color: #5eead4;
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-legal-hero__panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #f06a1a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(240, 106, 26, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.nd-legal-hero__panel-btn:hover {
  background: #d95a10;
  transform: translateY(-1px);
  color: #fff !important;
}
.nd-legal-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-legal-hero__panel {
    max-width: 420px;
  }
}
.nd-legal-body {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
.nd-legal-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .nd-legal-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
    gap: 1.85rem;
  }
}
.nd-legal-content {
  max-width: none;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 22px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.05);
  color: var(--nd-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
@media (min-width: 700px) {
  .nd-legal-content {
    padding: 2rem 2.1rem 2.25rem;
  }
}
.nd-legal-content > *:first-child {
  margin-top: 0;
}
.nd-legal-content h2,
.nd-legal-content .wp-block-heading {
  margin: 1.75rem 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.3;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #eef2f6;
}
.nd-legal-content h2:first-child,
.nd-legal-content > h2:first-of-type {
  margin-top: 0.25rem;
}
.nd-legal-content h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nd-navy);
}
.nd-legal-content p {
  margin: 0 0 1rem;
}
.nd-legal-content ul,
.nd-legal-content ol {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}
.nd-legal-content li {
  margin-bottom: 0.4rem;
}
.nd-legal-content a {
  color: var(--nd-teal-dark);
  font-weight: 650;
  text-underline-offset: 2px;
}
.nd-legal-content strong {
  color: var(--nd-navy);
}
.nd-legal-content em {
  color: var(--nd-text-muted);
}
/* Hide WP default privacy tutorial prefixes if any remain */
.nd-legal-content .privacy-policy-tutorial {
  display: none;
}
.nd-legal-side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .nd-legal-side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-legal-side__card {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
}
.nd-legal-side__card--contact {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  border-color: transparent;
  color: #e8f0f7;
}
.nd-legal-side__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.75rem;
}
.nd-legal-side__card--contact .nd-legal-side__label {
  color: #7dd3c7;
}
.nd-legal-side__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.nd-legal-side__links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nd-navy);
  transition: background 0.15s ease;
}
.nd-legal-side__links a:hover {
  background: #f4faf9;
  color: var(--nd-teal-dark);
}
.nd-legal-side__links i {
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
}
.nd-legal-side__card--contact p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.78);
}
.nd-legal-side__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: #f06a1a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nd-legal-side__btn:hover {
  background: #d95a10;
  transform: translateY(-1px);
  color: #fff !important;
}
.nd-legal-side__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}
.nd-legal-side__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ——— About page ——— */
.nd-about-page {
  background: #f4f7fa;
}
.nd-about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 38%, #123a4a 72%, #0f4f46 100%);
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-about-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-about-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-about-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-about-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.15) 0%, transparent 70%);
}
.nd-about-hero__ring {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: inset 0 0 50px rgba(13, 148, 136, 0.08);
}
.nd-about-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-about-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-about-hero__row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-about-hero__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.5rem;
  }
}
.nd-about-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-about-hero__kicker i {
  color: #5eead4;
}
.nd-about-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.nd-about-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-about-hero__pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-about-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
}
.nd-about-hero__pills i {
  color: #5eead4;
}
.nd-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.nd-about-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.nd-about-hero__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 0.95rem;
  backdrop-filter: blur(10px);
}
.nd-about-hero__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.nd-about-hero__stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.nd-about-hero__stat span {
  font-size: 0.8rem;
  color: rgba(226, 236, 245, 0.7);
  font-weight: 550;
}
.nd-about-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-about-hero__ring {
    display: none;
  }
}
/* Editable About page body (from WordPress editor) */
.nd-about-body {
  padding-top: 2.25rem;
  padding-bottom: 1.75rem;
  background: #f4f7fa;
}
.nd-about-content {
  max-width: none !important;
  width: 100%;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 24px;
  padding: 1.85rem 1.35rem 2.1rem;
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
  color: var(--nd-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 700px) {
  .nd-about-content {
    padding: 2.25rem 2.35rem 2.5rem;
  }
}
.nd-about-content > *:first-child {
  margin-top: 0;
}

/* Intro row: copy + AI image */
.nd-about-intro {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  margin: 0 0 0.5rem;
}
@media (min-width: 900px) {
  .nd-about-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 1.75rem 2rem;
  }
}
.nd-about-intro__label {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
}
.nd-about-intro__copy p {
  margin: 0 0 0.9rem;
  max-width: none;
}
.nd-about-intro__copy p:first-of-type {
  font-size: 1.05rem;
  color: var(--nd-navy);
  font-weight: 600;
  line-height: 1.65;
}
.nd-about-intro__copy p:last-child {
  margin-bottom: 0;
}
.nd-about-intro__media {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #0b1f3a, #0f4a4a);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.12);
}
.nd-about-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nd-about-intro__chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--nd-navy);
  line-height: 1.2;
}
.nd-about-intro__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}
.nd-about-content__rest {
  margin-top: 1.75rem;
  padding-top: 0.25rem;
}
.nd-about-content__rest > *:first-child {
  margin-top: 0;
}

.nd-about-content h2 {
  margin: 2.35rem 0 0.55rem;
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nd-navy);
  line-height: 1.2;
  padding: 0;
  border: 0;
  text-align: center;
}
.nd-about-content h2:first-child {
  margin-top: 0.15rem;
}
/* Section intro / subheading under each h2 */
.nd-about-content h2 + p {
  margin: 0 auto 1.35rem;
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--nd-text-muted);
  text-align: center;
}
.nd-about-content h3 {
  margin: 1.15rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nd-navy);
}
.nd-about-content > p {
  margin: 0 0 1rem;
}
.nd-about-content > p:first-of-type {
  font-size: 1.06rem;
  color: var(--nd-navy);
  font-weight: 600;
  line-height: 1.65;
  max-width: 48rem;
}
.nd-about-content > p:nth-of-type(2),
.nd-about-content > p:nth-of-type(3) {
  max-width: 48rem;
}

/* ——— What we support: card grid ——— */
.nd-about-content ul.nd-about-cards {
  list-style: none !important;
  margin: 0.35rem 0 2.1rem !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .nd-about-content ul.nd-about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-about-content ul.nd-about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nd-about-content ul.nd-about-cards > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 1.35rem 1.2rem 1.35rem !important;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid #e5ebf1;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
  list-style: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.nd-about-content ul.nd-about-cards > li::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.35rem;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.18);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  /* generic sparkle icon as data-uri fallback */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M12 2l1.5 6.5L20 10l-6.5 1.5L12 18l-1.5-6.5L4 10l6.5-1.5L12 2z'/%3E%3C/svg%3E");
  flex-shrink: 0;
}
/* Distinct icons per card (1–6) */
.nd-about-content ul.nd-about-cards > li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M13 3a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2h-6v6a1 1 0 1 1-2 0v-6H6a1 1 0 1 1 0-2h6V4a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M4 6h4v4H4V6zm6 0h4v4h-4V6zm6 0h4v4h-4V6zM4 12h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4zM4 18h4v2H4v-2zm6 0h4v2h-4v-2zm6 0h4v2h-4v-2z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M3 12a1 1 0 0 1 1-1h12.586l-3.293-3.293a1 1 0 1 1 1.414-1.414l5 5a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414-1.414L16.586 13H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:nth-child(5)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2zm1 11H7v-2h4V7h2z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:nth-child(6)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M21.71 8.29l-2-2a1 1 0 0 0-1.42 0l-1.83 1.83 3.42 3.42 1.83-1.83a1 1 0 0 0 0-1.42zM3 17.25V21h3.75L17.81 9.94l-3.42-3.42L3 17.25z'/%3E%3C/svg%3E");
}
.nd-about-content ul.nd-about-cards > li:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.1);
}
.nd-about-content ul.nd-about-cards > li > strong {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
/* Description text after title/br */
.nd-about-content ul.nd-about-cards > li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
}
.nd-about-content ul.nd-about-cards > li > strong {
  color: var(--nd-navy);
}

/* ——— How we work: step cards ——— */
.nd-about-content ol.nd-about-steps {
  list-style: none !important;
  margin: 0.35rem 0 1.5rem !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: about-step;
}
@media (min-width: 800px) {
  .nd-about-content ol.nd-about-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nd-about-content ol.nd-about-steps > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 !important;
  padding: 1.4rem 1.25rem 1.35rem !important;
  border-radius: 18px;
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 52%, #0f3d48 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.16);
  list-style: none !important;
  counter-increment: about-step;
  color: rgba(226, 236, 245, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.nd-about-content ol.nd-about-steps > li::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.nd-about-content ol.nd-about-steps > li:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(11, 31, 58, 0.22);
}
.nd-about-content ol.nd-about-steps > li::before {
  content: counter(about-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 2.4rem;
  height: 1.9rem;
  margin: 0 0 0.55rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.28);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: #5eead4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.nd-about-content ol.nd-about-steps > li > strong {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.nd-about-content ol.nd-about-steps > li > ul {
  list-style: none !important;
  margin: 0.7rem 0 0 !important;
  padding: 0.7rem 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.nd-about-content ol.nd-about-steps > li > ul > li {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(226, 236, 245, 0.78);
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  counter-increment: none;
}
.nd-about-content ol.nd-about-steps > li > ul > li::before {
  content: "" !important;
  width: 16px;
  height: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0.15rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235eead4'%3E%3Cpath d='M9.5 16.2 5.3 12l1.4-1.4 2.8 2.8 7.8-7.8L18.7 7z'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: block;
  font-size: 0;
  letter-spacing: 0;
  min-width: 16px;
  box-shadow: none;
}
.nd-about-content ol.nd-about-steps > li > ul > li::after {
  display: none;
}
.nd-about-content .nd-about-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.5rem 0 0;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfdf8 0%, #f0fdfa 100%);
  border: 1px solid #99f6e4;
  color: #0f766e;
  font-size: 0.94rem;
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.08);
}
.nd-about-content .nd-about-note strong {
  color: #115e59;
}

.nd-about-story {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  background: transparent;
}
.nd-about-story__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .nd-about-story__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    gap: 2rem;
  }
}
.nd-about-story__title {
  margin: 0.45rem 0 1rem;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nd-navy);
  line-height: 1.2;
}
.nd-about-story__text {
  color: var(--nd-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.nd-about-story__text p {
  margin: 0 0 1rem;
}
.nd-about-story__text p:last-child {
  margin-bottom: 0;
}
.nd-about-aside-card {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 55%, #0f3d48 100%);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.4rem;
  color: #e8f0f7;
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.16);
}
.nd-about-aside-card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
  margin-bottom: 0.85rem;
}
.nd-about-aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.nd-about-aside-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #dce7f1;
  font-weight: 550;
}
.nd-about-aside-card i {
  color: #2dd4bf;
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-about-aside-card__note {
  margin: 1.1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(232, 240, 247, 0.7);
}
.nd-about-support {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.nd-about-support__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.nd-about-support__head .nd-section__title {
  margin-bottom: 0.5rem;
}
.nd-about-support__head .nd-section__lead {
  margin: 0 auto;
}
.nd-about-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 700px) {
  .nd-about-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-about-support__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nd-about-support__card {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-about-support__card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.08);
}
.nd-about-support__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}
.nd-about-support__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
  text-align: center;
}
.nd-about-support__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
  text-align: center;
  max-width: 22ch;
}
.nd-about-principles {
  position: relative;
  padding-top: 2.75rem;
  padding-bottom: 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(13, 148, 136, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(240, 106, 26, 0.05), transparent 50%),
    #eef3f7;
  overflow: hidden;
}
.nd-about-principles__intro {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
  align-items: end;
}
@media (min-width: 900px) {
  .nd-about-principles__intro {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.75fr);
    gap: 1.75rem;
  }
}
.nd-about-principles__intro-copy .nd-section__title {
  margin-bottom: 0.55rem;
}
.nd-about-principles__intro-copy .nd-section__lead {
  margin: 0;
  max-width: 36rem;
}
.nd-about-principles__promise {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 16px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.05);
}
.nd-about-principles__promise-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.25rem;
}
.nd-about-principles__promise strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--nd-navy);
  margin-bottom: 0.2rem;
}
.nd-about-principles__promise p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--nd-text-muted);
}
.nd-about-principles__track {
  display: none;
}
@media (min-width: 1000px) {
  .nd-about-principles__track {
    display: block;
    position: relative;
    height: 0;
    margin: 0 2.5rem -0.25rem;
  }
  .nd-about-principles__track-line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.15), rgba(13, 148, 136, 0.45), rgba(240, 106, 26, 0.35), rgba(13, 148, 136, 0.15));
    border-radius: 2px;
    transform: translateY(2.35rem);
  }
}
.nd-about-principles__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: none;
}
@media (min-width: 700px) {
  .nd-about-principles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-about-principles__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.nd-about-principle {
  position: relative;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 20px;
  padding: 1.35rem 1.2rem 1.35rem;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.nd-about-principle::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
  opacity: 0.9;
}
.nd-about-principle:nth-child(2)::before {
  background: linear-gradient(90deg, #0f766e, #0d9488);
}
.nd-about-principle:nth-child(3)::before {
  background: linear-gradient(90deg, #f06a1a, #fb923c);
}
.nd-about-principle:nth-child(4)::before {
  background: linear-gradient(90deg, #0b1f3a, #0d9488);
}
.nd-about-principle:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.1);
}
.nd-about-principle__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.nd-about-principle__num {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(11, 31, 58, 0.12);
}
.nd-about-principle__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(13, 148, 136, 0.06));
  color: var(--nd-teal-dark);
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.nd-about-principle:nth-child(3) .nd-about-principle__icon {
  background: linear-gradient(145deg, rgba(240, 106, 26, 0.16), rgba(240, 106, 26, 0.06));
  color: var(--nd-orange);
  box-shadow: inset 0 0 0 1px rgba(240, 106, 26, 0.12);
}
.nd-about-principle__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
  line-height: 1.25;
}
.nd-about-principle__text {
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  flex: 1;
}
.nd-about-principle__points {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid #eef2f6;
  display: grid;
  gap: 0.4rem;
}
.nd-about-principle__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--nd-navy);
  line-height: 1.35;
}
.nd-about-principle__points i {
  color: var(--nd-teal-dark);
  font-size: 1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-about-office {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
  background: transparent;
}
.nd-about-office__panel {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11, 31, 58, 0.08);
}
@media (min-width: 900px) {
  .nd-about-office__panel {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  }
}
.nd-about-office__main {
  padding: 1.75rem 1.5rem 1.85rem;
  background:
    linear-gradient(165deg, rgba(13, 148, 136, 0.04) 0%, transparent 40%),
    #fff;
}
@media (min-width: 900px) {
  .nd-about-office__main {
    padding: 2rem 2rem 2.1rem;
  }
}
.nd-about-office__badge {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
}
.nd-about-office__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.025em;
}
.nd-about-office__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--nd-text-muted);
  max-width: 34rem;
}
.nd-about-office__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .nd-about-office__channels {
    grid-template-columns: 1fr 1fr;
  }
  .nd-about-office__channel--wide {
    grid-column: 1 / -1;
  }
}
.nd-about-office__channel {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid #e8eef3;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
a.nd-about-office__channel:hover {
  background: #f0faf8;
  border-color: rgba(13, 148, 136, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.06);
  color: inherit;
}
.nd-about-office__channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
}
.nd-about-office__channel strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.2rem;
}
.nd-about-office__channel span span,
.nd-about-office__address-text {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--nd-navy);
}
.nd-about-office__address-text .nd-address,
.nd-about-office__address-text p {
  margin: 0;
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.nd-about-office__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem 1.85rem;
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 50%, #0f3d48 100%);
  color: #e8f0f7;
}
@media (min-width: 900px) {
  .nd-about-office__cta {
    padding: 2rem 1.75rem;
  }
}
.nd-about-office__cta-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
}
.nd-about-office__cta-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.78);
}
.nd-about-office__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.35rem;
}
.nd-about-office__actions .nd-btn {
  width: 100%;
  justify-content: center;
}
.nd-about-office__wa {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.nd-about-office__wa:hover {
  background: #1ebe57 !important;
  border-color: #1ebe57 !important;
  color: #fff !important;
}

/* ——— Industries page ——— */
.nd-industries-page {
  background: #f4f7fa;
}
.nd-industries-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 38%, #143a52 70%, #0d4f4a 100%);
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-industries-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-industries-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 18%, transparent 75%);
}
.nd-industries-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-industries-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-industries-hero__glow--b {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.15) 0%, transparent 70%);
}
.nd-industries-hero__ring {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: inset 0 0 50px rgba(13, 148, 136, 0.08);
}
.nd-industries-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-industries-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-industries-hero__row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-industries-hero__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.5rem;
  }
}
.nd-industries-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-industries-hero__kicker i {
  color: #5eead4;
}
.nd-industries-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.nd-industries-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-industries-hero__pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-industries-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
}
.nd-industries-hero__pills i {
  color: #5eead4;
}
.nd-industries-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.nd-industries-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.nd-industries-hero__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 0.95rem;
  backdrop-filter: blur(10px);
}
.nd-industries-hero__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.nd-industries-hero__stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.nd-industries-hero__stat span {
  font-size: 0.8rem;
  color: rgba(226, 236, 245, 0.7);
  font-weight: 550;
}
.nd-industries-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-industries-hero__ring {
    display: none;
  }
}
.nd-industries-highlights {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: transparent;
}
.nd-industries-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 700px) {
  .nd-industries-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-industries-highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.nd-industries-highlight {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-industries-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.08);
}
.nd-industries-highlight__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.nd-industries-highlight__title {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-industries-highlight__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-industries-catalogue {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
.nd-industries-catalogue__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.nd-industries-catalogue__head .nd-section__title {
  margin-bottom: 0.5rem;
}
.nd-industries-catalogue__head .nd-section__lead {
  margin: 0 auto;
}
.nd-industries-catalogue__grid .nd-cards--industries {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}
.nd-industries-catalogue__grid .nd-card--compact {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  padding: 1.45rem 1.25rem 1.4rem;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.nd-industries-catalogue__grid .nd-card--compact:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.08);
}
.nd-industries-catalogue__grid .nd-card--compact .nd-icon-wrap {
  margin: 0 auto 0.25rem;
}
.nd-industries-catalogue__grid .nd-card--compact .nd-card__title {
  font-size: 1.02rem;
  text-align: center;
  width: 100%;
}
.nd-industries-catalogue__grid .nd-card--compact .nd-card__text {
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Services overview page ——— */
.nd-services-page {
  background: #f4f7fa;
}
.nd-services-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071525 0%, #0b1f3a 40%, #0f3d4a 72%, #0d5248 100%);
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-services-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.nd-services-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, #000 15%, transparent 75%);
}
.nd-services-hero__glow {
  position: absolute;
  border-radius: 50%;
}
.nd-services-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4) 0%, transparent 68%);
}
.nd-services-hero__glow--b {
  width: 320px;
  height: 320px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.16) 0%, transparent 70%);
}
.nd-services-hero__inner {
  position: relative;
  z-index: 1;
}
.nd-services-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-services-hero__row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-services-hero__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.5rem;
  }
}
.nd-services-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
}
.nd-services-hero__kicker i {
  color: #5eead4;
}
.nd-services-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.nd-services-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 36rem;
}
.nd-services-hero__pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nd-services-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
}
.nd-services-hero__pills i {
  color: #5eead4;
}
.nd-services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.nd-services-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.nd-services-hero__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 0.95rem;
  backdrop-filter: blur(10px);
}
.nd-services-hero__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.nd-services-hero__stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.nd-services-hero__stat span {
  font-size: 0.8rem;
  color: rgba(226, 236, 245, 0.7);
  font-weight: 550;
}
.nd-services-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.nd-services-highlights {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: transparent;
}
.nd-services-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: -0.25rem;
}
@media (min-width: 700px) {
  .nd-services-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .nd-services-highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.nd-services-highlight {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-services-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.08);
}
.nd-services-highlight__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.nd-services-highlight__title {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nd-navy);
  letter-spacing: -0.015em;
}
.nd-services-highlight__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
.nd-services-catalogue {
  padding-top: 1.5rem;
}
.nd-services-catalogue__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.nd-services-catalogue__head .nd-section__title {
  margin-bottom: 0.5rem;
}
.nd-services-catalogue__head .nd-section__lead {
  margin: 0 auto;
}
.nd-services-catalogue__grid .nd-cards--services {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}
.nd-services-catalogue__grid .nd-cards--services .nd-card {
  text-align: left;
  align-items: flex-start;
  padding: 1.45rem 1.3rem 1.3rem;
  border: 1px solid #e5ebf1;
  border-radius: 20px;
  background: #fff;
}
.nd-services-catalogue__grid .nd-cards--services .nd-icon-wrap {
  margin: 0 0 0.15rem;
}
.nd-services-catalogue__grid .nd-cards--services .nd-card__text {
  max-width: none;
  text-align: left;
}
.nd-services-catalogue__grid .nd-cards--services .nd-card__actions {
  width: 100%;
}
.nd-services-cta {
  padding: 0.5rem 0 3.5rem;
}
.nd-services-cta__panel {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(125deg, #0b1f3a 0%, #12304f 50%, #0f4a4a 100%);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  color: #fff;
  box-shadow: 0 20px 44px rgba(11, 31, 58, 0.16);
}
@media (min-width: 900px) {
  .nd-services-cta__panel {
    grid-template-columns: 1.2fr auto;
    padding: 2rem 2rem;
    gap: 2rem;
  }
}
.nd-services-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3c7;
  margin-bottom: 0.45rem;
}
.nd-services-cta__copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.nd-services-cta__copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(226, 236, 245, 0.88);
  max-width: 36rem;
}
.nd-services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .nd-services-cta__actions {
    justify-content: flex-end;
  }
}
.nd-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.nd-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.nd-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #e8f0f7;
  border-color: transparent;
}
.nd-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
/* Technician page extras */
.nd-form-hero--tech {
  background:
    linear-gradient(125deg, #071525 0%, #0b1f3a 36%, #123a4a 68%, #0f4f46 100%);
}
/* Contact page */
.nd-form-hero--contact {
  background:
    linear-gradient(125deg, #071525 0%, #0b1f3a 40%, #0f3550 70%, #0d4a55 100%);
}
.nd-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nd-contact-channels__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.nd-contact-channels__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(94, 234, 212, 0.28);
  transform: translateY(-1px);
  color: inherit;
}
.nd-contact-channels__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  color: #5eead4;
  font-size: 1.15rem;
}
.nd-contact-channels__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.1rem;
}
.nd-contact-channels__item span span {
  display: block;
  font-size: 0.8rem;
  color: rgba(226, 236, 245, 0.72);
  font-weight: 500;
  word-break: break-word;
}
.nd-contact-channels__go {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
}
.nd-contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .nd-contact-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
    gap: 1.75rem;
  }
}
.nd-contact-layout__main {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}
.nd-contact-layout__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .nd-contact-layout__side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-contact-callback-wrap .nd-form {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}
.nd-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--nd-text);
}
.nd-contact-address__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.15rem;
}
.nd-contact-address p {
  margin: 0;
}
.nd-contact-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nd-contact-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.4;
}
.nd-contact-meta i {
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-contact-meta a {
  color: inherit;
  text-decoration: none;
}
.nd-contact-meta a:hover {
  color: var(--nd-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nd-contact-map-card {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
}
.nd-contact-map {
  margin-top: 0.65rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5ebf1;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
}
.nd-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.nd-tech-intro {
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.04);
}
.nd-tech-intro p:last-child {
  margin-bottom: 0;
}
.nd-tech-alert .nd-form-side-card__label {
  color: #c2410c;
}
.nd-tech-alert__text {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--nd-navy);
  font-weight: 550;
}
.nd-tech-alert__text i {
  color: #ea580c;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.nd-tech-alert__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.nd-tech-alert__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--nd-text-muted);
}
.nd-tech-alert__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0d9488;
}
.nd-form-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, #071525 0%, #0b1f3a 38%, #0e3a42 72%, #0a4f4a 100%);
  color: #fff;
  padding: calc(var(--nd-header-h, 72px) + 2rem) 0 3.25rem;
}
.nd-form-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nd-form-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.nd-form-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.nd-form-hero__glow--a {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.45) 0%, transparent 68%);
}
.nd-form-hero__glow--b {
  width: 360px;
  height: 360px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(240, 106, 26, 0.18) 0%, transparent 70%);
}
.nd-form-hero__ring {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: inset 0 0 60px rgba(13, 148, 136, 0.08);
}
.nd-form-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nd-form-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2.5rem;
  }
}
.nd-form-hero__copy {
  min-width: 0;
}
.nd-form-hero .nd-breadcrumbs {
  margin-bottom: 1.1rem;
}
.nd-form-hero .nd-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.nd-form-hero .nd-breadcrumbs a:hover {
  color: #99f6e4;
}
.nd-form-hero .nd-breadcrumbs [aria-current="page"] {
  color: #fff;
}
.nd-form-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.nd-form-hero__kicker i {
  font-size: 0.95rem;
  color: #5eead4;
}
.nd-form-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.nd-form-hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: rgba(226, 236, 245, 0.9);
  max-width: 34rem;
}
.nd-form-hero__pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nd-form-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 650;
  color: #e8f0f7;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nd-form-hero__pills li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(94, 234, 212, 0.35);
}
.nd-form-hero__pills i {
  color: #5eead4;
  font-size: 1.05rem;
}
.nd-form-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.nd-form-hero__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: #f06a1a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(240, 106, 26, 0.32);
  transition: transform 0.15s ease, background 0.15s ease;
}
.nd-form-hero__action:hover {
  background: #d95a10;
  transform: translateY(-1px);
  color: #fff !important;
}
.nd-form-hero__action--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  color: #e8f0f7 !important;
}
.nd-form-hero__action--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

/* Glass overview card */
.nd-form-hero__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.nd-form-hero__card-top {
  padding: 1.25rem 1.2rem 1.15rem;
}
.nd-form-hero__card-badge {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.9rem;
}
.nd-form-hero__mini-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  counter-reset: nd-hero-step;
}
.nd-form-hero__mini-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
  counter-increment: nd-hero-step;
}
.nd-form-hero__mini-steps li::before {
  content: counter(nd-hero-step);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  place-content: center;
  flex-shrink: 0;
  font-family: var(--nd-font, "Plus Jakarta Sans"), system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  background: #0d9488;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 14px rgba(13, 148, 136, 0.35);
  /* Optical vertical align with title line */
  margin-top: 0;
}
.nd-form-hero__mini-copy {
  min-width: 0;
  padding-top: 0.35rem; /* title baseline sits mid-badge */
}
.nd-form-hero__mini-copy strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.2rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.nd-form-hero__mini-copy span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(226, 236, 245, 0.72);
}
.nd-form-hero__card-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 1rem 1.1rem 1.15rem;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nd-form-hero__stat {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nd-form-hero__stat strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.1rem;
}
.nd-form-hero__stat span {
  font-size: 0.75rem;
  color: rgba(226, 236, 245, 0.65);
  font-weight: 550;
}
.nd-form-hero__wa {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nd-form-hero__wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  color: #fff !important;
}
.nd-form-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: #f4f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 959px) {
  .nd-form-hero {
    padding-bottom: 2.75rem;
  }
  .nd-form-hero__ring {
    display: none;
  }
  .nd-form-hero__card {
    max-width: 420px;
  }
}
.nd-form-page__body {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  background: transparent;
}
.nd-form-page__layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .nd-form-page__layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
    gap: 1.75rem;
  }
}
.nd-form-page__main {
  min-width: 0;
}
.nd-form-page__side {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .nd-form-page__side {
    position: sticky;
    top: calc(var(--nd-header-h, 72px) + 1rem);
  }
}
.nd-form-side-card {
  background: #fff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
}
.nd-form-side-card--soft {
  background: linear-gradient(165deg, #f0faf8 0%, #eef6fb 100%);
  border-color: #d8ebe6;
}
.nd-form-side-card--contact {
  background: linear-gradient(165deg, #0b1f3a 0%, #12304f 60%, #0f3d48 100%);
  border-color: transparent;
  color: #e8f0f7;
}
.nd-form-side-card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  margin-bottom: 0.4rem;
}
.nd-form-side-card--contact .nd-form-side-card__label {
  color: #7dd3c7;
}
.nd-form-side-card__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nd-navy);
}
.nd-form-side-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 240, 247, 0.78);
}
.nd-form-side-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.nd-form-side-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.nd-form-side-steps__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
}
.nd-form-side-steps strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--nd-navy);
  margin-bottom: 0.15rem;
}
.nd-form-side-steps p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--nd-text-muted);
}
.nd-form-side-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nd-form-side-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nd-navy);
  line-height: 1.4;
}
.nd-form-side-trust i {
  color: var(--nd-teal-dark);
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.nd-form-side-contact {
  display: grid;
  gap: 0.55rem;
}
.nd-form-side-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: #f06a1a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nd-form-side-contact__btn:hover {
  transform: translateY(-1px);
  background: #d95a10;
}
.nd-form-side-contact__btn--wa {
  background: #25d366;
}
.nd-form-side-contact__btn--wa:hover {
  background: #1ebe57;
}
.nd-form-side-contact__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #a5f3e8 !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem;
}
.nd-form-side-contact__link:hover {
  color: #fff !important;
}
.nd-form-side-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(232, 240, 247, 0.65);
}
