/* Template Section: global-header */
/* Template Section: Navbar Global */
.np-global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .90);
  border-bottom: 1px solid rgba(226, 232, 240, .82);
  backdrop-filter: saturate(165%) blur(18px);
  -webkit-backdrop-filter: saturate(165%) blur(18px);
  transition: box-shadow .22s ease, background .22s ease;
}
.np-global-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 32px rgba(15, 23, 42, .075);
}
.np-global-header__inner {
  width: min(var(--np-container, 1240px), calc(100% - 48px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.np-global-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--np-dark, #101828);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.02em;
}
.np-global-brand__mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--np-primary, #2864dc), #173c9d);
  box-shadow: 0 8px 22px rgba(40, 100, 220, .24);
  font-size: 12px;
  letter-spacing: .04em;
}
.np-global-brand img {
  display: block;
  width: auto;
  max-width: 178px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.np-global-brand img[hidden],
.np-global-brand__mark[hidden],
.np-global-brand__name[hidden] { display: none !important; }
.np-global-brand__name {
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.np-global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.np-global-nav > a {
  position: relative;
  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #536077;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.np-global-nav > a:hover,
.np-global-nav > a.is-active {
  color: var(--np-primary, #2864dc);
  background: var(--np-primary-soft, #eef4ff);
}
.np-global-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--np-primary, #2864dc);
}
.np-global-nav .np-global-nav__cta {
  margin-left: 9px;
  padding-inline: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--np-primary, #2864dc), #1f54c8);
  box-shadow: 0 9px 22px rgba(40, 100, 220, .22);
}
.np-global-nav .np-global-nav__cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #1f58cb, #183f9d);
  transform: translateY(-1px);
}
.np-global-nav .np-global-nav__cta::after { display: none; }
.np-global-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--np-line, #e2e8f0);
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
}
.np-global-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #1f2937;
  transition: transform .2s ease, opacity .2s ease;
}
.np-global-header.is-open .np-global-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.np-global-header.is-open .np-global-menu-toggle span:nth-child(2) { opacity: 0; }
.np-global-header.is-open .np-global-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 760px) {
  .np-global-header__inner {
    width: calc(100% - 32px);
    min-height: 66px;
  }
  .np-global-brand__mark { flex-basis: 38px; width: 38px; height: 38px; }
  .np-global-brand__name { font-size: 15px; }
  .np-global-brand img { max-width: 145px; max-height: 38px; }
  .np-global-menu-toggle { display: block; }
  .np-global-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    padding: 10px;
    border: 1px solid var(--np-line, #e2e8f0);
    border-radius: 16px;
    background: rgba(255,255,255,.99);
    box-shadow: 0 22px 60px rgba(15,23,42,.16);
    flex-direction: column;
    align-items: stretch;
  }
  .np-global-header.is-open .np-global-nav { display: flex; }
  .np-global-nav > a { justify-content: flex-start; padding: 12px 14px; }
  .np-global-nav > a.is-active::after { display: none; }
  .np-global-nav .np-global-nav__cta { justify-content: center; margin: 5px 0 0; }
}

/* Template Section: Main Content */
:root {
  --np-primary: #2864dc;
  --np-primary-soft: #eef4ff;
  --np-accent: #12b981;
  --np-dark: #101828;
  --np-text: #172033;
  --np-muted: #69758c;
  --np-line: #e2e8f0;
  --np-surface: #ffffff;
  --np-surface-soft: #f6f8fc;
  --np-container: 1240px;
  --np-section-space: 88px;
  --np-radius-sm: 14px;
  --np-radius: 20px;
  --np-radius-lg: 28px;
  --np-shadow-sm: 0 10px 30px rgba(20, 39, 78, .065);
  --np-shadow-lg: 0 24px 60px rgba(20, 39, 78, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--np-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.np-template-content {
  min-height: 55vh;
  overflow: clip;
}
.np-template-content > .np-header,
.np-template-content > .np-footer,
.np-template-content > header.np-header,
.np-template-content > footer.np-footer { display: none !important; }
.np-public {
  width: 100%;
  max-width: 100%;
  color: var(--np-text);
}
.np-public .np-container,
.np-public.np-container {
  width: min(var(--np-container), calc(100% - 48px));
  max-width: var(--np-container);
  margin-inline: auto;
  padding-inline: 0;
}
.np-public.np-section,
.np-public .np-section {
  padding: var(--np-section-space) 0;
}
.np-public .np-card {
  border: 1px solid rgba(221, 228, 239, .96);
  border-radius: var(--np-radius);
  background: var(--np-surface);
  box-shadow: var(--np-shadow-sm);
}
.np-public .np-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--np-primary) 14%, transparent);
  border-radius: 999px;
  color: var(--np-primary);
  background: color-mix(in srgb, var(--np-primary) 8%, #fff);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.np-public .np-title {
  max-width: 860px;
  margin: 20px 0 0;
  color: #0f172a;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -.05em;
}
.np-public .np-section-title {
  max-width: 820px;
  margin: 14px 0 0;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.np-public .np-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--np-muted);
  font-size: 16px;
  line-height: 1.75;
}
.np-public .np-center { text-align: center; }
.np-public .np-center .np-section-title,
.np-public .np-center .np-lead { margin-inline: auto; }
.np-public .np-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.np-public .np-heading-row > div { max-width: 840px; }
.np-public .np-btn {
  min-height: 48px;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.np-public .np-btn:hover { transform: translateY(-2px); }
.np-public .np-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--np-primary), color-mix(in srgb, var(--np-primary) 78%, #102f81));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--np-primary) 22%, transparent);
}
.np-public .np-btn-primary:hover { box-shadow: 0 15px 32px color-mix(in srgb, var(--np-primary) 28%, transparent); }
.np-public .np-btn-light {
  color: #23324b;
  border-color: #dce4ef;
  background: #fff;
  box-shadow: 0 7px 20px rgba(20, 39, 78, .05);
}
.np-public .np-btn-light:hover { border-color: color-mix(in srgb, var(--np-primary) 28%, #dce4ef); }
.np-public :where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--np-primary) 30%, transparent);
  outline-offset: 3px;
}
.np-public .np-note {
  color: #8b96a8;
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  :root { --np-section-space: 72px; }
  .np-public .np-heading-row { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  :root { --np-section-space: 58px; }
  .np-public .np-container,
  .np-public.np-container { width: calc(100% - 32px); }
  .np-public .np-title { font-size: clamp(36px, 11vw, 50px); }
  .np-public .np-section-title { font-size: clamp(28px, 8.2vw, 36px); }
  .np-public .np-lead { font-size: 15px; line-height: 1.7; }
  .np-public .np-btn { min-height: 46px; }
}

/* Template Section: global-footer */
/* Template Section: Footer Global */
.np-global-footer {
  position: relative;
  overflow: hidden;
  color: #d9e1ee;
  background:
    radial-gradient(circle at 85% 10%, rgba(52, 117, 239, .18), transparent 28%),
    linear-gradient(145deg, #0d1728, #101d33 58%, #0c1423);
}
.np-global-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 72%);
}
.np-global-footer__inner {
  position: relative;
  width: min(var(--np-container, 1240px), calc(100% - 48px));
  margin-inline: auto;
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) minmax(120px, .65fr) minmax(160px, .8fr) minmax(210px, 1fr);
  gap: 44px;
}
.np-global-brand--footer { color: #fff; }
.np-global-brand--footer .np-global-brand__mark {
  color: var(--np-primary, #2864dc);
  background: #fff;
  box-shadow: none;
}
.np-global-brand--footer .np-global-brand__name { color: #fff; }
.np-global-footer__brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #9eacc2;
  font-size: 14px;
  line-height: 1.75;
}
.np-global-footer__links,
.np-global-footer__contact {
  display: grid;
  align-content: start;
  gap: 11px;
}
.np-global-footer strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
}
.np-global-footer a,
.np-global-footer span {
  color: #aeb9ca;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.55;
}
.np-global-footer a:hover { color: #fff; }
.np-global-footer__bottom {
  position: relative;
  width: min(var(--np-container, 1240px), calc(100% - 48px));
  margin-inline: auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.np-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  min-height: 54px;
  padding: 0 20px 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #13aa52);
  box-shadow: 0 16px 38px rgba(15, 118, 63, .28);
  text-decoration: none;
  font-size: 13px;
  font-weight: 820;
  transition: transform .2s ease, box-shadow .2s ease;
}
.np-whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 118, 63, .34);
}
.np-whatsapp-float svg { width: 25px; height: 25px; flex: 0 0 auto; }
.np-whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .32);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .np-global-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .np-global-footer__contact { grid-column: 2 / -1; }
}
@media (max-width: 680px) {
  .np-global-footer__inner {
    width: calc(100% - 40px);
    padding: 50px 0 36px;
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }
  .np-global-footer__brand,
  .np-global-footer__contact { grid-column: 1 / -1; }
  .np-global-footer__bottom {
    width: calc(100% - 40px);
    padding: 18px 0 22px;
  }
  .np-whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }
  .np-whatsapp-float span { display: none; }
}

/* Section: catalog */
.np-catalog-page { background: #fff; }
.np-catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, color-mix(in srgb, var(--np-primary) 34%, transparent), transparent 32%),
    linear-gradient(135deg, #0f1d35, #14284b 68%, #10213e);
}
.np-catalog-hero .np-eyebrow { color: #b8d0ff; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
.np-catalog-hero .np-title { max-width: 920px; color: #fff; }
.np-catalog-hero .np-lead { max-width: 760px; color: #c7d2e3; }
.np-search { max-width: 650px; margin-top: 30px; }
.np-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: #172033;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 40px rgba(4, 12, 27, .18);
  outline: none;
}
.np-search input:focus { border-color: #8fb3ff; box-shadow: 0 0 0 4px rgba(143,179,255,.16), 0 16px 40px rgba(4,12,27,.18); }
.np-catalog-body { background: var(--np-surface-soft); }
.np-catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.np-catalog-card { overflow: hidden; min-width: 0; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.np-catalog-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--np-primary) 25%, #dfe6ef); box-shadow: var(--np-shadow-lg); }
.np-catalog-media {
  min-height: 220px;
  aspect-ratio: 16 / 9.5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(145deg, #15243d, #2e578f);
  background-size: cover;
  background-position: center;
}
.np-catalog-media span { font-size: 48px; font-weight: 900; letter-spacing: -.05em; }
.np-catalog-media small { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-catalog-content { flex: 1; padding: 25px; display: flex; flex-direction: column; }
.np-catalog-category { color: var(--np-primary); font-size: 10px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.np-catalog-content h2 { margin: 12px 0 0; color: #172033; font-size: 21px; line-height: 1.3; }
.np-catalog-content p { flex: 1; margin: 10px 0 24px; color: var(--np-muted); font-size: 13px; line-height: 1.72; }
.np-catalog-content > div { padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid #e7ecf3; }
.np-catalog-content strong { color: #24324a; font-size: 14px; }
.np-catalog-content a { color: var(--np-primary); text-decoration: none; font-size: 12px; font-weight: 820; white-space: nowrap; }
.np-no-result { padding: 70px 20px; border: 1px dashed #cbd5e1; border-radius: 18px; color: var(--np-muted); background: #fff; text-align: center; }
.np-catalog-consult {
  margin-top: 38px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid #dfe6ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--np-shadow-sm);
}
.np-catalog-consult strong, .np-catalog-consult span { display: block; }
.np-catalog-consult strong { color: #172033; font-size: 17px; }
.np-catalog-consult span { margin-top: 6px; color: var(--np-muted); font-size: 13px; line-height: 1.6; }
@media (max-width: 940px) { .np-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) {
  .np-catalog-hero { padding: 68px 0 62px; }
  .np-catalog-grid { grid-template-columns: 1fr; }
  .np-catalog-consult { align-items: stretch; flex-direction: column; }
  .np-catalog-consult .np-btn { width: 100%; }
}

/* Section: detail-hero */
.np-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--np-primary) 36%, transparent), transparent 34%),
    linear-gradient(135deg, #0f1d35, #14284b 70%, #10213e);
}
.np-detail-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); align-items: center; gap: 70px; }
.np-detail-copy { min-width: 0; }
.np-detail-hero .np-eyebrow { color: #b8d0ff; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
.np-detail-badge { display: inline-flex; margin-left: 8px; padding: 7px 10px; border-radius: 999px; color: #b9f1dc; background: rgba(18,185,129,.12); font-size: 10px; font-weight: 820; }
.np-detail-hero .np-title { color: #fff; }
.np-detail-tagline { margin: 17px 0 0; color: #e6edf8; font-size: 20px; font-weight: 720; line-height: 1.45; }
.np-detail-hero .np-lead { color: #bdc9db; }
.np-detail-hero .np-btn-light { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); box-shadow: none; }
.np-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.np-detail-visual {
  min-height: 400px;
  padding: 36px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px rgba(4, 12, 27, .28);
}
.np-detail-visual span { font-size: 74px; font-weight: 900; letter-spacing: -.06em; }
.np-detail-visual strong { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.np-detail-visual.has-image span, .np-detail-visual.has-image strong { opacity: 0; }
@media (max-width: 900px) {
  .np-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .np-detail-visual { min-height: 340px; }
}
@media (max-width: 560px) {
  .np-detail-hero { padding: 66px 0 70px; }
  .np-detail-badge { margin: 10px 0 0; }
  .np-hero-actions { display: grid; }
  .np-hero-actions .np-btn { width: 100%; }
  .np-detail-visual { min-height: 260px; border-radius: 22px; }
}

/* Section: highlights */
.np-highlights { background: #fff; }
.np-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.np-feature { min-width: 0; min-height: 190px; padding: 23px; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 15px; }
.np-feature > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #0d966b; background: #e8f8f2; font-weight: 900; }
.np-feature h3 { margin: 2px 0 0; color: #172033; font-size: 16px; line-height: 1.4; }
.np-feature p { margin: 9px 0 17px; color: var(--np-muted); font-size: 12px; line-height: 1.7; }
.np-feature small { color: var(--np-primary); font-size: 9px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 900px) { .np-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .np-feature-grid { grid-template-columns: 1fr; margin-top: 34px; } }

/* Section: media */
.np-media-section { background: var(--np-surface-soft); }
.np-media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.np-media-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--np-shadow-sm);
}
.np-media-item > div {
  min-height: 220px;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(145deg, #15243d, #2e578f);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.np-media-item > div strong { font-size: 24px; }
.np-media-item > div small { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-media-item p { min-height: 68px; margin: 0; padding: 17px 19px; color: var(--np-muted); font-size: 12px; line-height: 1.65; }
@media (max-width: 900px) { .np-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .np-media-grid { grid-template-columns: 1fr; } }

/* Section: packages */
.np-packages { background: #fff; scroll-margin-top: 90px; }
.np-package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; align-items: stretch; }
.np-package { min-width: 0; padding: 28px; display: flex; flex-direction: column; }
.np-package-top > span { display: inline-flex; min-height: 25px; padding: 6px 9px; border-radius: 999px; color: var(--np-primary); background: var(--np-primary-soft); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.np-package h3 { margin: 16px 0 0; color: #172033; font-size: 22px; }
.np-package-top p { margin: 8px 0 0; color: var(--np-muted); font-size: 12px; line-height: 1.65; }
.np-package-price { margin: 24px 0 0; padding: 20px 0; border-block: 1px solid #e7ecf3; }
.np-package-price strong, .np-package-price small { display: block; }
.np-package-price strong { color: #172033; font-size: 24px; letter-spacing: -.03em; }
.np-package-price small { margin-top: 5px; color: #8995a7; font-size: 10px; }
.np-package > p { margin: 18px 0 0; color: var(--np-muted); font-size: 12px; line-height: 1.7; }
.np-package ul { flex: 1; margin: 20px 0 24px; padding: 0; display: grid; align-content: start; gap: 10px; list-style: none; }
.np-package li { position: relative; padding-left: 22px; color: #536078; font-size: 12px; line-height: 1.55; }
.np-package li::before { content: "✓"; position: absolute; left: 0; color: #0d966b; font-weight: 900; }
.np-package .np-btn { width: 100%; }
@media (max-width: 940px) { .np-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .np-package-grid { grid-template-columns: 1fr; margin-top: 34px; } }

/* Section: comparison */
.np-compare-section { background: var(--np-surface-soft); }
.np-compare-wrap { overflow: auto; margin-top: 36px; border: 1px solid #dfe6ef; border-radius: 20px; background: #fff; box-shadow: var(--np-shadow-sm); }
.np-compare { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; }
.np-compare th, .np-compare td { padding: 17px 18px; border-bottom: 1px solid #e7ecf3; text-align: center; font-size: 13px; }
.np-compare th:first-child, .np-compare td:first-child { position: sticky; left: 0; z-index: 1; text-align: left; background: #fff; }
.np-compare th { color: #334155; background: #f7f9fd; font-size: 12px; font-weight: 850; }
.np-compare th:first-child { z-index: 2; background: #f7f9fd; }
.np-compare tr:last-child td { border-bottom: 0; }
.np-compare td small, .np-compare td strong { display: block; }
.np-compare td strong { color: #24324a; }
.np-compare td small { margin-top: 5px; color: #7c8798; font-size: 10px; }
.np-compare td.is-included b { color: #0d966b; }
.np-compare td.is-addon b, .np-compare td.is-limited b { color: #c97710; }
.np-empty-inline { margin-top: 28px; color: var(--np-muted); font-size: 14px; }

/* Section: spec-testimonial */
.np-spec-test { background: #fff; }
.np-two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px; }
.np-spec-list { display: grid; gap: 0; margin-top: 32px; }
.np-spec-list article { padding: 17px 0; border-bottom: 1px solid #e7ecf3; }
.np-spec-list span { display: block; color: var(--np-primary); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.np-spec-list strong { display: block; margin-top: 5px; color: #25334b; font-size: 14px; }
.np-spec-list p { margin: 6px 0 0; color: var(--np-muted); font-size: 13px; line-height: 1.7; }
.np-detail-test { display: grid; gap: 14px; margin-top: 32px; }
.np-detail-test article { padding: 24px; }
.np-detail-test article > div { color: #eaa31f; letter-spacing: .08em; }
.np-detail-test p { margin: 13px 0 17px; color: #526077; font-size: 14px; line-height: 1.75; }
.np-detail-test strong, .np-detail-test small { display: block; }
.np-detail-test strong { color: #24324a; font-size: 13px; }
.np-detail-test small { margin-top: 5px; color: #7b8799; font-size: 11px; }
.np-spec-test .np-note { margin-top: 14px; }
@media (max-width: 860px) { .np-two-col { grid-template-columns: 1fr; gap: 50px; } }

/* Section: faq-related */
.np-faq-section { background: var(--np-surface-soft); }
.np-faq { margin-top: 30px; }
.np-faq details { margin-bottom: 11px; padding: 18px 19px; border: 1px solid #dfe6ef; border-radius: 15px; background: #fff; box-shadow: 0 8px 20px rgba(20,39,78,.04); }
.np-faq details[open] { border-color: color-mix(in srgb, var(--np-primary) 24%, #dfe6ef); box-shadow: 0 12px 28px rgba(20,39,78,.08); }
.np-faq summary { color: #25334b; font-size: 14px; font-weight: 800; line-height: 1.45; cursor: pointer; }
.np-faq p { margin: 13px 0 0; color: var(--np-muted); font-size: 13px; line-height: 1.75; }
.np-related { display: grid; gap: 12px; margin-top: 30px; }
.np-related a { min-width: 0; padding: 15px; display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 14px; border: 1px solid #dfe6ef; border-radius: 15px; color: var(--np-dark); background: #fff; box-shadow: 0 8px 20px rgba(20,39,78,.04); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.np-related a:hover { transform: translateX(3px); border-color: color-mix(in srgb, var(--np-primary) 24%, #dfe6ef); box-shadow: 0 13px 30px rgba(20,39,78,.09); }
.np-related a > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(145deg, var(--np-primary), #254986); font-size: 14px; font-weight: 900; }
.np-related strong, .np-related small { display: block; }
.np-related strong { color: #25334b; font-size: 13px; }
.np-related small { margin-top: 5px; color: #7b8799; font-size: 10px; line-height: 1.5; }

/* Section: not-found */
.np-not-found { min-height: 68vh; padding: 82px 20px; display: grid; place-items: center; background: radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--np-primary) 10%, transparent), transparent 30%), #f8faff; text-align: center; }
.np-not-found > div { max-width: 560px; }
.np-not-found span { color: #dbe5f3; font-size: clamp(72px, 12vw, 118px); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.np-not-found h1 { margin: 10px 0 8px; color: #111827; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.035em; }
.np-not-found p { margin: 0 0 28px; color: var(--np-muted); font-size: 14px; line-height: 1.75; }