:root {
  --npt-green: #007d47;
  --npt-emerald: #00A859;
  --npt-hover: #007037;
  --npt-light: #e6f4ed;
  --npt-dark: #0f172a;
  --npt-navy: #1e293b;
  --npt-slate: #0b1320;
  --npt-graybg: #f8fafc;
  --npt-border: #e2e8f0;
  --npt-red: #ed2627;
  --npt-soft: 0 10px 30px -10px rgba(0, 138, 69, 0.15);
  --npt-container: 80rem;
  --npt-font: "Be Vietnam Pro", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--npt-font);
  color: #1e293b;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection { background: var(--npt-green); color: #fff; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
p { margin: 0; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto;
  height: auto;
  width: auto;
  background: #fff;
  padding: 8px 16px;
  z-index: 100000;
}

.npt-main { overflow-x: clip; }
.alignfull { width: 100%; max-width: none; }
.npt-container {
  width: min(100% - 2rem, var(--npt-container));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .npt-container { width: min(100% - 3rem, var(--npt-container)); }
}
@media (min-width: 1024px) {
  .npt-container { width: min(100% - 4rem, var(--npt-container)); }
}

/* Buttons */
.npt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.npt-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--npt-green), var(--npt-emerald));
  box-shadow: 0 10px 20px -8px rgba(0, 138, 69, 0.35);
}
.npt-btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.npt-btn--ghost {
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.npt-btn--ghost:hover { background: rgba(255,255,255,.2); }
.npt-btn--white {
  background: #fff;
  color: var(--npt-green);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.25);
}
.npt-btn--white:hover { background: #f1f5f9; transform: translateY(-1px); }
.npt-btn--full { width: 100%; }
.npt-icon-btn {
  border: 0;
  background: #f1f5f9; 
  color: var(--npt-green);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}
.npt-icon-btn:hover { background: #f1f5f9; color: var(--npt-green); }

.npt-eyebrow {
  display: block;
  color: var(--npt-green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.npt-eyebrow--light { color: var(--npt-emerald); }
.npt-chip {
  display: inline-block;
  background: rgba(0,138,69,.9);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0.4rem;
  margin-bottom: 0.5rem;
}
.npt-chip--abs { position: absolute; top: 1rem; left: 1rem; border-radius: 999px; }
.npt-chip--light { background: rgba(255,255,255,.2); }
.npt-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--npt-green);
  font-size: .8rem;
  font-weight: 800;
}
.npt-more:hover { text-decoration: underline; }

/* Topbar */
.npt-topbar {
  background: var(--npt-navy);
  color: #cbd5e1;
  font-size: 12px;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e293b;
  display: none;
  position: relative;
  z-index: 60;
  overflow: visible;
}
@media (min-width: 640px) { .npt-topbar { display: block; } }
.npt-topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; overflow: visible; }
.npt-topbar__left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.npt-topbar a:hover { color: #fff; }
.npt-topbar i { color: var(--npt-emerald); margin-right: .4rem; }
.npt-topbar__right { display: flex; align-items: center; gap: 1rem; overflow: visible; }
.npt-topbar__addr { color: #94a3b8; }
.npt-topbar__divider { width: 1px; height: 12px; background: #334155; }
.npt-social { display: flex; gap: .5rem; }
.npt-social__link {
  width: 24px; height: 24px; border-radius: 999px;
  background: #1e293b; color: #cbd5e1;
  display: grid; place-items: center; font-size: 11px;
}
.npt-social__link:hover { background: var(--npt-green); color: #fff; }

/* GTranslate in header */
.npt-lang {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
}
.npt-lang .gtranslate_wrapper { display: flex; align-items: center; }
.npt-lang .gt_switcher {
  overflow: visible !important;
  width: auto !important;
  font-family: inherit !important;
  line-height: 1 !important;
}
.npt-lang .gt_switcher .gt_selected {
  background: transparent !important;
  z-index: 2;
}
.npt-lang .gt_switcher .gt_selected a {
  display: flex !important;
  align-items: center;
  gap: .4rem;
  width: auto !important;
  min-width: 0;
  border: 0 !important;
  padding: 0 1.15rem 0 0 !important;
  background: transparent !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.2 !important;
  white-space: nowrap;
}
.npt-lang .gt_switcher .gt_selected a:hover { color: #fff !important; }
.npt-lang .gt_switcher .gt_selected a:after {
  right: 0 !important;
  width: 10px !important;
  height: 10px !important;
  background-size: 8px !important;
}
.npt-lang--topbar .gt_switcher .gt_selected a:after {
  filter: invert(1) brightness(1.8);
}
.npt-lang .gt_switcher a img {
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
  border-radius: 2px;
}
.npt-lang .gt_switcher .gt_option {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  z-index: 80 !important;
  width: 210px !important;
  max-height: 240px !important;
  background: #0b1320 !important;
  border: 1px solid #1e293b !important;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,.4);
  overflow-x: hidden;
  overflow-y: auto;
}
.npt-lang .gt_switcher .gt_option a {
  color: #e2e8f0 !important;
  padding: .45rem .7rem !important;
  font-size: 12px !important;
  font-weight: 600;
  display: flex !important;
  align-items: center;
  gap: .45rem;
}
.npt-lang .gt_switcher .gt_option a.gt_current {
  display: none !important;
}
.npt-lang .gt_switcher .gt_option a:hover {
  background: var(--npt-green) !important;
  color: #fff !important;
}
.npt-lang .gt_switcher .gt_option::-webkit-scrollbar-track { background: #0f172a; }
.npt-lang .gt_switcher .gt_option::-webkit-scrollbar-thumb { background: #334155; }

.npt-lang--mobile {
  margin: 0 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #f1f5f9;
}
.npt-lang--mobile .gt_switcher .gt_selected a { color: #334155 !important; }
.npt-lang--mobile .gt_switcher .gt_selected a:hover { color: var(--npt-green) !important; }
.npt-lang--mobile .gt_switcher .gt_option {
  background: #fff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.12);
}
.npt-lang--mobile .gt_switcher .gt_option a { color: #334155 !important; }
.npt-lang--mobile .gt_switcher .gt_option a:hover {
  background: var(--npt-light) !important;
  color: var(--npt-green) !important;
}
@media (min-width: 640px) {
  .npt-lang--mobile { display: none; }
}

/* Header */
.npt-header {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 1px 8px rgba(15,23,42,.04);
  z-index: 50;
}
.npt-header.is-sticky { position: sticky; top: 0; }
.npt-header,
.npt-header__inner,
.npt-nav { overflow: visible; }
.npt-header__inner {
  min-height: 80px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  position: relative;
  z-index: 2;
}
.npt-logo, .npt-footer-logo {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.npt-logo__name, .npt-footer-logo__name {
  font-size: 1.35rem; font-weight: 900; color: var(--npt-green); letter-spacing: -0.02em; line-height: 1;
}
.npt-logo__tagline, .npt-footer-logo__tagline {
  display: block; font-size: 9px; font-weight: 800; letter-spacing: .18em; color: #64748b; text-transform: uppercase; margin-top: 2px;
}
.npt-logo img, .npt-footer-logo img, .custom-logo-link img { max-height: 36px; width: auto; display: block; }
.npt-nav { display: none; }
@media (min-width: 1024px) { .npt-nav { display: block; } }
.npt-nav__list {
  display: flex; align-items: center; gap: 1.1rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #334155;
  flex-wrap: nowrap;
}
.npt-nav__list > li > a { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem 0; white-space: nowrap; }
.npt-nav__list > li > a:hover,
.npt-nav__list .is-hilite > a,
.npt-nav__list .current-menu-item > a,
.npt-nav__list .current-menu-ancestor > a { color: var(--npt-green); }
.npt-nav__list .fa-chevron-down,
.npt-nav__list .fa-chevron-right { font-size: 10px; color: #94a3b8; margin-left: auto; }
.npt-nav__list > li { position: relative; }
.npt-nav__list .npt-sub-menu,
.npt-nav__list .sub-menu {
  display: none !important;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 80;
  min-width: 240px;
  width: max-content;
  max-width: min(320px, 86vw);
  overflow: visible;
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
  padding: .5rem;
  list-style: none;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.npt-nav__list > li:nth-last-child(-n+2) > .npt-sub-menu,
.npt-nav__list > li:nth-last-child(-n+2) > .sub-menu {
  left: auto;
  right: 0;
}
.npt-nav__list li:hover > .npt-sub-menu,
.npt-nav__list li:hover > .sub-menu,
.npt-nav__list li:focus-within > .npt-sub-menu,
.npt-nav__list li:focus-within > .sub-menu { display: block !important; }
.npt-nav__list .npt-sub-menu > li,
.npt-nav__list .sub-menu > li { position: relative; }
.npt-nav__list .npt-sub-menu a,
.npt-nav__list .sub-menu a {
  padding: .5rem .7rem;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  border-radius: 8px;
  white-space: normal;
  line-height: 1.4;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #334155;
}
.npt-nav__list .npt-sub-menu a:hover,
.npt-nav__list .sub-menu a:hover,
.npt-nav__list .npt-sub-menu > li:hover > a,
.npt-nav__list .sub-menu > li:hover > a { background: var(--npt-light); color: var(--npt-green); }
.npt-nav__list .npt-sub-menu .npt-sub-menu,
.npt-nav__list .npt-sub-menu .sub-menu,
.npt-nav__list .sub-menu .npt-sub-menu,
.npt-nav__list .sub-menu .sub-menu {
  top: -.5rem;
  left: calc(100% - 2px);
  right: auto;
  z-index: 81;
  min-width: 240px;
  max-width: min(320px, 70vw);
}
.npt-header__actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.npt-header__cta { display: none; }
@media (min-width: 640px) { .npt-header__cta { display: inline-flex; } }
.npt-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--npt-green);
}
.npt-burger__box {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}
.npt-burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--npt-green);
  transform-origin: center;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.npt-burger__line:nth-child(1) { top: 0; }
.npt-burger__line:nth-child(2) { top: 6px; }
.npt-burger__line:nth-child(3) { top: 12px; }
.npt-burger.is-open .npt-burger__line:nth-child(1),
.npt-burger[aria-expanded="true"] .npt-burger__line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.npt-burger.is-open .npt-burger__line:nth-child(2),
.npt-burger[aria-expanded="true"] .npt-burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(.4);
}
.npt-burger.is-open .npt-burger__line:nth-child(3),
.npt-burger[aria-expanded="true"] .npt-burger__line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .npt-burger__line { transition: none; }
}
@media (min-width: 1024px) { .npt-burger { display: none; } }

.npt-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--npt-border);
  padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  box-shadow: 0 12px 24px rgba(15,23,42,.08);
}
.npt-mobile.is-open {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
html.npt-menu-open,
body.npt-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
@media (max-width: 1023px) {
  body.npt-menu-open .npt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
  }
  body.npt-menu-open .npt-header__inner {
    flex: 0 0 auto;
  }
  body.admin-bar.npt-menu-open .npt-header {
    top: 46px;
  }
}
@media (min-width: 783px) and (max-width: 1023px) {
  body.admin-bar.npt-menu-open .npt-header {
    top: 32px;
  }
}
@media (min-width: 1024px) { .npt-mobile { display: none !important; } }
.npt-mobile-nav { list-style: none; margin: 0 0 1rem; padding: 0; font-weight: 700; }
.npt-mobile-nav a {
  display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid #f1f5f9; color: #334155;
}
.npt-mobile-nav .is-hilite a { color: var(--npt-green); }
.npt-mobile-nav .npt-sub-menu,
.npt-mobile-nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0 .75rem;
  position: static;
  max-width: none;
  max-height: none;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
  column-count: 1;
}
.npt-mobile-nav .has-children.is-open > .npt-sub-menu,
.npt-mobile-nav .has-children.is-open > .sub-menu,
.npt-mobile-nav .menu-item-has-children.is-open > .npt-sub-menu,
.npt-mobile-nav .menu-item-has-children.is-open > .sub-menu { display: block; }
.npt-mobile-nav .npt-sub-menu a,
.npt-mobile-nav .sub-menu a {
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
}

.npt-search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  place-items: start center;
  padding: 12vh 1rem 2rem;
  z-index: 400;
}
.npt-search-modal.is-open {
  display: grid;
}
.npt-search-modal[hidden] {
  display: none !important;
}
body.npt-search-open,
body.npt-quote-modal-open { overflow: hidden; }
.npt-search-modal__box {
  background: #fff;
  border-radius: 16px;
  padding: .65rem .7rem;
  width: min(720px, 100%);
  display: flex;
  gap: .5rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .22);
}
.npt-search-modal__box .npt-search {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  display: flex;
  align-items: stretch;
  gap: .5rem;
  margin: 0;
}
.npt-search-modal__box .npt-search label { display: none; }
.npt-search-modal__box .npt-search input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  border: 1px solid var(--npt-border);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font: inherit;
}
.npt-search-modal__box .npt-search button {
  flex: 0 0 auto;
  white-space: nowrap;
}
.npt-search-modal__box .npt-icon-btn {
  flex: 0 0 auto;
}

/* Hero */
.npt-hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 1024px) { .npt-hero { min-height: 620px; } }
.npt-hero__bg { position: absolute; inset: 0; }
.npt-hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.npt-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.82) 0%, rgba(11,19,32,.92) 100%);
}
.npt-hero__inner { position: relative; z-index: 2; padding: 5rem 0; flex: 1; display: flex; align-items: center; }
.npt-hero__content { max-width: 48rem; }
.npt-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border-radius: 999px;
  padding: .35rem .85rem; color: var(--npt-emerald);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.npt-hero__pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--npt-emerald); animation: nptPulse 1.4s infinite; }
@keyframes nptPulse { 50% { opacity: .35; } }
.npt-hero__title {
  color: var(--npt-green);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.npt-hero__title span {
  display: inline-block;
  background: linear-gradient(90deg, #fff, #f1f5f9, var(--npt-emerald));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.npt-hero__desc { color: #cbd5e1; font-size: clamp(1rem, 2vw, 1.25rem); max-width: 40rem; margin-bottom: 2rem; }
.npt-hero__desc p,
.npt-section__lead p,
.npt-section__sub p,
.npt-capability__desc p,
.npt-cta__inner > div p,
.npt-step div p,
.npt-values__item div p,
.npt-estimator__form-wrap > div p {
	margin: 0 0 0.6em;
}
.npt-hero__desc p:last-child,
.npt-section__lead p:last-child,
.npt-section__sub p:last-child,
.npt-capability__desc p:last-child,
.npt-cta__inner > div p:last-child,
.npt-step div p:last-child,
.npt-values__item div p:last-child,
.npt-estimator__form-wrap > div p:last-child {
	margin-bottom: 0;
}
.npt-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.npt-hero__dots { position: relative; z-index: 2; display: flex; justify-content: center; gap: .5rem; padding-bottom: 1.4rem; }
.npt-hero__dots span { width: 12px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.3); }
.npt-hero__dots .is-active { width: 40px; background: var(--npt-emerald); }

/* Stats */
.npt-stats-wrap { position: relative; z-index: 3; margin-top: -2.2rem; }
.npt-stats {
  background: #fff; border: 1px solid var(--npt-border); border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  padding: 1.4rem 1.6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
@media (min-width: 1024px) {
  .npt-stats { grid-template-columns: repeat(4, 1fr); padding: 1.8rem 2rem; }
}
.npt-stats__item { display: flex; align-items: center; gap: 1rem; }
.npt-stats__icon {
  width: 48px; height: 48px; border-radius: 1rem; background: var(--npt-light);
  color: var(--npt-green); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0;
}
.npt-stats__value { font-size: clamp(1.1rem, 2vw, 1.7rem); font-weight: 900; color: #0f172a; }
.npt-stats__label { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .06em; }

/* Sections */
.npt-section { padding: 4rem 0; background: #fff; }
@media (min-width: 640px) { .npt-section { padding: 5.5rem 0; } }
.npt-section__head { margin-bottom: 2.5rem; }
.npt-section__head--split { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) {
  .npt-section__head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.npt-section__head--center { text-align: center; max-width: 50rem; margin-inline: auto; margin-bottom: 3rem; }
.npt-section__title {
  font-size: clamp(1.4rem, 3vw, 1.7rem); font-weight: 900; color: #0f172a;
  text-transform: uppercase; letter-spacing: -.02em;
}
.npt-section__title--line::before {
  content: ""; display: inline-block; width: 32px; height: 4px;
  background: linear-gradient(90deg, var(--npt-green), var(--npt-emerald));
  margin-right: 12px; vertical-align: middle; border-radius: 4px;
}
.npt-section__title--light { color: #fff; }
.npt-section__lead { color: #475569; font-size: .9rem; max-width: 28rem; }
.npt-section__sub { color: #64748b; font-size: .85rem; margin-top: .5rem; }
.npt-section__sub--light { color: #cbd5e1; }

.npt-card-grid { display: grid; gap: 1.4rem; }
@media (min-width: 768px) { .npt-card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .npt-card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.npt-media-card {
  position: relative; height: 18rem; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,23,42,.08); display: block;
}
.npt-media-card--tall { height: 20rem; }
.npt-media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.npt-media-card:hover img { transform: scale(1.08); }
.npt-media-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.35), transparent);
}
.npt-media-card__body { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; color: #fff; }
.npt-media-card__row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.npt-media-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--npt-light); text-transform: uppercase; }
.npt-media-card p { font-size: .75rem; color: #cbd5e1; margin-top: .2rem; }
.npt-media-card__loc { display: block; color: var(--npt-emerald); font-size: .75rem; font-weight: 700; margin-bottom: .25rem; }
.npt-media-card i { color: var(--npt-emerald); font-size: 1.4rem; }

/* Process */
.npt-process { background: #f8fafc; border-block: 1px solid rgba(226,232,240,.8); }
.npt-process__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .npt-process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .npt-process__grid { grid-template-columns: repeat(4, 1fr); } }
.npt-step {
  background: #fff; border: 1px solid rgba(226,232,240,.8); border-radius: 1rem;
  padding: 1.6rem; box-shadow: 0 1px 8px rgba(15,23,42,.04);
}
.npt-step:hover { box-shadow: 0 16px 32px rgba(15,23,42,.08); }
.npt-step__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.npt-step__num {
  width: 44px; height: 44px; border-radius: 1rem; color: #fff; font-weight: 900;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--npt-green), var(--npt-emerald));
}
.npt-step__top i { color: var(--npt-green); font-size: 1.7rem; }
.npt-step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.npt-step p { font-size: .75rem; color: #64748b; }

/* Capability */
.npt-capability__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .npt-capability__grid { grid-template-columns: 5fr 7fr; } }
.npt-capability__media { position: relative; }
.npt-capability__photo { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 40px rgba(15,23,42,.15); }
.npt-capability__photo img { width: 100%; height: 450px; object-fit: cover; }
.npt-capability__badge {
  display: none; position: absolute; right: -1.2rem; bottom: -1.2rem;
  background: linear-gradient(135deg, var(--npt-green), var(--npt-emerald));
  color: #fff; padding: 1.3rem; border-radius: 1rem; max-width: 16rem;
}
@media (min-width: 640px) { .npt-capability__badge { display: block; } }
.npt-capability__badge-value { font-size: 1.8rem; font-weight: 900; }
.npt-capability__badge-text { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.npt-capability__desc { color: #475569; font-size: .9rem; margin: 1rem 0 1.6rem; }
.npt-values { display: grid; gap: 1rem; }
@media (min-width: 640px) { .npt-values { grid-template-columns: 1fr 1fr; } }
.npt-values__item { display: flex; gap: 1rem; padding: 1rem; border-radius: .8rem; }
.npt-values__item:hover { background: #f8fafc; }
.npt-values__icon {
  width: 48px; height: 48px; border-radius: .75rem; background: var(--npt-light);
  color: var(--npt-green); display: grid; place-items: center; flex-shrink: 0;
}
.npt-values h3 { font-size: .95rem; margin-bottom: .25rem; }
.npt-values p { font-size: .75rem; color: #64748b; }

/* Estimator */
.npt-estimator { background: var(--npt-navy); color: #fff; }
.npt-estimator__box {
  background: rgba(15,23,42,.9); border: 1px solid #334155; border-radius: 1.5rem;
  padding: 1.5rem; display: grid; gap: 2rem;
}
@media (min-width: 640px) { .npt-estimator__box { padding: 2.4rem; } }
@media (min-width: 1024px) { .npt-estimator__box { grid-template-columns: 7fr 5fr; } }
.npt-estimator__controls { display: grid; gap: 1.8rem; }
.npt-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #cbd5e1; margin-bottom: .7rem; }
.npt-temp-grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
@media (min-width: 640px) { .npt-temp-grid { grid-template-columns: repeat(3, 1fr); } }
.npt-temp-btn {
  background: #1e293b; color: #cbd5e1; border: 1px solid #334155; border-radius: .8rem;
  padding: .85rem .6rem; font-size: 11px; font-weight: 700; cursor: pointer;
}
.npt-temp-btn i { display: block; margin-bottom: .3rem; font-size: 1rem; }
.npt-temp-btn.is-active { background: var(--npt-green); color: #fff; border-color: var(--npt-emerald); }
.npt-estimator__volume-head { display: flex; justify-content: space-between; align-items: center; }
.npt-estimator__volume { font-size: 1.5rem; font-weight: 900; color: var(--npt-emerald); }
#volumeSlider { width: 100%; accent-color: var(--npt-emerald); }
.npt-estimator__range-labels { display: flex; justify-content: space-between; font-size: 11px; color: #94a3b8; margin-top: .4rem; }
.npt-estimator__summary {
  background: rgba(30,41,59,.8); border: 1px solid #334155; border-radius: 1rem;
  padding: 1.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.npt-estimator__summary span { display: block; font-size: 11px; color: #94a3b8; margin-bottom: .25rem; }
.npt-estimator__summary strong { font-size: 1.15rem; }
.npt-estimator__form-wrap {
  background: linear-gradient(#1e293b, #0f172a); border: 1px solid #334155;
  border-radius: 1rem; padding: 1.6rem; display: flex; flex-direction: column;
}
.npt-estimator__form-wrap h3 { font-size: 1.1rem; color: var(--npt-light); margin-bottom: .4rem; }
.npt-estimator__form-wrap > p { font-size: .75rem; color: #94a3b8; margin-bottom: 1.2rem; }
.npt-form {margin-top: 15px; display: grid; gap: .8rem; }
.npt-form input {
  width: 100%; background: #020617; border: 1px solid #334155; border-radius: .8rem;
  padding: .8rem 1rem; color: #fff; font-size: .8rem;
}
.npt-form input:focus { outline: none; border-color: var(--npt-emerald); }
.npt-form__note { font-size: 11px; color: #64748b; text-align: center; margin-top: 1rem; }
.npt-form__note i { color: var(--npt-emerald); margin-right: .3rem; }

/* Projects */
.npt-projects { background: #f8fafc; border-top: 1px solid var(--npt-border); }
.npt-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.npt-filters button, .npt-filters a {
  padding: .45rem 1rem; border-radius: .75rem; font-size: 12px; font-weight: 700;
  background: #fff; color: #475569; border: 1px solid var(--npt-border);
}
.npt-filters .is-active, .npt-filters button.is-active {
  background: var(--npt-green); color: #fff; border-color: var(--npt-green);
}

/* News */
.npt-news__grid { display: grid; gap: 1.6rem; }
@media (min-width: 1024px) { .npt-news__grid { grid-template-columns: 7fr 5fr; } }
.npt-news-feature {
  background: #fff; border: 1px solid rgba(226,232,240,.9); border-radius: 1.4rem; overflow: hidden;
}
.npt-news-feature__media { position: relative; height: 18rem; overflow: hidden; }
@media (min-width: 640px) { .npt-news-feature__media { height: 20rem; } }
.npt-news-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.npt-news-feature:hover img { transform: scale(1.05); }
.npt-news-feature__body { padding: 1.6rem; }
.npt-news-feature h3 { font-size: 1.35rem; margin: .6rem 0 .8rem; }
.npt-news-feature:hover h3 { color: var(--npt-green); }
.npt-news-feature p { color: #475569; font-size: .9rem; margin-bottom: 1.2rem; }
.npt-meta { display: flex; gap: 1rem; font-size: 12px; color: #94a3b8; }
.npt-meta i { color: var(--npt-green); }
.npt-news-list { display: grid; gap: 1rem; }
.npt-news-mini { background: #fff; border: 1px solid rgba(226,232,240,.8); border-radius: 1rem; padding: .9rem; }
.npt-news-mini a { display: flex; gap: .9rem; }
.npt-news-mini__media { width: 7rem; height: 7rem; border-radius: .75rem; overflow: hidden; flex-shrink: 0; }
.npt-news-mini__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.npt-news-mini:hover img { transform: scale(1.08); }
.npt-news-mini h3 { font-size: .9rem; font-weight: 800; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.npt-news-mini:hover h3 { color: var(--npt-green); }
.npt-news-mini time { font-size: 11px; color: #94a3b8; }

/* Partners */
.npt-partners { background: #f8fafc; border-block: 1px solid rgba(226,232,240,.8); padding: 3rem 0; }
.npt-partners__eyebrow { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #94a3b8; margin-bottom: 1.6rem; }
.npt-partners__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; align-items: center; }
@media (min-width: 768px) { .npt-partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .npt-partners__grid { grid-template-columns: repeat(6, 1fr); } }
.npt-partners__grid--logos { opacity: 1; }
.npt-partners__item { text-align: center; font-weight: 900; font-size: 1rem; color: #1e293b; }
.npt-partners__item--logo,
.npt-partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.4rem 0.6rem;
}
.npt-partners__item img,
.npt-partners__slide img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
}
.npt-partners__slider {
  position: relative;
  padding: 0 2.4rem;
}
.npt-partners__viewport {
  overflow: hidden;
}
.npt-partners__track {
  display: flex;
  align-items: center;
  transition: transform 0.45s ease;
  will-change: transform;
}
.npt-partners__slide { flex: 0 0 auto; box-sizing: border-box; }
.npt-partners__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--npt-border);
  border-radius: 999px;
  background: #fff;
  color: var(--npt-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.npt-partners__nav:hover { border-color: var(--npt-green); color: var(--npt-green); }
.npt-partners__nav--prev { left: 0; }
.npt-partners__nav--next { right: 0; }

/* CTA */
.npt-cta {
  background-color: var(--npt-green);
  background-image: radial-gradient(rgba(255,255,255,.18) 1.5px, transparent 0);
  background-size: 24px 24px;
  color: #fff; padding: 3.2rem 0;
}
.npt-cta__inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .npt-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.npt-cta h2 { color: var(--npt-light); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin: .5rem 0; }
.npt-cta p { font-size: .9rem; max-width: 36rem; color: #ecfdf5; }

/* Footer */
.npt-footer {
  background: var(--npt-slate); color: #94a3b8; padding: 4rem 0 2rem; font-size: 12px;
  border-top: 1px solid #1e293b;
}
.npt-footer__grid { display: grid; gap: 1.8rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .npt-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .npt-footer__grid,
  .npt-footer__grid--3 { grid-template-columns: 1.15fr 1.7fr 1fr; }
}
.npt-footer-logo__name { color: #fff; font-size: 1.1rem; }
.npt-footer__brand p,
.npt-footer__about { font-size: 11px; line-height: 1.7; margin: 1rem 0; }
.npt-footer__about p { margin: 0 0 0.6em; }
.npt-footer__about p:last-child { margin-bottom: 0; }
.npt-footer__contact p { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; color: #fff; font-weight: 700; }
.npt-footer__contact i { color: var(--npt-emerald); }
.npt-footer h2 {
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid #1e293b; padding-bottom: .5rem; margin-bottom: 1rem;
}
.npt-footer__branch-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .npt-footer__branch-grid { grid-template-columns: 1fr 1fr; } }
.npt-footer__branch-grid span { display: block; color: var(--npt-emerald); font-weight: 700; margin-bottom: .2rem; }
.npt-footer__branch-addr p { margin: 0; }
.npt-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.npt-footer__links a:hover { color: #fff; }
.npt-footer__bottom {
  border-top: 1px solid #1e293b; padding-top: 1.2rem;
  display: flex; flex-direction: column; gap: .8rem; color: #64748b; font-size: 11px;
}
@media (min-width: 640px) { .npt-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.npt-footer__bottom span { color: var(--npt-emerald); }

.npt-back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0.85rem;
  background: #fff;
  color: #1e3a8a;
  box-shadow: 0 8px 24px rgba(2, 18, 46, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.npt-back-to-top:hover {
  background: #f8fafc;
  box-shadow: 0 10px 28px rgba(2, 18, 46, 0.22);
}
.npt-back-to-top:focus-visible {
  outline: 2px solid var(--npt-green);
  outline-offset: 3px;
}
.npt-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
body.admin-bar .npt-back-to-top {
  bottom: calc(1.25rem + 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .npt-back-to-top {
    bottom: calc(1.25rem + 46px);
  }
}

/* Inner pages */
.npt-highlights {
  padding: 5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--npt-border);
}
.npt-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .npt-highlights__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.npt-highlights__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.npt-highlights__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--npt-green);
}
.npt-highlights__icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008a45;
  font-size: 3rem;
  line-height: 1;
}
.npt-highlights__icon img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}
.npt-highlights__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.npt-highlights__desc {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
  margin: 0 auto;
}
.npt-highlights__desc p { margin: 0 0 0.6em; }
.npt-highlights__desc p:last-child { margin-bottom: 0; }

.npt-page-head { background: #fff; border-bottom: 1px solid var(--npt-border); padding: 2.2rem 0 1.8rem; }
.npt-page-head h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; }
.npt-breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0 0 .8rem; padding: 0; font-size: 12px; color: #64748b; }
.npt-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: #cbd5e1; }
.npt-breadcrumb a:hover { color: var(--npt-green); }
.npt-entry {
  padding: 2.5rem 0 4rem;
  max-width: 52rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}
.npt-entry h2,
.npt-entry h3,
.npt-entry h4 {
  margin: 1.6rem 0 .65rem;
  color: var(--npt-dark);
  font-weight: 800;
}
.npt-entry h2 { font-size: 1.35rem; }
.npt-entry h3 { font-size: 1.12rem; }
.npt-entry p { margin: 0 0 1rem; }
.npt-entry ul,
.npt-entry ol { margin: 0 0 1.1rem 1.2rem; padding: 0; }
.npt-entry li { margin: 0 0 .4rem; }
.npt-entry a { color: var(--npt-green); text-decoration: underline; text-underline-offset: 2px; }
.npt-entry img { max-width: 100%; height: auto; border-radius: .6rem; }
.npt-entry figure { margin: 1.25rem 0; }
.npt-entry figcaption { margin-top: .45rem; font-size: .86rem; color: #64748b; text-align: center; }
.npt-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .92rem;
  background: #fff;
}
.npt-entry th,
.npt-entry td {
  border: 1px solid var(--npt-border);
  padding: .55rem .7rem;
  vertical-align: top;
}
.npt-entry th { background: #f8fafc; font-weight: 800; }
.npt-page-layout {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 4rem;
  align-items: start;
}
@media (min-width: 960px) {
  .npt-page-layout {
    grid-template-columns: 17.5rem minmax(0, 1fr);
    gap: 2rem;
    padding-top: 2.4rem;
  }
}
.npt-page-layout .npt-entry {
  max-width: none;
  padding: 0;
}
.npt-page-sidebar {
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 960px) {
  .npt-page-sidebar {
    position: sticky;
    top: 6.25rem;
  }
  body.admin-bar .npt-page-sidebar { top: 7.5rem; }
}
.npt-page-sidebar__mobile {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1.1rem;
  border: 0;
  background: #fff;
  color: var(--npt-dark);
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  text-align: left;
}
.npt-page-sidebar__mobile i { color: #94a3b8; transition: transform .2s ease; }
.npt-page-sidebar.is-open .npt-page-sidebar__mobile i { transform: rotate(180deg); color: var(--npt-green); }
.npt-page-sidebar__title {
  display: none;
  margin: 0;
  padding: 1rem 1.1rem .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--npt-green);
}
.npt-page-sidebar__body { display: none; padding: 0 .7rem 1rem; }
.npt-page-sidebar.is-open .npt-page-sidebar__body { display: block; }
@media (min-width: 960px) {
  .npt-page-sidebar__mobile { display: none; }
  .npt-page-sidebar__title { display: block; }
  .npt-page-sidebar__body { display: block; padding-top: .2rem; }
}
.npt-page-sidebar__nav,
.npt-page-sidebar__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.npt-page-sidebar__sub {
  display: none;
  padding: .15rem 0 .25rem .45rem;
  margin: 0 0 .2rem .35rem;
  border-left: 1px solid #e2e8f0;
}
.npt-page-sidebar li.is-open > .npt-page-sidebar__sub,
.npt-page-sidebar li.current-menu-item > .npt-page-sidebar__sub,
.npt-page-sidebar li.current-menu-ancestor > .npt-page-sidebar__sub,
.npt-page-sidebar li.current_page_item > .npt-page-sidebar__sub,
.npt-page-sidebar li.current_page_ancestor > .npt-page-sidebar__sub {
  display: block;
}
.npt-page-sidebar__row {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.npt-page-sidebar__nav a {
  flex: 1;
  min-width: 0;
  display: block;
  padding: .48rem .65rem;
  border-radius: .55rem;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #334155;
}
.npt-page-sidebar__nav a:hover { background: var(--npt-light); color: var(--npt-green); }
.npt-page-sidebar .current-menu-item > .npt-page-sidebar__row > a,
.npt-page-sidebar .current-menu-ancestor > .npt-page-sidebar__row > a,
.npt-page-sidebar .current_page_item > .npt-page-sidebar__row > a,
.npt-page-sidebar .current_page_ancestor > .npt-page-sidebar__row > a {
  color: var(--npt-green);
}
.npt-page-sidebar .current-menu-item > .npt-page-sidebar__row > a,
.npt-page-sidebar .current_page_item > .npt-page-sidebar__row > a {
  background: var(--npt-light);
}
.npt-page-sidebar__toggle {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #94a3b8;
  border-radius: .45rem;
  cursor: pointer;
}
.npt-page-sidebar__toggle:hover { background: var(--npt-light); color: var(--npt-green); }
.npt-page-sidebar li.is-open > .npt-page-sidebar__row > .npt-page-sidebar__toggle i,
.npt-page-sidebar li.current-menu-ancestor > .npt-page-sidebar__row > .npt-page-sidebar__toggle i,
.npt-page-sidebar li.current_page_ancestor > .npt-page-sidebar__row > .npt-page-sidebar__toggle i {
  transform: rotate(180deg);
}
.npt-page-sidebar__toggle i { font-size: .7rem; transition: transform .2s ease; }
.npt-page-sidebar__empty {
  margin: .4rem .4rem .2rem;
  padding: .7rem .75rem;
  border-radius: .6rem;
  background: #f8fafc;
  color: #64748b;
  font-size: .82rem;
  line-height: 1.5;
}
.npt-page-sidebar__widgets { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--npt-border); }
.npt-front { padding: 0; }
.npt-front .alignfull { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }
.npt-prose { font-size: 1.05rem; line-height: 1.8; color: #334155; }
.npt-prose h2, .npt-prose h3 { margin: 1.6rem 0 .6rem; }
.npt-prose p { margin-bottom: 1rem; }
.npt-featured { margin: 0 0 2rem; border-radius: 1rem; overflow: hidden; }
.npt-featured img { width: 100%; }
.npt-archive { padding: 2.5rem 0 4rem; }
.npt-archive__grid { display: grid; gap: 1.4rem; }
@media (min-width: 768px) { .npt-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .npt-archive__grid { grid-template-columns: repeat(3, 1fr); } }
.npt-archive-card { background: #fff; border: 1px solid var(--npt-border); border-radius: 1rem; overflow: hidden; }
.npt-archive-card__media { height: 180px; overflow: hidden; }
.npt-archive-card__media img { width: 100%; height: 100%; object-fit: cover; }
.npt-archive-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.npt-archive-card time { font-size: 12px; color: #94a3b8; }
.npt-archive-card h2 { font-size: 1.05rem; margin: .4rem 0 .5rem; }
.npt-archive-card:hover h2 { color: var(--npt-green); }
.npt-search { display: flex; gap: .5rem; width: 100%; }
.npt-search input {
  flex: 1; min-width: 0; border: 1px solid var(--npt-border); border-radius: .75rem; padding: .75rem 1rem;
}
.npt-empty { padding: 3rem 0; text-align: center; }
.npt-widget { margin-bottom: 1.5rem; }
.npt-widget__title { font-size: 1rem; margin-bottom: .6rem; }
.npt-comments { margin-top: 2.5rem; }
.navigation.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2rem; }
.navigation.pagination .page-numbers {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: .6rem; background: #fff; border: 1px solid var(--npt-border); font-weight: 700;
}
.navigation.pagination .current { background: var(--npt-green); color: #fff; border-color: var(--npt-green); }

body.admin-bar .npt-header.is-sticky { top: 32px; }
@media (max-width: 782px) { body.admin-bar .npt-header.is-sticky { top: 46px; } }

/* Quote modal */
.npt-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.npt-quote-modal[hidden] { display: none !important; }
.npt-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.55);
}
.npt-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #1a2332;
  color: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.npt-quote-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  appearance: none;
  border: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.npt-quote-modal__heading {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding-right: 2rem;
}
.npt-quote-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #2563eb;
  font-size: 0.85rem;
  color: #fff;
}
.npt-quote-modal__header h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.npt-quote-modal__step-label {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #60a5fa;
}
.npt-quote-modal__form { margin-top: 1.1rem; }
.npt-quote-modal__form label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: #cbd5e1;
}
.npt-quote-modal__form input,
.npt-quote-modal__form textarea,
.npt-quote-modal__form select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  appearance: none;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
.npt-quote-modal__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ffffff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.npt-quote-modal__form select option {
  color: #111;
  background: #fff;
}
.npt-quote-modal__form input:focus,
.npt-quote-modal__form textarea:focus,
.npt-quote-modal__form select:focus {
  outline: none;
  border-color: #3b82f6;
}
.npt-quote-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.npt-quote-modal__row > * { min-width: 0; }
.npt-quote-modal__hint {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.78rem;
  color: #facc15;
}
.npt-quote-modal__status {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #86efac;
}
.npt-quote-modal__status.is-error { color: #fca5a5; }
.npt-quote-modal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #334155;
}
.npt-quote-modal__btn {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.npt-quote-modal__btn--next {
  background: #2563eb;
  color: #fff;
}
.npt-quote-modal__btn--next:hover { background: #1d4ed8; }
.npt-quote-modal__more {
  margin-left: auto;
  font-size: 0.78rem;
  color: #facc15;
  text-decoration: none;
}
.npt-quote-modal__more:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .npt-quote-modal__row { grid-template-columns: 1fr; }
  .npt-quote-modal__more { width: 100%; margin-left: 0; }
}

/* Contact page */
.npt-contact {
  padding: 2.2rem 0 4.5rem;
  background:
    radial-gradient(circle at top right, rgba(0, 125, 71, 0.06), transparent 28rem),
    #f8fafc;
}
.npt-contact__head { margin-bottom: 2rem; }
.npt-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--npt-light);
  color: var(--npt-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.npt-contact__eyebrow i { font-size: 0.85rem; }
.npt-contact__head h1 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  color: var(--npt-dark);
  margin: 0 0 0.7rem;
}
.npt-contact__intro {
  max-width: 42rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}
.npt-contact__intro p { margin: 0 0 0.5em; }
.npt-contact__intro p:last-child { margin-bottom: 0; }
.npt-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .npt-contact__grid { grid-template-columns: 5fr 7fr; gap: 1.75rem; }
}
.npt-contact__info,
.npt-contact__form-card {
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
}
@media (min-width: 640px) {
  .npt-contact__info,
  .npt-contact__form-card { padding: 1.85rem 1.8rem; }
}
.npt-contact__col-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  color: var(--npt-dark);
}
.npt-contact__bar {
  width: 0.28rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--npt-green);
  flex-shrink: 0;
}
.npt-contact__office {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--npt-border);
  border-radius: 1rem;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.npt-contact__office:hover {
  border-color: rgba(0, 125, 71, 0.45);
  box-shadow: 0 8px 20px -12px rgba(0, 125, 71, 0.35);
}
.npt-contact__office-icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--npt-light);
  color: var(--npt-green);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}
.npt-contact__office-icon img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}
.npt-contact__office-body { min-width: 0; flex: 1; }
.npt-contact__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--npt-green);
  background: var(--npt-light);
  border-radius: 0.4rem;
  padding: 0.15rem 0.5rem;
}
.npt-contact__office h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0.35rem 0 0.25rem;
  color: var(--npt-dark);
}
.npt-contact__address {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}
.npt-contact__address p { margin: 0 0 0.35em; }
.npt-contact__address p:last-child { margin-bottom: 0; }
.npt-contact__office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.npt-contact__map,
.npt-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 0.6rem;
  transition: 0.15s ease;
}
.npt-contact__map {
  color: var(--npt-green);
  background: var(--npt-light);
}
.npt-contact__map:hover { background: #d1eadc; }
.npt-contact__phone {
  color: var(--npt-dark);
  background: #fff;
  border: 1px solid var(--npt-border);
}
.npt-contact__phone:hover { border-color: var(--npt-green); color: var(--npt-green); }
.npt-contact__phone i { color: var(--npt-green); }
.npt-contact__support {
  margin-top: 0.4rem;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 4px solid var(--npt-green);
  border-radius: 0 0.85rem 0.85rem 0;
  background: linear-gradient(90deg, rgba(0, 125, 71, 0.08), transparent);
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}
.npt-contact__support p { margin: 0 0 0.4em; }
.npt-contact__support p:last-child { margin-bottom: 0; }
.npt-contact__support strong { color: var(--npt-dark); }
.npt-contact__form-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--npt-dark);
}
.npt-contact__form-intro {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.npt-contact__form-intro p { margin: 0 0 0.4em; }
.npt-contact__form-intro p:last-child { margin-bottom: 0; }
.npt-contact__success {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 168, 89, 0.35);
  background: rgba(0, 168, 89, 0.1);
  color: var(--npt-hover);
  font-size: 0.88rem;
  font-weight: 600;
}
.npt-contact__success[hidden] { display: none !important; }
.npt-contact__success > div {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.npt-contact__success i { color: var(--npt-emerald); margin-top: 0.15rem; }
.npt-contact__success-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--npt-green);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.npt-contact-form { display: grid; gap: 1rem; }
.npt-contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .npt-contact-form__row { grid-template-columns: 1fr 1fr; }
}
.npt-contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
}
.npt-contact-form .is-req { color: var(--npt-red); }
.npt-contact-form .is-opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: #94a3b8;
}
.npt-contact-form input,
.npt-contact-form select,
.npt-contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  appearance: none;
  border: 1px solid var(--npt-border);
  background: #f8fafc;
  color: var(--npt-dark);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.npt-contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23475569' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}
.npt-contact-form textarea { resize: vertical; min-height: 7rem; }
.npt-contact-form input:focus,
.npt-contact-form select:focus,
.npt-contact-form textarea:focus {
  outline: none;
  border-color: var(--npt-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 125, 71, 0.12);
}
.npt-contact-form__status {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--npt-green);
  letter-spacing: 0;
  text-transform: none;
}
.npt-contact-form__status.is-error { color: var(--npt-red); }
.npt-contact-form__submit {
  justify-self: start;
  background: var(--npt-red);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(237, 38, 39, 0.4);
  letter-spacing: 0.08em;
}
.npt-contact-form__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* About page */
.npt-about-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.2rem;
  background: linear-gradient(180deg, #f0fdf6 0%, #f8fafc 55%, #fff 100%);
  text-align: center;
}
@media (min-width: 768px) {
  .npt-about-hero { padding: 5.5rem 0 4rem; }
}
.npt-about-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(0, 125, 71, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.npt-about-hero__inner { position: relative; z-index: 1; }
.npt-about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--npt-green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 125, 71, 0.08);
  border: 1px solid rgba(0, 125, 71, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.15rem;
}
.npt-about-hero__title {
  max-width: 55rem;
  margin: 0 auto 1.1rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--npt-dark);
  line-height: 1.15;
}
.npt-about-hero__title span {
  display: block;
  background: linear-gradient(90deg, var(--npt-green), var(--npt-emerald), #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.npt-about-hero__desc {
  max-width: 44rem;
  margin: 0 auto;
  color: #64748b;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
}
.npt-about-hero__desc p { margin: 0 0 0.5em; }
.npt-about-hero__desc p:last-child { margin-bottom: 0; }
.npt-about-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  max-width: 56rem;
  margin: 2.2rem auto 0;
}
@media (min-width: 900px) {
  .npt-about-hero__stats { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.npt-about-hero__stat {
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 1.1rem;
  padding: 1.2rem 0.9rem;
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.35);
}
.npt-about-hero__stat-value {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--npt-dark);
  margin-bottom: 0.25rem;
}
.npt-about-hero__stat:nth-child(odd) .npt-about-hero__stat-value { color: var(--npt-green); }
.npt-about-hero__stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.npt-about-overview { padding-top: 3.5rem; }
.npt-about-overview__grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .npt-about-overview__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.npt-about-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--npt-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.npt-about-overview__bar {
  width: 2rem;
  height: 2px;
  background: var(--npt-green);
  border-radius: 999px;
}
.npt-about-overview__title {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.1rem;
  color: var(--npt-dark);
}
.npt-about-overview__title span { color: var(--npt-green); }
.npt-about-overview__body {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
}
.npt-about-overview__body p { margin: 0 0 0.9em; }
.npt-about-overview__body p:last-child { margin-bottom: 0; }
.npt-about-overview__quote {
  margin: 1.4rem 0 0;
  padding: 1.1rem 1.15rem;
  border-left: 4px solid var(--npt-green);
  border-radius: 0 0.9rem 0.9rem 0;
  background: #fff;
  box-shadow: 0 8px 22px -16px rgba(15, 23, 42, 0.4);
  color: #475569;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
}
.npt-about-overview__quote p { margin: 0; }
.npt-about-overview__photo {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--npt-border);
  box-shadow: 0 22px 40px -22px rgba(15, 23, 42, 0.45);
}
.npt-about-overview__photo img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.npt-about-overview__photo:hover img { transform: scale(1.05); }
.npt-about-overview__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
}
.npt-about-overview__caption h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--npt-dark);
  margin-bottom: 0.2rem;
}
.npt-about-overview__caption div {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}
.npt-about-overview__caption p { margin: 0; }
.npt-about-overview__award {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--npt-green);
  color: #fff;
  font-size: 1.1rem;
}

.npt-about-timeline { background: #f8fafc; border-block: 1px solid var(--npt-border); }
.npt-about-timeline__wrap { position: relative; }
.npt-about-timeline__line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: rgba(0, 125, 71, 0.22);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .npt-about-timeline__line { display: block; }
}
.npt-about-timeline__item {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .npt-about-timeline__item {
    grid-template-columns: 1fr 3.2rem 1fr;
    gap: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
.npt-about-timeline__spacer { display: none; }
@media (min-width: 768px) {
  .npt-about-timeline__spacer { display: block; }
  .npt-about-timeline__item.is-right .npt-about-timeline__spacer { order: 1; }
  .npt-about-timeline__item.is-right .npt-about-timeline__dot { order: 2; }
  .npt-about-timeline__item.is-right .npt-about-timeline__card { order: 3; }
  .npt-about-timeline__item.is-left .npt-about-timeline__card { order: 1; }
  .npt-about-timeline__item.is-left .npt-about-timeline__dot { order: 2; }
  .npt-about-timeline__item.is-left .npt-about-timeline__spacer { order: 3; }
}
.npt-about-timeline__dot {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--npt-green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 8px 16px -8px rgba(0, 125, 71, 0.7);
  z-index: 1;
  justify-self: center;
  text-align: center;
}
.npt-about-timeline__item:nth-child(odd) .npt-about-timeline__dot {
  background: #fff;
  color: var(--npt-green);
  border: 2px solid var(--npt-green);
}
.npt-about-timeline__item.is-featured .npt-about-timeline__dot {
  width: 3.1rem;
  height: 3.1rem;
  background: var(--npt-green);
  color: #fff;
  border: 0;
  box-shadow: 0 0 0 6px rgba(0, 125, 71, 0.16);
  font-size: 0.72rem;
}
.npt-about-timeline__card {
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 1.1rem;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 8px 22px -16px rgba(15, 23, 42, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.npt-about-timeline__card:hover { border-color: rgba(0, 125, 71, 0.45); }
.npt-about-timeline__item.is-featured .npt-about-timeline__card {
  border-color: rgba(0, 125, 71, 0.45);
  box-shadow: 0 14px 28px -18px rgba(0, 125, 71, 0.45);
}
.npt-about-timeline__badge {
  display: inline-block;
  color: var(--npt-green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.npt-about-timeline__card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0.25rem 0 0.45rem;
  color: var(--npt-dark);
}
.npt-about-timeline__text {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.65;
}
.npt-about-timeline__text p { margin: 0 0 0.45em; }
.npt-about-timeline__text p:last-child { margin-bottom: 0; }

.npt-about-vision__grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .npt-about-vision__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .npt-about-vision__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.npt-about-vision__card {
  background: #fff;
  border: 1px solid var(--npt-border);
  border-radius: 1.25rem;
  padding: 1.7rem 1.5rem;
  box-shadow: 0 8px 22px -16px rgba(15, 23, 42, 0.3);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.npt-about-vision__card:hover {
  border-color: var(--npt-green);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -18px rgba(0, 125, 71, 0.4);
}
.npt-about-vision__icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: rgba(0, 125, 71, 0.1);
  color: var(--npt-green);
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.npt-about-vision__icon img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}
.npt-about-vision__card:hover .npt-about-vision__icon {
  background: var(--npt-green);
  color: #fff;
}
.npt-about-vision__card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  color: var(--npt-dark);
}
.npt-about-vision__card > div:not(.npt-about-vision__icon) {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}
.npt-about-vision__card p { margin: 0 0 0.45em; }
.npt-about-vision__card p:last-child { margin-bottom: 0; }

.npt-about-cta { padding-top: 2.5rem; padding-bottom: 4rem; }
.npt-about-cta__box {
  display: grid;
  gap: 1.6rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 1.6rem;
  padding: 1.7rem 1.5rem;
  color: #e2e8f0;
  box-shadow: 0 24px 40px -24px rgba(15, 23, 42, 0.6);
}
@media (min-width: 640px) {
  .npt-about-cta__box { padding: 2.2rem 2rem; }
}
@media (min-width: 1024px) {
  .npt-about-cta__box {
    grid-template-columns: 8fr 4fr;
    align-items: center;
    gap: 2rem;
  }
}
.npt-about-cta__badge {
  display: inline-flex;
  color: #86efac;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 168, 89, 0.14);
  border: 1px solid rgba(0, 168, 89, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.75rem;
}
.npt-about-cta__copy h2 {
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 1.1rem;
}
.npt-about-cta__offices {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 640px) {
  .npt-about-cta__offices { grid-template-columns: 1fr 1fr; }
}
.npt-about-cta__office {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid #334155;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}
.npt-about-cta__office-title {
  color: #86efac;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.npt-about-cta__office-text {
  color: #cbd5e1;
  font-size: 0.8rem;
  line-height: 1.55;
}
.npt-about-cta__office-text p { margin: 0; }
.npt-about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.npt-about-cta__hotline {
  background: var(--npt-red);
  color: #fff;
  box-shadow: 0 12px 22px -10px rgba(237, 38, 39, 0.55);
}
.npt-about-cta__hotline:hover { filter: brightness(1.06); transform: translateY(-1px); }
.npt-about-cta__quote { width: 100%; }
