:root {
  --nx39-blue: #0b84ff;
  --nx39-blue-strong: #0872df;
  --nx39-blue-soft: #67b5ff;
  --nx39-green: #4ede92;
  --nx39-flow: #51e59a;
  --nx39-vitrine: #b57bff;
  --nx39-pulse: #75ff42;
  --nx39-bg: #050b14;
  --nx39-bg-deep: #02070d;
  --nx39-surface: #08111d;
  --nx39-surface-2: #0c1724;
  --nx39-surface-3: #101e2e;
  --nx39-line: #20354a;
  --nx39-line-strong: #31506e;
  --nx39-text: #f4f8fc;
  --nx39-muted: #a4b3c1;
  --nx39-muted-2: #7f91a3;
  --nx39-white: #ffffff;
  --nx39-shell: 1240px;
  --nx39-header: 78px;
  --nx39-font: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.nx39-body {
  margin: 0;
  color: var(--nx39-text);
  background: var(--nx39-bg);
  font-family: var(--nx39-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.nx39-body.is-menu-open { overflow: hidden; }
.nx39 { width: 100%; overflow: clip; background: var(--nx39-bg); }
.nx39-shell { width: min(calc(100% - 40px), var(--nx39-shell)); margin-inline: auto; }

.nx39-skip {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #00111f;
  background: #fff;
  border: 2px solid var(--nx39-blue);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
}
.nx39-skip:focus { transform: translateY(0); }
.nx39-body :focus-visible { outline: 3px solid var(--nx39-blue-soft); outline-offset: 3px; }

.nx39-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--nx39-blue-soft);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.2;
}
.nx39-kicker::before { content: ""; width: 24px; height: 2px; background: var(--nx39-blue); }

.nx39-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 820;
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.nx39-button svg { width: 17px; height: 17px; }
.nx39-button:hover { transform: translateY(-1px); }
.nx39-button--primary { color: #fff; background: var(--nx39-blue); border-color: var(--nx39-blue); }
.nx39-button--primary:hover { background: var(--nx39-blue-strong); border-color: var(--nx39-blue-strong); }
.nx39-button--quiet { color: #fff; background: var(--nx39-surface-2); border-color: var(--nx39-line-strong); }
.nx39-button--quiet:hover { background: var(--nx39-surface-3); border-color: #5d85aa; }
.nx39-button--outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.44); }
.nx39-button--outline:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.72); }

.nx39-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--nx39-header);
  background: #03080f;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nx39-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 235px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  height: calc(var(--nx39-header) - 3px);
}
.nx39-brand { display: flex; align-items: center; width: min(218px, 100%); }
.nx39-brand img { width: 100%; height: auto; max-height: 40px; object-fit: contain; object-position: left center; }
.nx39-nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 1.8vw, 29px); }
.nx39-nav a {
  position: relative;
  padding: 12px 0;
  color: #c8d5e1;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}
.nx39-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--nx39-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nx39-nav a:hover, .nx39-nav a[aria-current="true"] { color: #fff; }
.nx39-nav a:hover::after, .nx39-nav a[aria-current="true"]::after { transform: scaleX(1); }
.nx39-nav__mobile-link, .nx39-nav__mobile-cta { display: none; }
.nx39-header__actions { display: flex; align-items: center; gap: 14px; }
.nx39-login { padding: 10px 4px; color: #dbe8f4; font-size: .83rem; font-weight: 760; }
.nx39-login:hover { color: #fff; }
.nx39-header__cta { min-height: 40px; padding-inline: 15px; font-size: .78rem; }
.nx39-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 44px;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  cursor: pointer;
}
.nx39-menu__label { font-size: .75rem; font-weight: 800; }
.nx39-menu__icon { display: grid; gap: 4px; width: 18px; }
.nx39-menu__icon i { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nx39-menu[aria-expanded="true"] .nx39-menu__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nx39-menu[aria-expanded="true"] .nx39-menu__icon i:nth-child(2) { opacity: 0; }
.nx39-menu[aria-expanded="true"] .nx39-menu__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nx39-spectrum { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; height: 3px; }
.nx39-spectrum span { display: block; }
.nx39-spectrum .is-nexo { background: var(--nx39-blue); }
.nx39-spectrum .is-flow { background: var(--nx39-flow); }
.nx39-spectrum .is-vitrine { background: var(--nx39-vitrine); }
.nx39-spectrum .is-pulse { background: var(--nx39-pulse); }

.nx39-hero { position: relative; padding: clamp(42px, 5vw, 76px) 0 34px; background: #050b14; border-bottom: 1px solid var(--nx39-line); }
.nx39-hero::before { content: ""; position: absolute; top: 13%; left: 0; width: 6px; height: 50%; background: var(--nx39-blue); }
.nx39-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(36px, 5vw, 76px); }
.nx39-hero__copy h1 { max-width: 650px; margin: 18px 0 0; font-size: clamp(3rem, 5.6vw, 5.25rem); line-height: .98; letter-spacing: -.06em; }
.nx39-hero__copy h1 strong { display: block; color: var(--nx39-blue-soft); font-weight: inherit; }
.nx39-hero__lead { max-width: 610px; margin: 24px 0 0; color: #c8d5e1; font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.68; }
.nx39-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.nx39-proof-list { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; margin: 28px 0 0; padding: 0; color: #aab9c7; font-size: .79rem; }
.nx39-proof-list li { display: flex; align-items: center; gap: 7px; }
.nx39-proof-list svg { width: 16px; height: 16px; color: var(--nx39-blue-soft); }
.nx39-hero__visual { margin: 0; overflow: hidden; border: 1px solid var(--nx39-line-strong); background: #07111c; }
.nx39-hero__visual img { width: 100%; height: auto; }
.nx39-hero__visual figcaption { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 54px; padding: 12px 16px; color: #adbdcb; background: #07111c; border-top: 1px solid var(--nx39-line); font-size: .79rem; }
.nx39-hero__visual figcaption span { color: #fff; font-weight: 850; letter-spacing: .06em; }

.nx39-capability-strip { padding: 0 0 34px; background: #050b14; }
.nx39-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--nx39-line); border-top: 0; }
.nx39-capability-grid article { display: flex; gap: 14px; min-height: 142px; padding: 24px 22px; background: var(--nx39-surface); border-right: 1px solid var(--nx39-line); }
.nx39-capability-grid article:nth-child(even) { background: var(--nx39-surface-2); }
.nx39-capability-grid article:last-child { border-right: 0; }
.nx39-capability-grid article > span { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; color: var(--nx39-blue-soft); border: 1px solid #28537b; background: #0a2745; }
.nx39-capability-grid svg { width: 21px; height: 21px; }
.nx39-capability-grid h2 { margin: 0; font-size: .92rem; line-height: 1.2; }
.nx39-capability-grid p { margin: 7px 0 0; color: var(--nx39-muted); font-size: .76rem; line-height: 1.55; }

.nx39-section { padding: clamp(64px, 7vw, 104px) 0; }
.nx39-section-head { max-width: 810px; margin-bottom: 38px; }
.nx39-section-head--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); align-items: end; gap: 44px; max-width: none; }
.nx39-section-head h2, .nx39-trust__intro h2, .nx39-faq__intro h2 { margin: 14px 0 0; font-size: clamp(2.15rem, 4.5vw, 4rem); line-height: 1.02; letter-spacing: -.052em; }
.nx39-section-head p, .nx39-trust__intro p, .nx39-faq__intro p { margin: 16px 0 0; color: var(--nx39-muted); font-size: .96rem; line-height: 1.7; }
.nx39-section-head--split > p { margin: 0; }

.nx39-operation { background: #07101b; border-top: 1px solid var(--nx39-line); border-bottom: 1px solid var(--nx39-line); }
.nx39-operation__grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--nx39-line); }
.nx39-operation__grid article { position: relative; min-height: 230px; padding: 27px 25px; background: var(--nx39-surface); border-right: 1px solid var(--nx39-line); border-bottom: 1px solid var(--nx39-line); }
.nx39-operation__grid article:nth-child(3n) { border-right: 0; }
.nx39-operation__grid article:nth-last-child(-n+3) { border-bottom: 0; }
.nx39-operation__grid article:nth-child(even) { background: var(--nx39-surface-2); }
.nx39-operation__number { position: absolute; top: 17px; right: 19px; color: rgba(103,181,255,.2); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.nx39-operation__icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--nx39-blue-soft); border: 1px solid #28537b; background: #0a2745; }
.nx39-operation__icon svg { width: 22px; height: 22px; }
.nx39-operation__grid h3 { margin: 42px 0 0; font-size: 1.08rem; }
.nx39-operation__grid p { margin: 10px 0 0; color: var(--nx39-muted); font-size: .84rem; line-height: 1.65; }

.nx39-system { background: #050b14; }
.nx39-system__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); gap: 18px; }
.nx39-system figure { margin: 0; border: 1px solid var(--nx39-line-strong); background: #070d14; }
.nx39-system figure img { width: 100%; height: auto; background: #0b1118; }
.nx39-system figcaption { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border-top: 1px solid var(--nx39-line); color: var(--nx39-muted); font-size: .78rem; }
.nx39-system figcaption strong { color: #fff; font-size: .86rem; }
.nx39-system__side { display: grid; grid-template-rows: auto 1fr; gap: 18px; }
.nx39-system__statement { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 250px; padding: clamp(24px, 3vw, 40px); background: var(--nx39-blue); color: #fff; }
.nx39-system__statement > span { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.42); }
.nx39-system__statement svg { width: 23px; height: 23px; }
.nx39-system__statement h3 { margin: 25px 0 0; font-size: clamp(1.5rem, 2.5vw, 2.15rem); line-height: 1.08; letter-spacing: -.035em; }
.nx39-system__statement p { margin: 14px 0 0; color: rgba(255,255,255,.86); font-size: .87rem; }
.nx39-system__statement a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: .82rem; font-weight: 850; }
.nx39-system__statement a svg { width: 16px; height: 16px; }

.nx39-segments { background: #07101b; border-top: 1px solid var(--nx39-line); border-bottom: 1px solid var(--nx39-line); }
.nx39-segment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nx39-segment-card { overflow: hidden; border: 1px solid var(--nx39-line); background: var(--nx39-surface); }
.nx39-segment-card figure { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: #07101b; }
.nx39-segment-card img { width: 100%; height: 100%; object-fit: cover; }
.nx39-segment-card.is-center img { object-position: center center; }
.nx39-segment-card.is-upper img { object-position: center 34%; }
.nx39-segment-card figure > span { position: absolute; left: 14px; bottom: 14px; display: grid; place-items: center; width: 40px; height: 40px; color: #fff; background: var(--nx39-blue); border: 1px solid rgba(255,255,255,.38); }
.nx39-segment-card figure > span svg { width: 21px; height: 21px; }
.nx39-segment-card > div { min-height: 145px; padding: 22px 20px 24px; }
.nx39-segment-card h3 { margin: 0; font-size: 1rem; }
.nx39-segment-card p { margin: 9px 0 0; color: var(--nx39-muted); font-size: .81rem; line-height: 1.6; }

.nx39-process { background: #050b14; }
.nx39-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; border: 1px solid var(--nx39-line); }
.nx39-process__steps li { min-height: 240px; padding: 27px 24px; background: var(--nx39-surface); border-right: 1px solid var(--nx39-line); }
.nx39-process__steps li:nth-child(even) { background: var(--nx39-surface-2); }
.nx39-process__steps li:last-child { border-right: 0; }
.nx39-process__steps > li > span { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; color: #fff; background: var(--nx39-blue); font-size: .78rem; font-weight: 900; }
.nx39-process__steps h3 { margin: 43px 0 0; font-size: 1rem; }
.nx39-process__steps p { margin: 10px 0 0; color: var(--nx39-muted); font-size: .82rem; line-height: 1.62; }

.nx39-pricing { background: #07101b; border-top: 1px solid var(--nx39-line); border-bottom: 1px solid var(--nx39-line); }
.nx39-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.nx39-price-card { position: relative; display: flex; flex-direction: column; min-height: 510px; padding: 30px 27px 27px; background: var(--nx39-surface); border: 1px solid var(--nx39-line-strong); }
.nx39-price-card.is-featured { border-top: 4px solid var(--nx39-green); padding-top: 27px; background: var(--nx39-surface-2); }
.nx39-price-card__badge { position: absolute; top: 14px; right: 15px; padding: 5px 8px; color: #062115; background: var(--nx39-green); font-size: .61rem; font-weight: 900; letter-spacing: .06em; }
.nx39-price-card__head h3 { margin: 0; font-size: 1.25rem; }
.nx39-price-card__head p { min-height: 54px; margin: 8px 0 0; color: var(--nx39-muted); font-size: .82rem; }
.nx39-price { display: flex; align-items: flex-start; margin-top: 25px; }
.nx39-price small { margin: 8px 5px 0 0; font-size: .8rem; font-weight: 800; }
.nx39-price strong { font-size: clamp(2.2rem, 4vw, 3.25rem); line-height: 1; letter-spacing: -.055em; }
.nx39-price span { align-self: flex-end; margin: 0 0 5px 6px; color: var(--nx39-muted); font-size: .76rem; }
.nx39-price-card ul { flex: 1; list-style: none; margin: 28px 0; padding: 0; }
.nx39-price-card li { display: flex; align-items: flex-start; gap: 9px; margin: 11px 0; color: #c2cfdb; font-size: .82rem; }
.nx39-price-card li svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; color: var(--nx39-green); }
.nx39-price-card .nx39-button { width: 100%; }
.nx39-custom-plan { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .8fr) auto; align-items: center; gap: 34px; margin-top: 18px; padding: 26px 28px; color: #fff; background: var(--nx39-blue); }
.nx39-custom-plan .nx39-kicker { color: #fff; }
.nx39-custom-plan .nx39-kicker::before { background: #fff; }
.nx39-custom-plan h3 { margin: 9px 0 0; font-size: 1.25rem; }
.nx39-custom-plan p { margin: 0; color: rgba(255,255,255,.86); font-size: .87rem; }
.nx39-custom-plan .nx39-button { white-space: nowrap; }

.nx39-trust { background: #050b14; }
.nx39-trust__grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 60px; }
.nx39-trust__items { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--nx39-line); }
.nx39-trust__items article { min-height: 205px; padding: 25px 23px; background: var(--nx39-surface); border-right: 1px solid var(--nx39-line); border-bottom: 1px solid var(--nx39-line); }
.nx39-trust__items article:nth-child(2n) { border-right: 0; background: var(--nx39-surface-2); }
.nx39-trust__items article:nth-last-child(-n+2) { border-bottom: 0; }
.nx39-trust__items span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--nx39-blue-soft); border: 1px solid #28537b; background: #0a2745; }
.nx39-trust__items svg { width: 21px; height: 21px; }
.nx39-trust__items h3 { margin: 30px 0 0; font-size: .98rem; }
.nx39-trust__items p { margin: 9px 0 0; color: var(--nx39-muted); font-size: .8rem; }

.nx39-faq { background: #07101b; border-top: 1px solid var(--nx39-line); }
.nx39-faq__grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 60px; }
.nx39-faq__intro a { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--nx39-blue-soft); font-size: .84rem; font-weight: 800; }
.nx39-faq__intro a svg { width: 16px; height: 16px; }
.nx39-faq__list { border-top: 1px solid var(--nx39-line); }
.nx39-faq__list details { border-bottom: 1px solid var(--nx39-line); }
.nx39-faq__list summary { position: relative; list-style: none; padding: 22px 48px 22px 0; color: #eef5fb; cursor: pointer; font-size: .94rem; font-weight: 760; }
.nx39-faq__list summary::-webkit-details-marker { display: none; }
.nx39-faq__list summary::after { content: "+"; position: absolute; top: 17px; right: 0; display: grid; place-items: center; width: 30px; height: 30px; color: var(--nx39-blue-soft); border: 1px solid var(--nx39-line-strong); font-size: 1.1rem; }
.nx39-faq__list details[open] summary::after { content: "−"; }
.nx39-faq__list p { max-width: 760px; margin: -4px 45px 23px 0; color: var(--nx39-muted); font-size: .86rem; line-height: 1.7; }

.nx39-final { padding: 54px 0; color: #fff; background: #02070d; border-top: 1px solid var(--nx39-line); }
.nx39-final__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; }
.nx39-final h2 { max-width: 760px; margin: 12px 0 0; font-size: clamp(2rem, 4.2vw, 3.65rem); line-height: 1.02; letter-spacing: -.05em; }
.nx39-final__actions { display: flex; gap: 12px; }

.nx39-footer { background: #02060b; color: #fff; }
.nx39-spectrum--footer { height: 3px; }
.nx39-footer__grid { display: grid; grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(120px, .7fr)); gap: 42px; padding-top: 56px; padding-bottom: 42px; }
.nx39-footer__brand img { width: 210px; height: auto; }
.nx39-footer__brand p { max-width: 350px; margin: 18px 0 0; color: #91a2b2; font-size: .81rem; }
.nx39-footer__access { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--nx39-blue-soft); font-size: .82rem; font-weight: 800; }
.nx39-footer__access svg { width: 16px; height: 16px; }
.nx39-footer nav { display: flex; flex-direction: column; align-items: flex-start; }
.nx39-footer nav strong { margin-bottom: 13px; color: #fff; font-size: .78rem; }
.nx39-footer nav a { margin: 5px 0; color: #8fa0b0; font-size: .76rem; }
.nx39-footer nav a:hover { color: #fff; }
.nx39-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 22px; color: #657788; border-top: 1px solid #152433; font-size: .69rem; }

[data-nx39-reveal] { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }
[data-nx39-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nx39-header__inner { grid-template-columns: minmax(180px, 220px) 1fr auto; }
  .nx39-header__actions { display: none; }
  .nx39-menu { display: inline-flex; }
  .nx39-nav {
    position: fixed;
    z-index: 999;
    top: var(--nx39-header);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: #03080f;
    border-top: 1px solid var(--nx39-line);
  }
  .nx39-nav.is-open { display: flex; }
  .nx39-nav a { padding: 15px 6px; border-bottom: 1px solid #152433; font-size: .92rem; }
  .nx39-nav a::after { display: none; }
  .nx39-nav__mobile-link, .nx39-nav__mobile-cta { display: flex !important; }
  .nx39-nav__mobile-cta { justify-content: center; margin-top: 16px; color: #fff !important; background: var(--nx39-blue); border-bottom: 0 !important; }
  .nx39-hero__grid { grid-template-columns: 1fr; }
  .nx39-hero__copy { max-width: 780px; }
  .nx39-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .nx39-capability-grid article:nth-child(2) { border-right: 0; }
  .nx39-capability-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--nx39-line); }
  .nx39-operation__grid { grid-template-columns: repeat(2, 1fr); }
  .nx39-operation__grid article:nth-child(3n) { border-right: 1px solid var(--nx39-line); }
  .nx39-operation__grid article:nth-child(2n) { border-right: 0; }
  .nx39-operation__grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--nx39-line); }
  .nx39-operation__grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .nx39-system__grid { grid-template-columns: 1fr; }
  .nx39-system__side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .nx39-system__statement { min-height: auto; }
  .nx39-segment-grid { grid-template-columns: repeat(2, 1fr); }
  .nx39-process__steps { grid-template-columns: repeat(2, 1fr); }
  .nx39-process__steps li:nth-child(2) { border-right: 0; }
  .nx39-process__steps li:nth-child(-n+2) { border-bottom: 1px solid var(--nx39-line); }
  .nx39-custom-plan { grid-template-columns: 1fr auto; }
  .nx39-custom-plan p { grid-column: 1 / -1; grid-row: 2; }
  .nx39-trust__grid, .nx39-faq__grid { grid-template-columns: 1fr; gap: 38px; }
  .nx39-footer__grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .nx39-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --nx39-header: 70px; }
  .nx39-shell { width: min(calc(100% - 28px), var(--nx39-shell)); }
  .nx39-brand { width: 186px; }
  .nx39-header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .nx39-hero { padding-top: 42px; }
  .nx39-hero::before { width: 4px; }
  .nx39-hero__copy h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .nx39-hero__actions { display: grid; }
  .nx39-hero__actions .nx39-button { width: 100%; }
  .nx39-proof-list { display: grid; }
  .nx39-capability-grid { grid-template-columns: 1fr; }
  .nx39-capability-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--nx39-line); }
  .nx39-capability-grid article:last-child { border-bottom: 0; }
  .nx39-section { padding: 66px 0; }
  .nx39-section-head--split { grid-template-columns: 1fr; gap: 19px; }
  .nx39-section-head--split > p { margin: 0; }
  .nx39-operation__grid { grid-template-columns: 1fr; }
  .nx39-operation__grid article, .nx39-operation__grid article:nth-child(2n), .nx39-operation__grid article:nth-child(3n), .nx39-operation__grid article:nth-last-child(-n+2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--nx39-line); }
  .nx39-operation__grid article:last-child { border-bottom: 0; }
  .nx39-operation__grid h3 { margin-top: 32px; }
  .nx39-system__side { grid-template-columns: 1fr; }
  .nx39-system figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .nx39-segment-grid { grid-template-columns: 1fr; }
  .nx39-segment-card > div { min-height: 0; }
  .nx39-process__steps { grid-template-columns: 1fr; }
  .nx39-process__steps li, .nx39-process__steps li:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--nx39-line); }
  .nx39-process__steps li:last-child { border-bottom: 0; }
  .nx39-process__steps h3 { margin-top: 30px; }
  .nx39-price-grid { grid-template-columns: 1fr; }
  .nx39-price-card { min-height: 0; }
  .nx39-custom-plan { grid-template-columns: 1fr; gap: 18px; }
  .nx39-custom-plan p { grid-column: auto; grid-row: auto; }
  .nx39-custom-plan .nx39-button { width: 100%; white-space: normal; }
  .nx39-trust__items { grid-template-columns: 1fr; }
  .nx39-trust__items article, .nx39-trust__items article:nth-child(2n), .nx39-trust__items article:nth-last-child(-n+2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--nx39-line); }
  .nx39-trust__items article:last-child { border-bottom: 0; }
  .nx39-final__grid { grid-template-columns: 1fr; }
  .nx39-final__actions { display: grid; }
  .nx39-final__actions .nx39-button { width: 100%; }
  .nx39-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .nx39-footer__brand { grid-column: 1 / -1; }
  .nx39-footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .nx39-shell { width: min(calc(100% - 22px), var(--nx39-shell)); }
  .nx39-brand { width: 164px; }
  .nx39-menu { padding-inline: 10px; }
  .nx39-menu__label { display: none; }
  .nx39-hero__visual figcaption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .nx39-section-head h2, .nx39-trust__intro h2, .nx39-faq__intro h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .nx39-price-card { padding: 26px 21px 22px; }
  .nx39-price-card__badge { position: static; align-self: flex-start; margin-bottom: 16px; }
  .nx39-footer__grid { grid-template-columns: 1fr; }
  .nx39-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-nx39-reveal] { opacity: 1; transform: none; }
}

@media print {
  .nx39-header, .nx39-footer, .nx39-final, .nx39-hero__actions, .nx39-custom-plan { display: none !important; }
  .nx39-body, .nx39, .nx39-section, .nx39-hero { color: #111; background: #fff; }
  .nx39-section, .nx39-hero { padding: 24px 0; }
  [data-nx39-reveal] { opacity: 1; transform: none; }
}

/* NEXO PLAN FEATURE CALLOUT V32 */
.nx39-plan-feature-callout{margin:24px 0 14px;padding:16px 18px;border:1px solid #b9d1ff;border-left:4px solid #1769e0;border-radius:12px;background:#f3f7ff;display:flex;align-items:center;justify-content:space-between;gap:18px}.nx39-plan-feature-callout strong{color:#0d4cad;font-size:14px}.nx39-plan-feature-callout span{color:#53657d;font-size:12px;text-align:right}@media(max-width:720px){.nx39-plan-feature-callout{align-items:flex-start;flex-direction:column}.nx39-plan-feature-callout span{text-align:left}}
