/* 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: hero */
.np-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 96px;
  border-bottom: 1px solid #e7edf6;
  background:
    radial-gradient(circle at 15% 18%, color-mix(in srgb, var(--np-primary) 13%, transparent), transparent 29%),
    radial-gradient(circle at 86% 23%, color-mix(in srgb, var(--np-accent) 9%, transparent), transparent 25%),
    linear-gradient(180deg, #f6f9ff 0%, #fff 96%);
}
.np-hero::before,
.np-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}
.np-hero::before {
  top: -170px;
  left: -125px;
  width: 370px;
  height: 370px;
  border: 1px solid color-mix(in srgb, var(--np-primary) 10%, transparent);
}
.np-hero::after {
  right: -110px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid color-mix(in srgb, var(--np-accent) 10%, transparent);
}
.np-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr);
  align-items: center;
  gap: 72px;
}
.np-hero-copy { min-width: 0; }
.np-hero .np-title { max-width: 720px; }
.np-hero .np-title span { color: var(--np-primary); }
.np-hero .np-lead { max-width: 650px; margin-top: 22px; }
.np-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.np-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #53627a;
  font-size: 11px;
}
.np-mini-proof strong { display: inline-flex; align-items: center; }
.np-mini-proof strong::before {
  content: "✓";
  width: 18px;
  height: 18px;
  margin-right: 7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0d966b;
  background: #e8f8f2;
  font-size: 10px;
  font-weight: 900;
}
.np-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.np-screen {
  width: min(500px, 100%);
  height: 334px;
  padding: 17px;
  border: 1px solid #dce5f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 82px rgba(25, 55, 110, .18);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}
.np-screen-top { display: flex; gap: 6px; }
.np-screen-top i { width: 7px; height: 7px; border-radius: 50%; background: #d8dfeb; }
.np-screen-body {
  height: 281px;
  margin-top: 14px;
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f4f7fd, #eaf1ff);
}
.np-chart { height: 142px; display: flex; align-items: end; gap: 15px; }
.np-chart b {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(var(--np-primary), #8db0fb);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.np-chart b:nth-child(1) { height: 45%; }
.np-chart b:nth-child(2) { height: 72%; }
.np-chart b:nth-child(3) { height: 58%; }
.np-chart b:nth-child(4) { height: 95%; }
.np-screen-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 23px; }
.np-screen-cards span { height: 48px; border-radius: 10px; background: #fff; }
.np-float-card {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--np-line);
  border-radius: 12px;
  color: #172033;
  background: #fff;
  box-shadow: 0 14px 35px rgba(16, 24, 40, .12);
  font-size: 11px;
  font-weight: 800;
}
.np-float-one { left: -18px; top: 82px; }
.np-float-two { right: -12px; bottom: 54px; }

@media (max-width: 1040px) {
  .np-hero-grid { grid-template-columns: 1fr 390px; gap: 44px; }
  .np-hero-visual { min-height: 390px; }
  .np-screen { height: 305px; }
  .np-screen-body { height: 252px; }
}
@media (max-width: 860px) {
  .np-hero { padding: 74px 0 78px; }
  .np-hero-grid { grid-template-columns: 1fr; }
  .np-hero-copy { text-align: center; }
  .np-hero .np-title, .np-hero .np-lead { margin-inline: auto; }
  .np-hero-actions, .np-mini-proof { justify-content: center; }
  .np-hero-visual { width: min(560px, 100%); margin-inline: auto; }
}
@media (max-width: 560px) {
  .np-hero { padding: 62px 0 66px; }
  .np-hero-actions { display: grid; grid-template-columns: 1fr; }
  .np-hero-actions .np-btn { width: 100%; }
  .np-mini-proof { gap: 9px 15px; }
  .np-hero-visual { min-height: 310px; }
  .np-screen { height: 248px; padding: 13px; border-radius: 20px; transform: none; }
  .np-screen-body { height: 207px; padding: 22px; }
  .np-chart { height: 105px; gap: 10px; }
  .np-screen-cards { margin-top: 18px; gap: 8px; }
  .np-screen-cards span { height: 38px; }
  .np-float-card { padding: 10px 12px; font-size: 10px; }
  .np-float-one { left: -4px; top: 42px; }
  .np-float-two { right: -3px; bottom: 28px; }
}

/* Section: business-types */
.np-types { padding: var(--np-section-space) 0; background: #fff; }
.np-types .np-lead { max-width: 760px; }
.np-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}
.np-type-grid a {
  min-width: 0;
  min-height: 188px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  color: var(--np-dark);
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 39, 78, .035);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.np-type-grid a:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--np-primary) 28%, #dfe6ef);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--np-primary) 10%, transparent);
}
.np-type-grid b { color: var(--np-primary); font-size: 10px; letter-spacing: .08em; }
.np-type-grid strong { margin-top: auto; color: #172033; font-size: 17px; line-height: 1.35; }
.np-type-grid span { color: var(--np-muted); font-size: 12px; line-height: 1.6; }
@media (max-width: 1080px) { .np-type-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .np-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) {
  .np-type-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .np-type-grid a { min-height: 148px; }
}

/* Section: featured-products */
.np-products { padding: var(--np-section-space) 0; background: var(--np-surface-soft); }
.np-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
}
.np-product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.np-product-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--np-primary) 24%, #dfe6ef);
  box-shadow: var(--np-shadow-lg);
}
.np-product-media {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 9.25;
  min-height: 205px;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(145deg, #14233c, #274a82);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.np-product-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,33,.04), rgba(8,17,33,.42));
}
.np-product-media span { font-size: 46px; font-weight: 900; letter-spacing: -.05em; }
.np-product-media small { font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; opacity: .88; }
.np-product-body { flex: 1; padding: 24px; display: flex; flex-direction: column; }
.np-product-meta { min-height: 26px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.np-product-meta span { color: var(--np-primary); font-size: 10px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.np-product-meta b { padding: 5px 8px; border-radius: 999px; color: #0d7655; background: #e8f8f2; font-size: 9px; }
.np-product-body h3 { margin: 14px 0 0; color: #172033; font-size: 21px; line-height: 1.3; }
.np-product-body > p { flex: 1; margin: 10px 0 23px; color: var(--np-muted); font-size: 13px; line-height: 1.72; }
.np-product-foot { padding-top: 18px; display: flex; align-items: end; justify-content: space-between; gap: 18px; border-top: 1px solid #e7ecf3; }
.np-product-foot small, .np-product-foot strong { display: block; }
.np-product-foot small { color: #8a96a8; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.np-product-foot strong { margin-top: 4px; color: #24324a; font-size: 14px; }
.np-product-foot a { color: var(--np-primary); text-decoration: none; font-size: 12px; font-weight: 800; white-space: nowrap; }
@media (max-width: 920px) { .np-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .np-product-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .np-product-media { min-height: 190px; }
}

/* Section: advantages */
.np-home-advantages { padding: var(--np-section-space) 0; background: #fff; }
.np-home-advantages__head { max-width: 840px; }
.np-home-advantages__head .np-lead { max-width: 720px; }
.np-home-advantages__grid {
  display: grid;
  grid-template-columns: repeat(var(--adv-cols, 4), minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.np-home-advantages__grid article {
  min-width: 0;
  min-height: 235px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f1;
  border-top: 4px solid var(--card-accent, var(--np-primary));
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 45, 80, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.np-home-advantages__grid article:hover { transform: translateY(-4px); box-shadow: 0 19px 42px rgba(20,39,78,.10); }
.np-home-advantages__grid b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--card-accent, var(--np-primary));
  background: color-mix(in srgb, var(--card-accent, var(--np-primary)) 10%, #fff);
  font-size: 12px;
  font-weight: 900;
}
.np-home-advantages__grid h3 { margin: auto 0 0; color: #172033; font-size: 17px; line-height: 1.35; }
.np-home-advantages__grid p { margin: 10px 0 0; color: var(--np-muted); font-size: 12px; line-height: 1.7; }
.np-home-advantages__action { margin-top: 32px; }
.np-home-advantages__action a { color: var(--np-primary); text-decoration: none; font-size: 13px; font-weight: 820; }
@media (max-width: 1080px) { .np-home-advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 560px) {
  .np-home-advantages__grid { grid-template-columns: 1fr !important; margin-top: 34px; }
  .np-home-advantages__grid article { min-height: 195px; }
}

/* Section: process */
.np-process { padding: var(--np-section-space) 0; background: var(--np-surface-soft); }
.np-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.np-steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 27px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--np-primary) 22%, #dfe6ef), transparent);
}
.np-steps article { position: relative; padding: 0 13px; text-align: center; }
.np-steps span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 7px solid var(--np-surface-soft);
  border-radius: 50%;
  color: #fff;
  background: var(--np-primary);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--np-primary) 22%, transparent);
  font-size: 12px;
  font-weight: 900;
}
.np-steps h3 { margin: 20px 0 0; color: #172033; font-size: 16px; line-height: 1.4; }
.np-steps p { margin: 9px 0 0; color: var(--np-muted); font-size: 12px; line-height: 1.7; }
@media (max-width: 900px) {
  .np-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 18px; }
  .np-steps::before { display: none; }
}
@media (max-width: 520px) {
  .np-steps { grid-template-columns: 1fr; margin-top: 36px; }
  .np-steps article { padding: 0; }
}

/* Section: testimonials */
.np-testimonials { padding: var(--np-section-space) 0; background: #fff; }
.np-test-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.np-test { min-width: 0; min-height: 245px; padding: 26px; display: flex; flex-direction: column; }
.np-stars { color: #eaa31f; font-size: 13px; letter-spacing: .08em; }
.np-test > p { flex: 1; margin: 20px 0 24px; color: #4f5e76; font-size: 14px; line-height: 1.82; }
.np-test strong, .np-test small { display: block; }
.np-test strong { color: #24324a; font-size: 13px; }
.np-test small { margin-top: 5px; color: #7b8799; font-size: 11px; }
.np-testimonials .np-note { margin: 16px 0 0; }
@media (max-width: 900px) { .np-test-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .np-test-grid { grid-template-columns: 1fr; margin-top: 34px; } }