/* =========================================================
   Nexum Industrial — Cassiopeia custom CSS
   File: /media/templates/site/cassiopeia/css/user.css

   Purpose:
   - remove default Cassiopeia chrome for the homepage hero;
   - style the Nexum Industrial hero section;
   - keep CSS clean, without duplicated override blocks.
========================================================= */

/* -------------------------
   Design tokens
------------------------- */

:root {
  --nx-dark: #050b12;
  --nx-dark-2: #071525;
  --nx-panel: rgba(5, 11, 18, 0.72);
  --nx-blue: #1684d8;
  --nx-blue-bright: #1e9bff;
  --nx-white: #ffffff;
  --nx-muted: #b8c4d4;
  --nx-border: rgba(255, 255, 255, 0.12);
  --nx-border-strong: rgba(255, 255, 255, 0.18);
  --nx-shadow-blue: rgba(22, 132, 216, 0.28);
  --nx-max: 1280px;
}

/* -------------------------
   Cassiopeia cleanup
------------------------- */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--nx-dark);
}

body.site {
  background: var(--nx-dark);
}

/* Hide the default Cassiopeia header/breadcrumbs.
   Nexum Hero has its own header/navigation. */
.container-header,
.container-breadcrumbs,
.breadcrumb {
  display: none !important;
}

/* Make the banner position full-width and remove Cassiopeia wrapper spacing. */
.site-grid,
.grid-child,
.container-banner,
.container-banner > .grid-child,
.container-banner .moduletable,
.container-banner .mod-custom,
.container-banner .card,
.container-banner .card-body {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-grid {
  display: block !important;
  background: var(--nx-dark) !important;
}

/* On the current one-page MVP we do not use the default Featured Articles area.
   Remove this rule later if content is added through com_content below the hero. */
body.view-featured .container-component {
  display: none !important;
}

/* -------------------------
   Hero base
------------------------- */

.nx-hero {
  position: relative;
  width: 100%;
  min-height: 690px;
  padding-bottom: 42px;
  overflow: hidden;
  color: var(--nx-white);
  background: var(--nx-dark);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.nx-hero-bg,
.nx-hero-overlay {
  position: absolute;
  inset: 0;
}

.nx-hero-bg {
  z-index: 1;
  background-image: url('/images/nexum/hero-industrial.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.52;
  filter: saturate(0.72) contrast(1.08) brightness(0.88);
  transform: scale(1.01);
}

.nx-hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 76% 20%, rgba(30, 155, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(5, 11, 18, 0.99) 0%, rgba(5, 11, 18, 0.94) 38%, rgba(5, 11, 18, 0.62) 68%, rgba(5, 11, 18, 0.30) 100%),
    linear-gradient(180deg, rgba(5, 11, 18, 0.18) 0%, rgba(5, 11, 18, 0.96) 100%);
}

/* -------------------------
   Hero header / navigation
------------------------- */

.nx-header {
  position: relative;
  z-index: 5;
  max-width: var(--nx-max);
  margin: 0 auto;
  padding: 30px 40px 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nx-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.nx-logo img {
  display: block;
  width: 195px;
  max-width: 100%;
  height: auto;
  filter:
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.48))
    brightness(1.08)
    contrast(1.08);
}

.nx-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nx-nav a,
.nx-lang {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nx-nav a {
  font-size: 11.5px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.nx-nav a:hover,
.nx-lang:hover {
  color: var(--nx-blue-bright);
}

.nx-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-lang {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.nx-header-btn,
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--nx-white);
  border-radius: 5px;
  font-weight: 850;
  letter-spacing: 0.055em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.nx-header-btn {
  min-height: 42px;
  padding: 0 20px;
  font-size: 11.5px;
  background: linear-gradient(135deg, #0d63b8, var(--nx-blue));
  box-shadow: 0 14px 32px var(--nx-shadow-blue);
}

.nx-header-btn:hover,
.nx-btn-primary:hover {
  color: var(--nx-white);
  background: linear-gradient(135deg, var(--nx-blue), var(--nx-blue-bright));
  box-shadow: 0 18px 42px rgba(30, 155, 255, 0.30);
}

/* -------------------------
   Hero content
------------------------- */

.nx-hero-inner {
  position: relative;
  z-index: 4;
  max-width: var(--nx-max);
  margin: 0 auto;
  padding: 70px 40px 0;
}

.nx-hero-content {
  max-width: 650px;
}

.nx-eyebrow {
  margin-bottom: 24px;
  color: var(--nx-blue-bright);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.nx-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--nx-white);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}

.nx-hero h1 span {
  color: var(--nx-white);
}

.nx-hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.58;
  font-weight: 400;
}

.nx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.nx-btn {
  min-height: 48px;
  padding: 0 24px;
  font-size: 11.5px;
}

.nx-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.nx-btn-primary {
  background: linear-gradient(135deg, #0d63b8, var(--nx-blue));
  box-shadow: 0 16px 38px var(--nx-shadow-blue);
}

.nx-btn-secondary {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nx-btn-secondary:hover {
  color: var(--nx-white);
  border-color: var(--nx-blue-bright);
  background: rgba(255, 255, 255, 0.055);
}

/* -------------------------
   Metrics strip
------------------------- */

.nx-metrics {
  position: relative;
  z-index: 6;
  max-width: var(--nx-max);
  width: calc(100% - 80px);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(5, 11, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.nx-metric {
  min-height: 104px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.nx-metric:last-child {
  border-right: none;
}

.nx-metric-icon {
  display: block;
  margin-bottom: 9px;
  color: var(--nx-blue-bright);
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.nx-metric strong {
  display: block;
  color: var(--nx-white);
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 850;
}

.nx-metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.8px;
  line-height: 1.38;
}

/* -------------------------
   Responsive
------------------------- */

@media (max-width: 1180px) {
  .nx-header,
  .nx-hero-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nx-nav {
    display: none;
  }

  .nx-metrics {
    width: calc(100% - 56px);
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-metric:nth-child(2) {
    border-right: none;
  }

  .nx-metric:nth-child(1),
  .nx-metric:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
}

@media (max-width: 760px) {
  .nx-hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .nx-hero-bg {
    background-position: center;
    opacity: 0.42;
    transform: none;
  }

  .nx-hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 11, 18, 0.94) 0%, rgba(5, 11, 18, 0.985) 100%);
  }

  .nx-header {
    padding: 24px 20px 0;
  }

  .nx-logo {
    padding: 6px 8px;
  }

  .nx-logo img {
    width: 176px;
  }

  .nx-header-actions {
    display: none;
  }

  .nx-hero-inner {
    padding: 68px 20px 0;
  }

  .nx-eyebrow {
    margin-bottom: 20px;
    font-size: 12.5px;
    letter-spacing: 0.07em;
  }

  .nx-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  .nx-hero p {
    font-size: 16px;
  }

  .nx-hero-actions {
    flex-direction: column;
  }

  .nx-btn {
    width: 100%;
  }

  .nx-metrics {
    width: 100%;
    margin-top: 48px;
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .nx-metric {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .nx-metric:last-child {
    border-bottom: none;
  }
}

@media (max-width: 420px) {
  .nx-hero h1 {
    font-size: 32px;
  }

  .nx-logo img {
    width: 160px;
  }
}
/* =========================
   NEXUM FINAL VISUAL TUNING
========================= */

/* Logo: убираем тяжелую темную плашку и делаем чище */
.nx-logo {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nx-logo img {
  width: 230px !important;
  filter:
          brightness(1.22)
          contrast(1.18)
          drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55)) !important;
}

/* Header: чуть больше воздуха */
.nx-header {
  padding-top: 34px !important;
}

/* Hero: немного спокойнее и премиальнее */
.nx-hero-inner {
  padding-top: 78px !important;
}

.nx-eyebrow {
  font-size: 13px !important;
  letter-spacing: 0.095em !important;
  margin-bottom: 26px !important;
}

/* Заголовок делаем менее “плакатным” */
.nx-hero h1 {
  font-size: clamp(40px, 3.65vw, 50px) !important;
  line-height: 1.12 !important;
  font-weight: 760 !important;
  letter-spacing: -0.028em !important;
  max-width: 620px !important;
}

/* Подзаголовок чуть легче */
.nx-hero p {
  font-size: 16px !important;
  line-height: 1.62 !important;
  max-width: 610px !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

/* Кнопки — чуть строже */
.nx-btn,
.nx-header-btn {
  border-radius: 4px !important;
  font-weight: 800 !important;
}

/* Метрики — premium lighter */
.nx-metrics {
  margin-top: 56px !important;
  background: rgba(5, 11, 18, 0.66) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
}

.nx-metric {
  padding: 22px 26px !important;
}

.nx-metric-icon {
  font-size: 22px !important;
}

.nx-metric strong {
  font-size: 14px !important;
  font-weight: 760 !important;
}

.nx-metric span {
  font-size: 12.6px !important;
  color: rgba(255, 255, 255, 0.64) !important;
}

/* =========================
   NEXUM LAYOUT CENTERING & LOGO FIX
========================= */

.nx-header,
.nx-hero-inner,
.nx-metrics {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Важно: возвращаем нормальную внутреннюю сетку */
.nx-header {
  width: calc(100% - 96px) !important;
  padding: 34px 0 0 !important;
}

.nx-hero-inner {
  width: calc(100% - 96px) !important;
  padding: 86px 0 0 !important;
}

.nx-metrics {
  width: calc(100% - 96px) !important;
  margin-top: 64px !important;
}

/* Логотип компактнее и чище */
.nx-logo {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nx-logo img {
  width: 210px !important;
  height: auto !important;
  filter:
          brightness(1.35)
          contrast(1.22)
          drop-shadow(0 10px 26px rgba(0, 0, 0, 0.55)) !important;
}

/* Меню чуть компактнее, чтобы не спорило с логотипом */
.nx-nav {
  gap: 22px !important;
}

.nx-nav a {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.045em !important;
}

/* Заголовок немного спокойнее */
.nx-hero h1 {
  max-width: 630px !important;
  font-size: clamp(38px, 3.55vw, 52px) !important;
  line-height: 1.13 !important;
  font-weight: 780 !important;
  letter-spacing: -0.03em !important;
}

/* Подзаголовок */
.nx-hero p {
  max-width: 610px !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
}

/* Кнопки чуть менее массивные */
.nx-btn {
  min-height: 46px !important;
  padding: 0 24px !important;
}

.nx-header-btn {
  min-height: 42px !important;
  padding: 0 20px !important;
}

/* Метрики легче */
.nx-metric {
  padding: 24px 28px !important;
}

.nx-metric strong {
  font-size: 14px !important;
  font-weight: 780 !important;
}

.nx-metric span {
  font-size: 12.8px !important;
  color: rgba(255, 255, 255, 0.66) !important;
}

/* =========================
   NEXUM ABOUT SECTION
========================= */

.container-top-a,
.container-top-a > .grid-child,
.container-top-a > *,
.container-top-a .moduletable,
.container-top-a .top-a,
.container-top-a .top-a.card,
.container-top-a .card,
.container-top-a .card-body,
.container-top-a .mod-custom {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 0 0 100% !important;
  grid-column: 1 / -1 !important;
}

.container-top-a {
  clear: both !important;
  grid-area: top-a !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.container-top-a > * + * {
  margin-top: 0 !important;
}

.container-top-a .mod-custom > .nx-about,
.container-top-a .mod-custom > .nx-section {
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
}

.nx-about {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
          linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  color: #071525;
  font-family: Inter, Arial, Helvetica, sans-serif;
  padding: 96px 0 86px;
  overflow: hidden;
}

.nx-about::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(22, 132, 216, 0.13), rgba(22, 132, 216, 0));
  pointer-events: none;
}

.nx-about-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: calc(100% - 96px);
  margin: 0 auto;
}

.nx-about-kicker {
  color: #1684d8;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.nx-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.nx-about-main h2 {
  max-width: 720px;
  margin: 0;
  color: #071525;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.nx-about-lead {
  margin-top: 30px !important;
  max-width: 720px;
  color: #112338;
  font-size: 20px !important;
  line-height: 1.55 !important;
  font-weight: 520;
}

.nx-about-main p {
  margin: 22px 0 0;
  max-width: 720px;
  color: #526173;
  font-size: 17px;
  line-height: 1.72;
}

.nx-about-card {
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  box-shadow: 0 24px 80px rgba(7, 21, 37, 0.08);
  padding: 34px 36px;
}

.nx-about-card-label {
  color: #1684d8;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nx-about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx-about-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 21, 37, 0.08);
}

.nx-about-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nx-about-list li:first-child {
  padding-top: 0;
}

.nx-about-list span {
  color: #1684d8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.nx-about-list strong {
  display: block;
  color: #071525;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 820;
}

.nx-about-list em {
  display: block;
  margin-top: 6px;
  color: #657386;
  font-size: 14px;
  line-height: 1.45;
  font-style: normal;
}

.nx-about-proof {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(7, 21, 37, 0.12);
  border-bottom: 1px solid rgba(7, 21, 37, 0.12);
}

.nx-proof-item {
  padding: 28px 30px;
  border-right: 1px solid rgba(7, 21, 37, 0.10);
}

.nx-proof-item:last-child {
  border-right: none;
}

.nx-proof-item strong {
  display: block;
  color: #071525;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 860;
}

.nx-proof-item span {
  display: block;
  margin-top: 9px;
  color: #657386;
  font-size: 14px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1080px) {
  .nx-about {
    padding: 78px 0 72px;
  }

  .nx-about-inner {
    width: calc(100% - 56px);
  }

  .nx-about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .nx-about-card {
    max-width: none;
  }

  .nx-about-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-proof-item:nth-child(2) {
    border-right: none;
  }

  .nx-proof-item:nth-child(1),
  .nx-proof-item:nth-child(2) {
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }
}

@media (max-width: 620px) {
  .nx-about {
    padding: 64px 0 60px;
  }

  .nx-about-inner {
    width: calc(100% - 40px);
  }

  .nx-about-main h2 {
    font-size: 34px;
  }

  .nx-about-lead {
    font-size: 18px !important;
  }

  .nx-about-card {
    padding: 28px 24px;
  }

  .nx-about-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nx-about-proof {
    grid-template-columns: 1fr;
  }

  .nx-proof-item {
    border-right: none;
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }

  .nx-proof-item:last-child {
    border-bottom: none;
  }
}
/* =========================
   NEXUM INNER PAGES
========================= */

body.view-article,
body.view-category {
  background: #f6f8fb !important;
  color: #071525 !important;
}

/* возвращаем компонент на внутренних страницах */
body.view-article .container-component,
body.view-article main,
body.view-article .com-content-article,
body.view-article .item-page {
  display: block !important;
  background: #f6f8fb !important;
  color: #071525 !important;
  margin: 0 !important;
  border: none !important;
}

/* нормальная область материала */
body.view-article .com-content-article,
body.view-article .item-page {
  max-width: 1180px !important;
  width: calc(100% - 96px) !important;
  margin: 0 auto !important;
  padding: 90px 0 110px !important;
}

/* заголовок материала */
body.view-article .page-header h1,
body.view-article h1 {
  color: #071525 !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 1.08 !important;
  font-weight: 820 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 34px !important;
}

/* текст материала */
body.view-article .com-content-article p,
body.view-article .item-page p {
  max-width: 860px !important;
  color: #526173 !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  margin: 0 0 22px !important;
}

/* прячем служебные детали статьи */
body.view-article .article-info,
body.view-article dl.article-info,
body.view-article .icons,
body.view-article .tags,
body.view-article .published,
body.view-article .createdby,
body.view-article .category-name,
body.view-article .hits {
  display: none !important;
}

/* убираем лишние темные наследования */
body.view-article a {
  color: #1684d8 !important;
}

@media (max-width: 768px) {
  body.view-article .com-content-article,
  body.view-article .item-page {
    width: calc(100% - 40px) !important;
    padding: 64px 0 80px !important;
  }
}
/* =========================
   NEXUM INNER PAGE HEADER
========================= */

.nx-page-header-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #050b12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.nx-page-header {
  max-width: 1320px;
  width: calc(100% - 96px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nx-page-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nx-page-logo img {
  width: 230px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.nx-page-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nx-page-nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nx-page-nav a:hover {
  color: #1e9bff;
}

.nx-page-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-page-lang {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.nx-page-btn {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1684d8;
  color: #ffffff !important;
  border-radius: 4px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .nx-page-nav {
    display: none;
  }

  .nx-page-header {
    width: calc(100% - 56px);
  }
}

@media (max-width: 640px) {
  .nx-page-header {
    width: calc(100% - 40px);
    height: 78px;
  }

  .nx-page-logo img {
    width: 190px;
  }

  .nx-page-actions {
    display: none;
  }
}
.nx-page-btn {
  color: #ffffff !important;
  min-width: 170px;
  text-align: center;
  white-space: nowrap;
}
/* =========================
   INNER HEADER LINK COLOR FIX
========================= */

/* Логотип в шапке */
body.view-article .nx-page-logo,
body.view-article .nx-page-logo:link,
body.view-article .nx-page-logo:visited,
body.view-article .nx-page-logo:hover {
  color: transparent !important;
  text-decoration: none !important;
}

/* Меню во внутренней шапке */
body.view-article .nx-page-nav a,
body.view-article .nx-page-nav a:link,
body.view-article .nx-page-nav a:visited {
  color: rgba(255, 255, 255, 0.86) !important;
  text-decoration: none !important;
}

body.view-article .nx-page-nav a:hover {
  color: #1e9bff !important;
}

/* Кнопка во внутренней шапке */
body.view-article .nx-page-btn,
body.view-article .nx-page-btn:link,
body.view-article .nx-page-btn:visited,
body.view-article .nx-page-btn:hover,
body.view-article .nx-page-btn:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-width: 190px !important;
  height: 48px !important;
  padding: 0 24px !important;

  background: #1684d8 !important;
  color: #ffffff !important;

  border-radius: 4px !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
/* =========================
   ABOUT PAGE EXTENDED
========================= */

.nx-about-extra {
  margin-top: 94px;
  padding-top: 72px;
  border-top: 1px solid rgba(7, 21, 37, 0.12);
}

.nx-about-extra-head {
  max-width: 780px;
}

.nx-about-extra-head h2,
.nx-about-positioning h2 {
  margin: 0;
  color: #071525;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.nx-about-steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(7, 21, 37, 0.10);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 21, 37, 0.06);
}

.nx-about-steps > div {
  padding: 32px 28px 34px;
  border-right: 1px solid rgba(7, 21, 37, 0.09);
}

.nx-about-steps > div:last-child {
  border-right: none;
}

.nx-about-steps span {
  display: block;
  color: #1684d8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.nx-about-steps h3 {
  margin: 0 0 14px;
  color: #071525;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 820;
}

.nx-about-steps p {
  margin: 0 !important;
  color: #657386 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.nx-about-positioning {
  margin-top: 90px;
  padding: 54px 60px;
  background: #071525;
  color: #ffffff;
}

.nx-about-positioning h2 {
  color: #ffffff;
}

.nx-about-positioning p {
  max-width: 920px !important;
  margin: 26px 0 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.nx-about-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nx-about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 1080px) {
  .nx-about-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-about-steps > div:nth-child(2) {
    border-right: none;
  }

  .nx-about-steps > div:nth-child(1),
  .nx-about-steps > div:nth-child(2) {
    border-bottom: 1px solid rgba(7, 21, 37, 0.09);
  }

  .nx-about-positioning {
    padding: 44px 40px;
  }
}

@media (max-width: 620px) {
  .nx-about-steps {
    grid-template-columns: 1fr;
  }

  .nx-about-steps > div {
    border-right: none;
    border-bottom: 1px solid rgba(7, 21, 37, 0.09);
  }

  .nx-about-steps > div:last-child {
    border-bottom: none;
  }

  .nx-about-positioning {
    padding: 36px 28px;
  }
}

/* =========================
   NEXUM STRUCTURED HOME SECTIONS
========================= */

.nx-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.nx-section-light {
  background: #ffffff;
  color: #071525;
}

.nx-section-soft {
  background: #f6f8fb;
  color: #071525;
}

.nx-section-dark {
  background:
          linear-gradient(135deg, #050b12 0%, #071525 100%);
  color: #ffffff;
}

.nx-section-inner {
  max-width: 1320px;
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 92px 0;
}

.nx-section-kicker {
  margin-bottom: 18px;
  color: #1684d8;
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nx-section-dark .nx-section-kicker {
  color: #1e9bff;
}

.nx-section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.nx-section-head h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 820;
  letter-spacing: -0.032em;
}

.nx-section-head p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 17px;
  line-height: 1.68;
}

.nx-section-dark .nx-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.nx-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nx-info-card,
.nx-dark-card {
  min-height: 100%;
  border-radius: 0;
}

.nx-info-card {
  padding: 32px 30px;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  box-shadow: 0 20px 60px rgba(7, 21, 37, 0.055);
}

.nx-section-light .nx-info-card {
  background: #f8fafc;
}

.nx-dark-card {
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nx-info-card span,
.nx-dark-card span {
  display: block;
  margin-bottom: 18px;
  color: #1684d8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.nx-dark-card span {
  color: #1e9bff;
}

.nx-info-card h3,
.nx-dark-card h3 {
  margin: 0;
  color: inherit;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 820;
}

.nx-info-card p,
.nx-dark-card p {
  margin: 16px 0 0;
  color: #657386;
  font-size: 15.5px;
  line-height: 1.58;
}

.nx-dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.nx-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 68px;
  align-items: center;
}

.nx-split-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 820;
  letter-spacing: -0.032em;
}

.nx-split-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.68;
}

.nx-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.nx-list li {
  padding: 0 0 0 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.5;
}

.nx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: #1e9bff;
}

.nx-image-panel {
  position: relative;
  min-height: 440px;
  background: #08111d;
  overflow: hidden;
}

.nx-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.78) contrast(1.08);
}

.nx-image-panel-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  background: rgba(5, 11, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.nx-image-panel-caption strong {
  display: block;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 820;
}

.nx-image-panel-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.45;
}

.nx-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(7, 21, 37, 0.12);
  border-bottom: 1px solid rgba(7, 21, 37, 0.12);
}

.nx-process-step {
  padding: 32px 28px;
  border-right: 1px solid rgba(7, 21, 37, 0.10);
}

.nx-process-step:last-child {
  border-right: none;
}

.nx-process-step span {
  display: block;
  color: #1684d8;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.nx-process-step h3 {
  margin: 0;
  color: #071525;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 820;
}

.nx-process-step p {
  margin: 14px 0 0;
  color: #657386;
  font-size: 15px;
  line-height: 1.55;
}

.nx-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 50px 56px;
  background: #071525;
  color: #ffffff;
}

.nx-contact-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.1;
  font-weight: 820;
  letter-spacing: -0.032em;
}

.nx-contact-panel p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16.5px;
  line-height: 1.62;
}

.nx-contact-panel .nx-btn {
  min-width: 210px;
}

@media (max-width: 1080px) {
  .nx-section-inner {
    width: calc(100% - 56px);
    padding: 76px 0;
  }

  .nx-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .nx-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-process-step:nth-child(2) {
    border-right: none;
  }

  .nx-process-step:nth-child(1),
  .nx-process-step:nth-child(2) {
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }
}

@media (max-width: 720px) {
  .nx-section-inner {
    width: calc(100% - 40px);
    padding: 62px 0;
  }

  .nx-card-grid,
  .nx-process,
  .nx-contact-panel {
    grid-template-columns: 1fr;
  }

  .nx-info-card,
  .nx-dark-card {
    padding: 28px 24px;
  }

  .nx-process-step {
    border-right: none;
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }

  .nx-process-step:last-child {
    border-bottom: none;
  }

  .nx-contact-panel {
    padding: 38px 28px;
  }

  .nx-contact-panel .nx-btn {
    width: 100%;
  }
}

/* =========================
   NEXUM PHASE 2 INNER PAGES
========================= */

body.view-article .nx-article-body {
  display: block;
  max-width: none;
  color: #071525;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body.view-article .nx-article-body > * + * {
  margin-top: 58px;
}

body.view-article .nx-article-lead {
  max-width: 920px !important;
  color: #112338 !important;
  font-size: clamp(20px, 2vw, 25px) !important;
  line-height: 1.52 !important;
  font-weight: 520 !important;
  margin-bottom: 0 !important;
}

body.view-article .nx-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.view-article .nx-detail-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.view-article .nx-detail-card {
  min-height: 100%;
  padding: 32px 30px;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  box-shadow: 0 18px 58px rgba(7, 21, 37, 0.055);
}

body.view-article .nx-detail-card-link,
body.view-article .nx-detail-card-link:link,
body.view-article .nx-detail-card-link:visited {
  display: flex;
  flex-direction: column;
  color: #071525 !important;
  text-decoration: none !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.view-article .nx-detail-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 132, 216, 0.34);
  box-shadow: 0 26px 72px rgba(7, 21, 37, 0.11);
}

body.view-article .nx-detail-card-image {
  padding: 0;
  overflow: hidden;
}

body.view-article .nx-detail-card-image .nx-detail-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

body.view-article .nx-detail-card-media {
  min-height: 186px;
  background: #071525;
  overflow: hidden;
}

body.view-article .nx-detail-card-media img {
  display: block;
  width: 100%;
  height: 186px;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.86) contrast(1.08);
  transition: transform 240ms ease, opacity 240ms ease;
}

body.view-article .nx-detail-card-link:hover .nx-detail-card-media img {
  transform: scale(1.035);
  opacity: 0.95;
}

body.view-article .nx-detail-card span,
body.view-article .nx-image-card span,
body.view-article .nx-flow-step span {
  display: block;
  margin-bottom: 18px;
  color: #1684d8;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.view-article .nx-detail-card h2,
body.view-article .nx-detail-card h3,
body.view-article .nx-image-card h3,
body.view-article .nx-wide-band h2,
body.view-article .nx-split-block h2,
body.view-article .nx-contact-box h2 {
  margin: 0;
  color: #071525;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  font-weight: 820;
  letter-spacing: -0.025em;
}

body.view-article .nx-detail-card h3,
body.view-article .nx-image-card h3,
body.view-article .nx-flow-step h3 {
  font-size: 21px;
  line-height: 1.22;
}

body.view-article .nx-detail-card p,
body.view-article .nx-image-card p,
body.view-article .nx-flow-step p,
body.view-article .nx-contact-box p,
body.view-article .nx-split-block p {
  max-width: none !important;
  margin: 16px 0 0 !important;
  color: #657386 !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
}

body.view-article .nx-wide-band {
  padding: 54px 60px;
  background:
    linear-gradient(135deg, rgba(5, 11, 18, 0.98), rgba(7, 21, 37, 0.96));
  color: #ffffff;
}

body.view-article .nx-wide-band h2,
body.view-article .nx-wide-band h3 {
  color: #ffffff;
}

body.view-article .nx-wide-band p {
  max-width: 940px !important;
  margin: 22px 0 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}

body.view-article .nx-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

body.view-article .nx-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 650;
}

body.view-article .nx-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 21, 37, 0.12);
  border-bottom: 1px solid rgba(7, 21, 37, 0.12);
}

body.view-article .nx-flow-step {
  padding: 30px 26px;
  border-right: 1px solid rgba(7, 21, 37, 0.10);
}

body.view-article .nx-flow-step:last-child {
  border-right: none;
}

body.view-article .nx-flow-step h3 {
  margin: 0;
  color: #071525;
  font-weight: 820;
}

body.view-article .nx-flow-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.view-article .nx-flow-6 .nx-flow-step {
  border-bottom: 1px solid rgba(7, 21, 37, 0.10);
}

body.view-article .nx-flow-6 .nx-flow-step:nth-child(3n) {
  border-right: none;
}

body.view-article .nx-flow-6 .nx-flow-step:nth-child(n+4) {
  border-bottom: none;
}

body.view-article .nx-equipment-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.view-article .nx-equipment-catalog .nx-detail-card {
  padding: 0;
}

body.view-article .nx-equipment-catalog .nx-detail-card h3 {
  font-size: 19px;
}

body.view-article .nx-equipment-catalog .nx-detail-card-media,
body.view-article .nx-equipment-catalog .nx-detail-card-media img {
  min-height: 160px;
}

body.view-article .nx-equipment-catalog .nx-detail-card-media img {
  height: 160px;
}

body.view-article .nx-equipment-catalog .nx-detail-card-copy {
  padding: 24px 24px 28px;
}

body.view-article .nx-role-grid .nx-detail-card {
  padding: 38px 38px 40px;
}

body.view-article .nx-equipment-note {
  padding: 42px 46px;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  border-left: 6px solid #1684d8;
  box-shadow: 0 18px 58px rgba(7, 21, 37, 0.055);
}

body.view-article .nx-equipment-note span {
  display: block;
  margin-bottom: 18px;
  color: #1684d8;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.view-article .nx-equipment-note h2 {
  margin: 0;
  color: #071525;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  font-weight: 820;
}

body.view-article .nx-equipment-note p {
  max-width: 1040px !important;
  margin: 18px 0 0 !important;
  color: #657386 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body.view-article .nx-equipment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

body.view-article .nx-contact-box .nx-btn-primary,
body.view-article .nx-contact-box .nx-btn-primary:link,
body.view-article .nx-contact-box .nx-btn-primary:visited {
  min-width: 236px;
  min-height: 52px;
  padding: 0 24px;
  background: linear-gradient(135deg, #0d63b8, #1684d8);
  color: #ffffff !important;
  border: 0;
  text-shadow: none;
}

body.view-article .nx-contact-box .nx-btn-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1684d8, #1e9bff);
}

body.view-article .nx-equipment-text-link,
body.view-article .nx-equipment-text-link:link,
body.view-article .nx-equipment-text-link:visited {
  color: #1684d8;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

body.view-article .nx-equipment-text-link:hover {
  color: #071525;
}

body.view-article .nx-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.view-article .nx-image-card {
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  box-shadow: 0 18px 58px rgba(7, 21, 37, 0.055);
  overflow: hidden;
}

body.view-article .nx-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

body.view-article .nx-image-card-body {
  padding: 28px 30px 32px;
}

body.view-article .nx-split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
}

body.view-article .nx-split-block img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

body.view-article .nx-check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
}

body.view-article .nx-check-list li {
  position: relative;
  padding-left: 24px;
  color: #526173;
  font-size: 15.5px;
  line-height: 1.55;
}

body.view-article .nx-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #1684d8;
}

body.view-article .nx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 24px;
}

body.view-article .nx-contact-box {
  padding: 34px 34px 38px;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  box-shadow: 0 18px 58px rgba(7, 21, 37, 0.055);
}

body.view-article .nx-contact-box strong {
  color: #071525;
}

body.view-article .nx-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.view-article .nx-service-card,
body.view-article .nx-service-card:link,
body.view-article .nx-service-card:visited {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(7, 21, 37, 0.10);
  color: #071525 !important;
  text-decoration: none !important;
  box-shadow: 0 18px 58px rgba(7, 21, 37, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

body.view-article .nx-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 132, 216, 0.34);
  box-shadow: 0 26px 72px rgba(7, 21, 37, 0.11);
}

body.view-article .nx-service-card-wide,
body.view-article .nx-service-card-wide:link,
body.view-article .nx-service-card-wide:visited {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  min-height: 344px;
  background: #071525;
  border-color: rgba(22, 132, 216, 0.22);
  color: #ffffff !important;
}

body.view-article .nx-service-card-wide .nx-service-media {
  min-height: 344px;
}

body.view-article .nx-service-card-wide .nx-service-media img {
  height: 100%;
  min-height: 344px;
  opacity: 0.78;
}

body.view-article .nx-service-card-wide .nx-service-body {
  justify-content: center;
  padding: 44px 46px;
  background:
    linear-gradient(135deg, rgba(22, 132, 216, 0.18), rgba(22, 132, 216, 0) 42%),
    #071525;
}

body.view-article .nx-service-card-wide .nx-service-body h3 {
  max-width: 720px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

body.view-article .nx-service-card-wide .nx-service-body p {
  max-width: 760px !important;
  color: rgba(235, 245, 255, 0.78) !important;
  font-size: 17px !important;
}

body.view-article .nx-service-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

body.view-article .nx-service-mini-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.view-article .nx-service-card-wide .nx-service-link {
  color: #35a7f4;
}

body.view-article .nx-service-media {
  position: relative;
  display: block;
  min-height: 176px;
  background: #071525;
  overflow: hidden;
}

body.view-article .nx-service-media img {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 240ms ease, opacity 240ms ease;
}

body.view-article .nx-service-card:hover .nx-service-media img {
  transform: scale(1.035);
  opacity: 0.94;
}

body.view-article .nx-service-badge {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  background: rgba(5, 11, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body.view-article .nx-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

body.view-article .nx-service-body h3 {
  margin: 0;
  color: #071525;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: -0.025em;
}

body.view-article .nx-service-body p {
  max-width: none !important;
  margin: 16px 0 0 !important;
  color: #657386 !important;
  font-size: 15.5px !important;
  line-height: 1.58 !important;
}

body.view-article .nx-service-link {
  margin-top: auto;
  padding-top: 24px;
  color: #1684d8;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.view-article .nx-service-page .nx-split-block {
  align-items: stretch;
}

@media (max-width: 1080px) {
  body.view-article .nx-detail-grid,
  body.view-article .nx-detail-grid-2,
  body.view-article .nx-flow,
  body.view-article .nx-image-grid,
  body.view-article .nx-split-block,
  body.view-article .nx-contact-grid,
  body.view-article .nx-service-grid {
    grid-template-columns: 1fr;
  }

  body.view-article .nx-service-card-wide,
  body.view-article .nx-service-card-wide:link,
  body.view-article .nx-service-card-wide:visited {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  body.view-article .nx-service-card-wide .nx-service-media,
  body.view-article .nx-service-card-wide .nx-service-media img {
    min-height: 260px;
  }

  body.view-article .nx-flow-step {
    border-right: none;
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }

  body.view-article .nx-flow-6 .nx-flow-step {
    border-right: none;
    border-bottom: 1px solid rgba(7, 21, 37, 0.10);
  }

  body.view-article .nx-flow-6 .nx-flow-step:last-child {
    border-bottom: none;
  }

  body.view-article .nx-flow-step:last-child {
    border-bottom: none;
  }
}

@media (max-width: 680px) {
  body.view-article .nx-article-body > * + * {
    margin-top: 42px;
  }

  body.view-article .nx-detail-card,
  body.view-article .nx-contact-box {
    padding: 28px 24px;
  }

  body.view-article .nx-wide-band,
  body.view-article .nx-split-block {
    padding: 34px 26px;
  }

  body.view-article .nx-split-block img {
    min-height: 260px;
  }

  body.view-article .nx-service-card-wide .nx-service-body {
    padding: 32px 26px 34px;
  }

  body.view-article .nx-service-card-wide .nx-service-body h3 {
    font-size: 28px;
  }
}
