@keyframes nfFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nfSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --body-bg-color: #fff;
  --content-bg-color: #f5f5f5;
  --card-bg-color: #f5f5f5;
  --text-color: #555;
  --selection-bg: #262a30;
  --selection-color: #eee;
  --blockquote-color: #666;
  --link-color: #555;
  --link-hover-color: #222;
  --brand-color: #222;
  --brand-hover-color: #222;
  --table-row-odd-bg-color: #f9f9f9;
  --table-row-hover-bg-color: #f5f5f5;
  --menu-item-bg-color: #ddd;
  --theme-color: #222;
  --btn-default-bg: transparent;
  --btn-default-color: var(--link-color);
  --btn-default-border-color: var(--link-color);
  --btn-default-hover-bg: transparent;
  --btn-default-hover-color: var(--link-hover-color);
  --btn-default-hover-border-color: var(--link-hover-color);
  --highlight-background: #f3f3f3;
  --highlight-foreground: #444;
  --highlight-gutter-background: #e1e1e1;
  --highlight-gutter-foreground: #555;
  color-scheme: light;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background: transparent;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}
html,
body {
  height: 100%;
}
body {
  background: var(--body-bg-color);
  box-sizing: border-box;
  color: var(--text-color);
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1em;
  line-height: 2;
  min-height: 100%;
  position: relative;
  transition: padding 0.2s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto Slab, Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px 0 15px;
}
h1 {
  font-size: 1.5em;
}
h2 {
  font-size: 1.375em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.125em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
a {
  border-bottom: 1px solid #ccc;
  color: var(--link-color);
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  overflow-wrap: break-word;
}
a:hover {
  border-bottom-color: var(--link-hover-color);
  color: var(--link-hover-color);
}
iframe,
img,
video,
embed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
hr {
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px);
  border: 0;
  height: 3px;
  margin: 40px 0;
}
blockquote {
  border-left: 4px solid #ddd;
  color: var(--blockquote-color);
  margin: 0;
  padding: 0 15px;
}
blockquote cite::before {
  content: '-';
  padding: 0 5px;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0;
  padding: 0;
}
.table-container {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875em;
  margin: 0 0 20px;
  width: 100%;
}
tbody tr:nth-of-type(odd) {
  background: var(--table-row-odd-bg-color);
}
tbody tr:hover {
  background: var(--table-row-hover-bg-color);
}
caption,
th,
td {
  padding: 8px;
}
th,
td {
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
}
th {
  font-weight: 700;
  padding-bottom: 10px;
}
td {
  border-bottom-width: 1px;
}
.btn {
  background: var(--btn-default-bg);
  border: 2px solid var(--btn-default-border-color);
  border-radius: 0;
  color: var(--btn-default-color);
  display: inline-block;
  font-size: 0.875em;
  line-height: 2;
  padding: 0 20px;
  transition: background-color 0.2s ease-in-out;
}
.btn:hover {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.btn + .btn {
  margin: 0 0 8px 8px;
}
.btn .fa-fw {
  text-align: left;
  width: 1.285714285714286em;
}
.toggle {
  line-height: 0;
}
.toggle .toggle-line {
  background: #fff;
  display: block;
  height: 2px;
  left: 0;
  position: relative;
  top: 0;
  transition: 0.4s;
  transition-property: left, opacity, top, transform, width;
  width: 100%;
}
.toggle .toggle-line:first-child {
  margin-top: 1px;
}
.toggle .toggle-line:not(:first-child) {
  margin-top: 4px;
}
.toggle.toggle-arrow :first-child {
  left: 50%;
  top: 2px;
  transform: rotate(45deg);
  width: 50%;
}
.toggle.toggle-arrow :last-child {
  left: 50%;
  top: -2px;
  transform: rotate(-45deg);
  width: 50%;
}
.toggle.toggle-close :nth-child(2) {
  opacity: 0;
}
.toggle.toggle-close :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.toggle.toggle-close :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/
/*
This is left on purpose making default.css the single file that can be lifted
as-is from the repository directly without the need for a build step

Typically this "required" baseline CSS is added by `makestuff.js` during build.
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/* end baseline CSS */
.hljs {
  background: #F3F3F3;
  color: #444
}
/* Base color: saturation 0; */
.hljs-subst {
  /* default */
  
}
/* purposely ignored */
.hljs-formula,
.hljs-attr,
.hljs-property,
.hljs-params {
  
}
.hljs-comment {
  color: #697070
}
.hljs-tag,
.hljs-punctuation {
  color: #444a
}
.hljs-tag .hljs-name,
.hljs-tag .hljs-attr {
  color: #444
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-name {
  font-weight: bold
}
/* User color: hue: 0 */
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #880000
}
.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-operator,
.hljs-selector-pseudo {
  color: #ab5656
}
/* Language color: hue: 90; */
.hljs-literal {
  color: #695
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #397300
}
/* Meta color: hue: 200 */
.hljs-meta {
  color: #1f7199
}
.hljs-meta .hljs-string {
  color: #38a
}
/* Misc effects */
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
.highlight:hover .copy-btn,
.code-container:hover .copy-btn {
  opacity: 1;
}
.code-container {
  position: relative;
}
.code-lang {
  font-size: 40px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 5px;
}
.copy-btn {
  color: #333;
  cursor: pointer;
  line-height: 1.6;
  opacity: 0;
  padding: 2px 6px;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  font-size: 0.8125em;
  right: 4px;
  top: 8px;
}
code,
kbd,
figure.highlight,
pre {
  background: var(--highlight-background);
  color: var(--highlight-foreground);
}
figure.highlight,
pre {
  line-height: 1.6;
  margin: 0 auto 20px;
}
figure.highlight figcaption,
pre .caption {
  background: var(--highlight-gutter-background);
  color: var(--highlight-foreground);
  display: flow-root;
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0.5em;
}
figure.highlight figcaption a,
pre .caption a {
  color: var(--highlight-foreground);
  float: right;
}
figure.highlight figcaption a:hover,
pre .caption a:hover {
  border-bottom-color: var(--highlight-foreground);
}
pre,
code {
  font-family: JetBrains Mono, consolas, Menlo, monospace, 'PingFang SC', 'Microsoft YaHei';
}
code {
  border-radius: 3px;
  font-size: 0.875em;
  padding: 2px 4px;
  overflow-wrap: break-word;
}
kbd {
  border: 2px solid #ccc;
  border-radius: 0.2em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1);
  font-family: inherit;
  padding: 0.1em 0.3em;
  white-space: nowrap;
}
figure.highlight {
  overflow: auto;
  position: relative;
}
figure.highlight pre {
  border: 0;
  margin: 0;
  padding: 10px 0;
}
figure.highlight table {
  border: 0;
  margin: 0;
  width: auto;
}
figure.highlight td {
  border: 0;
  padding: 0;
}
figure.highlight .gutter {
  -webkit-user-select: none;
  user-select: none;
}
figure.highlight .gutter pre {
  background: var(--highlight-gutter-background);
  color: var(--highlight-gutter-foreground);
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}
figure.highlight .code pre {
  padding-left: 10px;
  width: 100%;
}
figure.highlight .marked {
  background: rgba(0,0,0,0.3);
}
pre .caption {
  margin-bottom: 10px;
}
.gist table {
  width: auto;
}
.gist table td {
  border: 0;
}
pre {
  overflow: auto;
  padding: 10px;
}
pre code {
  background: none;
  padding: 0;
  text-shadow: none;
}
.blockquote-center {
  border-left: 0;
  margin: 40px 0;
  padding: 0;
  position: relative;
  text-align: center;
}
.blockquote-center::before,
.blockquote-center::after {
  left: 0;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  width: 100%;
}
.blockquote-center::before {
  border-top: 1px solid #ccc;
  text-align: left;
  top: -20px;
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.blockquote-center::after {
  border-bottom: 1px solid #ccc;
  bottom: -20px;
  text-align: right;
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.blockquote-center p,
.blockquote-center div {
  text-align: center;
}
.group-picture {
  margin-bottom: 20px;
}
.group-picture .group-picture-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.group-picture .group-picture-column {
  flex: 1;
}
.group-picture .group-picture-column img {
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.post-body .label {
  color: #555;
  padding: 0 2px;
}
.post-body .label.default {
  background: #f0f0f0;
}
.post-body .label.primary {
  background: #efe6f7;
}
.post-body .label.info {
  background: #e5f2f8;
}
.post-body .label.success {
  background: #e7f4e9;
}
.post-body .label.warning {
  background: #fcf6e1;
}
.post-body .label.danger {
  background: #fae8eb;
}
.post-body .link-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 20px;
  padding: 1rem;
}
.post-body .link-grid .link-grid-container {
  border: solid #ddd;
  box-shadow: 1rem 1rem 0.5rem rgba(0,0,0,0.5);
  min-height: 5rem;
  min-width: 0;
  padding: 0.5rem;
  position: relative;
  transition: background 0.3s;
}
.post-body .link-grid .link-grid-container:hover {
  animation: next-shake 0.5s;
  background: var(--card-bg-color);
}
.post-body .link-grid .link-grid-container:active {
  box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
  transform: translate(0.2rem, 0.2rem);
}
.post-body .link-grid .link-grid-container .link-grid-image {
  border: 1px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
  height: 5rem;
  padding: 3px;
  position: absolute;
  width: 5rem;
}
.post-body .link-grid .link-grid-container p {
  margin: 0 1rem 0 6rem;
}
.post-body .link-grid .link-grid-container p:first-of-type {
  font-size: 1.2em;
}
.post-body .link-grid .link-grid-container p:last-of-type {
  font-size: 0.8em;
  line-height: 1.3rem;
  opacity: 0.7;
}
.post-body .link-grid .link-grid-container a {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@keyframes next-shake {
  0% {
    transform: translate(1pt, 1pt) rotate(0deg);
  }
  10% {
    transform: translate(-1pt, -2pt) rotate(-1deg);
  }
  20% {
    transform: translate(-3pt, 0pt) rotate(1deg);
  }
  30% {
    transform: translate(3pt, 2pt) rotate(0deg);
  }
  40% {
    transform: translate(1pt, -1pt) rotate(1deg);
  }
  50% {
    transform: translate(-1pt, 2pt) rotate(-1deg);
  }
  60% {
    transform: translate(-3pt, 1pt) rotate(0deg);
  }
  70% {
    transform: translate(3pt, 1pt) rotate(-1deg);
  }
  80% {
    transform: translate(-1pt, -1pt) rotate(1deg);
  }
  90% {
    transform: translate(1pt, 2pt) rotate(0deg);
  }
  100% {
    transform: translate(1pt, -2pt) rotate(-1deg);
  }
}
.post-body .note {
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 1em;
  position: relative;
  border: 1px solid #eee;
  border-left-width: 5px;
}
.post-body .note summary {
  cursor: pointer;
  outline: 0;
}
.post-body .note summary p {
  display: inline;
}
.post-body .note h2,
.post-body .note h3,
.post-body .note h4,
.post-body .note h5,
.post-body .note h6 {
  border-bottom: initial;
  margin: 0;
  padding-top: 0;
}
.post-body .note :first-child {
  margin-top: 0;
}
.post-body .note :last-child {
  margin-bottom: 0;
}
.post-body .note.default {
  border-left-color: #777;
}
.post-body .note.default h2,
.post-body .note.default h3,
.post-body .note.default h4,
.post-body .note.default h5,
.post-body .note.default h6 {
  color: #777;
}
.post-body .note.primary {
  border-left-color: #6f42c1;
}
.post-body .note.primary h2,
.post-body .note.primary h3,
.post-body .note.primary h4,
.post-body .note.primary h5,
.post-body .note.primary h6 {
  color: #6f42c1;
}
.post-body .note.info {
  border-left-color: #428bca;
}
.post-body .note.info h2,
.post-body .note.info h3,
.post-body .note.info h4,
.post-body .note.info h5,
.post-body .note.info h6 {
  color: #428bca;
}
.post-body .note.success {
  border-left-color: #5cb85c;
}
.post-body .note.success h2,
.post-body .note.success h3,
.post-body .note.success h4,
.post-body .note.success h5,
.post-body .note.success h6 {
  color: #5cb85c;
}
.post-body .note.warning {
  border-left-color: #f0ad4e;
}
.post-body .note.warning h2,
.post-body .note.warning h3,
.post-body .note.warning h4,
.post-body .note.warning h5,
.post-body .note.warning h6 {
  color: #f0ad4e;
}
.post-body .note.danger {
  border-left-color: #d9534f;
}
.post-body .note.danger h2,
.post-body .note.danger h3,
.post-body .note.danger h4,
.post-body .note.danger h5,
.post-body .note.danger h6 {
  color: #d9534f;
}
.post-body .tabs {
  margin-bottom: 20px;
}
.post-body .tabs,
.tabs-comment {
  padding-top: 10px;
}
.post-body .tabs ul.nav-tabs,
.tabs-comment ul.nav-tabs {
  background: var(--body-bg-color);
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 5;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs,
  .tabs-comment ul.nav-tabs {
    display: block;
    margin-bottom: 5px;
  }
}
.post-body .tabs ul.nav-tabs li.tab,
.tabs-comment ul.nav-tabs li.tab {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 0 0 0 0;
  border-top: 3px solid transparent;
  flex-grow: 1;
  list-style-type: none;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-bottom: 1px solid transparent;
    border-left: 3px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
  }
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-radius: 0;
  }
}
.post-body .tabs ul.nav-tabs li.tab a,
.tabs-comment ul.nav-tabs li.tab a {
  border-bottom: initial;
  display: block;
  line-height: 1.8;
  padding: 0.25em 0.75em;
  text-align: center;
  transition: all 0.2s ease-out;
}
.post-body .tabs ul.nav-tabs li.tab a i[class^='fa'],
.tabs-comment ul.nav-tabs li.tab a i[class^='fa'] {
  width: 1.285714285714286em;
}
.post-body .tabs ul.nav-tabs li.tab.active,
.tabs-comment ul.nav-tabs li.tab.active {
  border-bottom-color: transparent;
  border-left-color: #ddd;
  border-right-color: #ddd;
  border-top-color: #fc6423;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab.active,
  .tabs-comment ul.nav-tabs li.tab.active {
    border-bottom-color: #ddd;
    border-left-color: #fc6423;
    border-right-color: #ddd;
    border-top-color: #ddd;
  }
}
.post-body .tabs ul.nav-tabs li.tab.active a,
.tabs-comment ul.nav-tabs li.tab.active a {
  cursor: default;
}
.post-body .tabs .tab-content,
.tabs-comment .tab-content {
  border: 1px solid #ddd;
  border-radius: 0 0 0 0;
  border-top-color: transparent;
}
@media (max-width: 413px) {
  .post-body .tabs .tab-content,
  .tabs-comment .tab-content {
    border-radius: 0;
    border-top-color: #ddd;
  }
}
.post-body .tabs .tab-content .tab-pane,
.tabs-comment .tab-content .tab-pane {
  padding: 20px 20px 0;
}
.post-body .tabs .tab-content .tab-pane:not(.active),
.tabs-comment .tab-content .tab-pane:not(.active) {
  display: none;
}
.pagination .prev,
.pagination .next,
.pagination .page-number,
.pagination .space {
  display: inline-block;
  margin: -1px 10px 0;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .pagination .prev,
  .pagination .next,
  .pagination .page-number,
  .pagination .space {
    margin: 0 5px;
  }
}
.pagination .page-number.current {
  background: #ccc;
  border-color: #ccc;
  color: var(--content-bg-color);
}
.pagination {
  border-top: 1px solid #eee;
  margin: 120px 0 0;
  text-align: left;
}
.pagination .prev,
.pagination .next,
.pagination .page-number {
  border-bottom: 0;
  border-top: 1px solid #eee;
  transition: border-color 0.2s ease-in-out;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-number:hover {
  border-top-color: var(--link-hover-color);
}
@media (max-width: 767px) {
  .pagination {
    border-top: 0;
  }
  .pagination .prev,
  .pagination .next,
  .pagination .page-number {
    border-bottom: 1px solid #eee;
    border-top: 0;
  }
  .pagination .prev:hover,
  .pagination .next:hover,
  .pagination .page-number:hover {
    border-bottom-color: var(--link-hover-color);
  }
}
.pagination .space {
  margin: 0;
  padding: 0;
}
.comments {
  margin-top: 60px;
  overflow: hidden;
}
.comment-button-group {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  margin: 1em 0;
}
.comment-button-group .comment-button {
  margin: 0.1em 0.2em;
}
.comment-button-group .comment-button.active {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.comment-position {
  display: none;
}
.comment-position.active {
  display: block;
}
.tabs-comment {
  margin-top: 4em;
  padding-top: 0;
}
.tabs-comment .comments {
  margin-top: 0;
  padding-top: 0;
}
.headband {
  background: var(--theme-color);
  height: 3px;
}
@media (max-width: 991px) {
  .headband {
    display: none;
  }
}
.site-brand-container {
  display: flex;
  flex-shrink: 0;
  padding: 0 10px;
}
.use-motion .column,
.use-motion .site-brand-container .toggle {
  opacity: 0;
}
.site-meta {
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .site-meta {
    text-align: center;
  }
}
.custom-logo-image {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .custom-logo-image {
    display: none;
  }
}
.brand {
  border-bottom: 0;
  color: var(--brand-color);
  display: inline-block;
  padding: 2px 1px;
}
.brand:hover {
  color: var(--brand-hover-color);
}
.site-title {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.375em;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}
.site-subtitle {
  color: #999;
  font-size: 0.8125em;
  margin: 10px 0;
}
.use-motion .site-title,
.use-motion .site-subtitle,
.use-motion .custom-logo-image {
  opacity: 0;
  position: relative;
  top: -10px;
}
.site-nav-toggle,
.site-nav-right {
  display: none;
}
@media (max-width: 767px) {
  .site-nav-toggle,
  .site-nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.site-nav-toggle .toggle,
.site-nav-right .toggle {
  color: var(--text-color);
  padding: 10px;
  width: 22px;
}
.site-nav-toggle .toggle .toggle-line,
.site-nav-right .toggle .toggle-line {
  background: var(--text-color);
  border-radius: 1px;
}
@media (max-width: 767px) {
  .site-nav {
    --scroll-height: 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    transition-property: height, visibility;
    visibility: hidden;
  }
  body:not(.site-nav-on) .site-nav .animated {
    animation: none;
  }
  body.site-nav-on .site-nav {
    height: var(--scroll-height);
    visibility: unset;
  }
}
.menu {
  margin: 0;
  padding: 1em 0;
  text-align: center;
}
.menu-item {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .menu-item {
    display: block;
    margin-top: 10px;
  }
  .menu-item.menu-item-search {
    display: none;
  }
}
.menu-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.8125em;
  transition: border-color 0.2s ease-in-out;
}
.menu-item a:hover,
.menu-item a.menu-item-active {
  background: var(--menu-item-bg-color);
}
.menu-item i[class^='fa'] {
  margin-right: 8px;
}
.menu-item .badge {
  background: #fff;
  border-radius: 10px;
  color: #555;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 1px 4px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.use-motion .menu-item {
  visibility: hidden;
}
.book-mark-link {
  border-bottom: 0;
  position: fixed;
  top: -10px;
  transition: top 0.3s;
  right: 30px;
}
@media (max-width: 991px) {
  .book-mark-link {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .book-mark-link {
    display: none;
  }
}
.book-mark-link::before {
  color: #222;
  font-size: 32px;
  line-height: 1;
  content: '\f02e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.book-mark-link:hover,
.book-mark-link-fixed {
  top: -2px;
}
.sidebar {
  left: -320px;
}
.sidebar-active .sidebar {
  left: 0;
}
.sidebar {
  background: #222;
  bottom: 0;
  box-shadow: inset 0 2px 6px #000;
  max-height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transition: 0.2s ease-out;
  transition-property: left, right;
  width: 320px;
  z-index: 20;
}
.sidebar a {
  border-bottom-color: #555;
  color: #999;
}
.sidebar a:hover {
  border-bottom-color: #eee;
  color: #eee;
}
.links-of-author:not(:first-child) {
  margin-top: 15px;
}
.links-of-author a {
  border-bottom-color: #555;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
  vertical-align: middle;
}
.links-of-author a::before {
  background: #ded70a;
  display: inline-block;
  margin-right: 3px;
  transform: translateY(-2px);
  border-radius: 50%;
  content: ' ';
  height: 4px;
  width: 4px;
}
.links-of-blogroll-item {
  padding: 0 5px;
}
.popular-posts .popular-posts-item .popular-posts-link:hover {
  background: none;
}
.sidebar-dimmer {
  background: #000;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.4s, opacity 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}
.sidebar-active .sidebar-dimmer {
  opacity: 0.7;
  visibility: visible;
}
.sidebar-inner {
  color: #999;
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-toggle {
  bottom: 61px;
  height: 16px;
  padding: 5px;
  width: 16px;
  background: #222;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  z-index: 30;
  left: 30px;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    left: 20px;
  }
}
.sidebar-toggle:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    opacity: 1;
  }
}
.sidebar-toggle:hover .toggle-line {
  background: #87daff;
}
@media (any-hover: hover) {
  body:not(.sidebar-active) .sidebar-toggle:hover :first-child {
    left: 50%;
    top: 2px;
    transform: rotate(45deg);
    width: 50%;
  }
  body:not(.sidebar-active) .sidebar-toggle:hover :last-child {
    left: 50%;
    top: -2px;
    transform: rotate(-45deg);
    width: 50%;
  }
}
.sidebar-active .sidebar-toggle :nth-child(2) {
  opacity: 0;
}
.sidebar-active .sidebar-toggle :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.sidebar-active .sidebar-toggle :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
.sidebar-nav {
  font-size: 0.875em;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-left: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  transition-property: height, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-nav {
  height: calc(2em + 1px);
  pointer-events: unset;
  visibility: unset;
}
.sidebar-nav li {
  border-bottom: 1px solid transparent;
  color: #666;
  cursor: pointer;
  display: inline-block;
  transition: 0.2s ease-in-out;
  transition-property: border-bottom-color, color;
}
.sidebar-nav li.sidebar-nav-overview {
  margin-left: 10px;
}
.sidebar-nav li:hover {
  color: #f5f5f5;
}
.sidebar-toc-active .sidebar-nav-toc,
.sidebar-overview-active .sidebar-nav-overview {
  border-bottom-color: #87daff;
  color: #87daff;
  transition-delay: 0.2s;
}
.sidebar-toc-active .sidebar-nav-toc:hover,
.sidebar-overview-active .sidebar-nav-overview:hover {
  color: #87daff;
}
.sidebar-panel-container {
  align-items: start;
  display: grid;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
  transition: padding-top 0.2s ease-in-out;
}
.sidebar-nav-active .sidebar-panel-container {
  padding-top: 20px;
}
.sidebar-panel {
  animation: deactivate-sidebar-panel 0.2s ease-in-out;
  grid-area: 1/1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: 0.2s ease-in-out;
  transition-delay: 0s;
  transition-property: opacity, transform, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-panel,
.sidebar-overview-active .sidebar-panel.post-toc-wrap {
  transform: translateY(-20px);
}
.sidebar-overview-active:not(.sidebar-nav-active) .sidebar-panel.post-toc-wrap {
  transition-delay: 0s, 0.2s, 0s;
}
.sidebar-overview-active .sidebar-panel.site-overview-wrap,
.sidebar-toc-active .sidebar-panel.post-toc-wrap {
  animation-name: activate-sidebar-panel;
  height: auto;
  opacity: 1;
  pointer-events: unset;
  transform: translateY(0);
  transition-delay: 0.2s, 0.2s, 0s;
  visibility: unset;
}
.sidebar-panel.site-overview-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  justify-content: flex-start;
}
@keyframes deactivate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, 0);
  }
  to {
    height: var(--active-panel-height, 0);
  }
}
@keyframes activate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, auto);
  }
  to {
    height: var(--active-panel-height, auto);
  }
}
.post-toc {
  font-size: 0.875em;
}
.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0 2px 0 10px;
  text-align: left;
}
.post-toc ol > :last-child {
  margin-bottom: 5px;
}
.post-toc ol > ol {
  padding-left: 0;
}
.post-toc ol a {
  transition: all 0.2s ease-in-out;
}
.post-toc .nav-item {
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-toc .nav .nav-child {
  --height: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition-property: height, opacity, visibility;
  transition: 0.2s ease-in-out;
  visibility: hidden;
}
.post-toc .nav .active > .nav-child {
  height: var(--height, auto);
  opacity: 1;
  visibility: unset;
}
.post-toc .nav .active > a {
  border-bottom-color: #87daff;
  color: #87daff;
}
.post-toc .nav .active-current > a {
  color: #87daff;
}
.post-toc .nav .active-current > a:hover {
  color: #87daff;
}
.site-author-image {
  border: 2px solid #333;
  max-width: 96px;
  padding: 2px;
}
.site-author-name {
  color: #f5f5f5;
  font-weight: normal;
  margin: 5px 0 0;
}
.site-description {
  color: #999;
  font-size: 1em;
  margin-top: 5px;
}
.site-state {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.4;
}
.site-state-item {
  padding: 0 15px;
}
.site-state-item a {
  border-bottom: 0;
  display: block;
}
.site-state-item-count {
  display: block;
  font-size: 1.25em;
  font-weight: 600;
}
.site-state-item-name {
  color: inherit;
  font-size: 0.875em;
}
.sidebar .sidebar-button:not(:first-child) {
  margin-top: 15px;
}
.sidebar .sidebar-button button {
  background: transparent;
  color: #fc6423;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 1px solid #fc6423;
  border-radius: 4px;
}
.sidebar .sidebar-button button:hover {
  background: #fc6423;
  color: #fff;
}
.sidebar .sidebar-button button i[class^='fa'] {
  margin-right: 5px;
}
.links-of-author a {
  font-size: 0.8125em;
}
.links-of-author i[class^='fa'] {
  margin-right: 2px;
}
.cc-license .cc-opacity {
  border-bottom: 0;
  opacity: 0.7;
}
.cc-license .cc-opacity:hover {
  opacity: 0.9;
}
.cc-license img {
  display: inline-block;
}
.links-of-blogroll {
  font-size: 0.8125em;
}
.links-of-blogroll-title {
  font-size: 0.875em;
  font-weight: 600;
}
.links-of-blogroll-list {
  list-style: none;
  gap: 5px;
  margin: 5px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.links-of-blogroll-item {
  max-width: 100%;
}
.links-of-blogroll-item a {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer {
  color: #999;
  font-size: 0.875em;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  transition-property: left, right;
}
.footer.footer-fixed {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.footer-inner {
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-inner {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .footer-inner {
    width: 800px;
  }
}
@media (min-width: 1600px) {
  .footer-inner {
    width: 900px;
  }
}
.use-motion .footer {
  opacity: 0;
}
.languages {
  display: inline-block;
  font-size: 1.125em;
  position: relative;
}
.languages .lang-select-label span {
  margin: 0 0.5em;
}
.languages .lang-select {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.with-love {
  color: #f00;
  display: inline-block;
  margin: 0 5px;
  animation: icon-animate 1.33s ease-in-out infinite;
}
@keyframes icon-animate {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(0.9);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.1);
  }
  50%, 70% {
    transform: scale(1.1);
  }
}
@media (max-width: 567px) {
  .main-inner {
    padding: initial !important;
  }
  .posts-expand .post-header {
    margin-bottom: 10px !important;
  }
  .post-block {
    margin-top: initial !important;
    padding: 8px 18px 8px !important;
  }
  .post-body h1,
  .post-body h2,
  .post-body h3,
  .post-body h4,
  .post-body h5,
  .post-body h6 {
    margin: 20px 0 8px;
  }
  .post-body .note h1,
  .post-body .tabs .tab-content .tab-pane h1,
  .post-body .note h2,
  .post-body .tabs .tab-content .tab-pane h2,
  .post-body .note h3,
  .post-body .tabs .tab-content .tab-pane h3,
  .post-body .note h4,
  .post-body .tabs .tab-content .tab-pane h4,
  .post-body .note h5,
  .post-body .tabs .tab-content .tab-pane h5,
  .post-body .note h6,
  .post-body .tabs .tab-content .tab-pane h6 {
    margin: 0 5px;
  }
  .post-body > p {
    margin: 0 0 10px;
  }
  .post-body .note > p,
  .post-body .tabs .tab-content .tab-pane > p {
    padding: 0 5px;
  }
  .post-body img,
  .post-body video {
    margin-bottom: 10px !important;
  }
  .post-body figure:not(.highlight) figcaption {
    margin: -5px auto 15px !important;
  }
  .post-body .note {
    margin-bottom: 10px !important;
    padding: 10px !important;
  }
  .post-body .tabs .tab-content .tab-pane {
    padding: 10px 10px 0 !important;
  }
  .post-eof {
    margin: 40px auto 20px !important;
  }
  .pagination {
    margin-top: 40px;
  }
}
.back-to-top {
  font-size: 12px;
  align-items: center;
  bottom: -100px;
  color: #fff;
  display: flex;
  height: 26px;
  transition: 0.2s ease-in-out;
  transition-property: bottom;
  background: #222;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  z-index: 30;
  left: 30px;
}
.back-to-top span {
  margin-right: 8px;
}
.back-to-top .fa {
  text-align: center;
  width: 26px;
}
@media (max-width: 991px) {
  .back-to-top {
    left: 20px;
  }
}
.back-to-top:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .back-to-top {
    opacity: 1;
  }
}
.back-to-top:hover {
  color: #87daff;
}
.back-to-top.back-to-top-on {
  bottom: 30px;
}
.reading-progress-bar {
  --progress: 0;
  background: #37c6c0;
  height: 3px;
  position: fixed;
  z-index: 50;
  width: var(--progress);
  left: 0;
  top: 0;
}
.rtl.post-body p,
.rtl.post-body a,
.rtl.post-body h1,
.rtl.post-body h2,
.rtl.post-body h3,
.rtl.post-body h4,
.rtl.post-body h5,
.rtl.post-body h6,
.rtl.post-body li,
.rtl.post-body ul,
.rtl.post-body ol {
  direction: rtl;
  font-family: UKIJ Ekran;
}
.rtl.post-title {
  font-family: UKIJ Ekran;
}
.post-button {
  margin-top: 40px;
  text-align: left;
}
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments {
  visibility: hidden;
}
.use-motion .post-header {
  visibility: hidden;
}
.use-motion .post-body {
  visibility: hidden;
}
.use-motion .collection-header {
  visibility: hidden;
}
.posts-collapse .post-content {
  margin-bottom: 35px;
  margin-left: 35px;
  position: relative;
}
@media (max-width: 767px) {
  .posts-collapse .post-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.posts-collapse .post-content .collection-title {
  font-size: 1.125em;
  position: relative;
}
.posts-collapse .post-content .collection-title::before {
  background: #999;
  border: 1px solid #fff;
  margin-left: -6px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 10px;
  width: 10px;
}
.posts-collapse .post-content .collection-year {
  font-size: 1.5em;
  font-weight: bold;
  margin: 60px 0;
  position: relative;
}
.posts-collapse .post-content .collection-year .collection-year-count {
  font-size: 0.75em;
  background: #fff;
  border-radius: 10px;
  color: #555;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 1px 4px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.posts-collapse .post-content .collection-year::before {
  background: #bbb;
  margin-left: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 8px;
  width: 8px;
}
.posts-collapse .post-content .collection-header {
  display: block;
  margin-left: 20px;
}
.posts-collapse .post-content .collection-header small {
  color: #bbb;
  margin-left: 5px;
}
.posts-collapse .post-content .post-header {
  border-bottom: 1px dashed #ccc;
  margin: 30px 2px 0;
  padding-left: 15px;
  position: relative;
  transition: border 0.2s ease-in-out;
}
.posts-collapse .post-content .post-header::before {
  background: #bbb;
  border: 1px solid #fff;
  left: -6px;
  position: absolute;
  top: 0.75em;
  transition: background 0.2s ease-in-out;
  border-radius: 50%;
  content: ' ';
  height: 6px;
  width: 6px;
}
.posts-collapse .post-content .post-header:hover {
  border-bottom-color: #666;
}
.posts-collapse .post-content .post-header:hover::before {
  background: #222;
}
.posts-collapse .post-content .post-meta-container {
  display: inline;
  font-size: 0.75em;
  margin-right: 10px;
}
.posts-collapse .post-content .post-title {
  display: inline;
}
.posts-collapse .post-content .post-title a {
  border-bottom: 0;
  color: var(--link-color);
}
.posts-collapse .post-content .post-title .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.posts-collapse .post-content::before {
  background: #f5f5f5;
  content: ' ';
  height: 100%;
  margin-left: -2px;
  position: absolute;
  top: 1.25em;
  width: 4px;
}
.post-body {
  font-family: Lato, Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-wrap: break-word;
}
@media (min-width: 1200px) {
  .post-body {
    font-size: 1.125em;
  }
}
@media (min-width: 992px) {
  .post-body {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  .post-body {
    text-align: justify;
  }
}
.post-body h1 .header-anchor,
.post-body h2 .header-anchor,
.post-body h3 .header-anchor,
.post-body h4 .header-anchor,
.post-body h5 .header-anchor,
.post-body h6 .header-anchor,
.post-body h1 .headerlink,
.post-body h2 .headerlink,
.post-body h3 .headerlink,
.post-body h4 .headerlink,
.post-body h5 .headerlink,
.post-body h6 .headerlink {
  border-bottom-style: none;
  color: inherit;
  float: right;
  font-size: 0.875em;
  margin-left: 10px;
  opacity: 0;
}
.post-body h1 .header-anchor::before,
.post-body h2 .header-anchor::before,
.post-body h3 .header-anchor::before,
.post-body h4 .header-anchor::before,
.post-body h5 .header-anchor::before,
.post-body h6 .header-anchor::before,
.post-body h1 .headerlink::before,
.post-body h2 .headerlink::before,
.post-body h3 .headerlink::before,
.post-body h4 .headerlink::before,
.post-body h5 .headerlink::before,
.post-body h6 .headerlink::before {
  content: '\f0c1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body h1:hover .header-anchor,
.post-body h2:hover .header-anchor,
.post-body h3:hover .header-anchor,
.post-body h4:hover .header-anchor,
.post-body h5:hover .header-anchor,
.post-body h6:hover .header-anchor,
.post-body h1:hover .headerlink,
.post-body h2:hover .headerlink,
.post-body h3:hover .headerlink,
.post-body h4:hover .headerlink,
.post-body h5:hover .headerlink,
.post-body h6:hover .headerlink {
  opacity: 0.5;
}
.post-body h1:hover .header-anchor:hover,
.post-body h2:hover .header-anchor:hover,
.post-body h3:hover .header-anchor:hover,
.post-body h4:hover .header-anchor:hover,
.post-body h5:hover .header-anchor:hover,
.post-body h6:hover .header-anchor:hover,
.post-body h1:hover .headerlink:hover,
.post-body h2:hover .headerlink:hover,
.post-body h3:hover .headerlink:hover,
.post-body h4:hover .headerlink:hover,
.post-body h5:hover .headerlink:hover,
.post-body h6:hover .headerlink:hover {
  opacity: 1;
}
.post-body .exturl .fa {
  font-size: 0.875em;
  margin-left: 4px;
}
.post-body figure:not(.highlight) figcaption {
  color: #999;
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1;
  margin: -15px auto 15px;
  text-align: center;
}
.post-body iframe,
.post-body img,
.post-body video,
.post-body embed {
  margin-bottom: 20px;
}
.post-body .video-container {
  height: 0;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  width: 100%;
}
.post-body .video-container iframe,
.post-body .video-container object,
.post-body .video-container embed {
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.post-gallery {
  display: flex;
  min-height: 200px;
}
.post-gallery .post-gallery-image {
  flex: 1;
}
.post-gallery .post-gallery-image:not(:first-child) {
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -20px;
}
.post-gallery .post-gallery-image:not(:last-child) {
  margin-right: -20px;
}
.post-gallery .post-gallery-image img {
  height: 100%;
  object-fit: cover;
  opacity: 1;
  width: 100%;
}
.posts-expand .post-gallery {
  margin-bottom: 60px;
}
.posts-collapse .post-gallery {
  margin: 15px 0;
}
.posts-expand .post-header {
  font-size: 1.125em;
  margin-bottom: 60px;
  text-align: center;
}
.posts-expand .post-title {
  font-size: 1.5em;
  font-weight: normal;
  margin: initial;
  overflow-wrap: break-word;
}
.posts-expand .post-title-link {
  border-bottom: 0;
  color: var(--link-color);
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.posts-expand .post-title-link::before {
  background: var(--link-color);
  bottom: 0;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
  width: 100%;
}
.posts-expand .post-title-link:hover::before {
  transform: scaleX(1);
}
.posts-expand .post-title-link .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.post-sticky-flag {
  display: inline-block;
  margin-right: 8px;
  transform: rotate(30deg);
}
.posts-expand .post-meta-container {
  color: #999;
  font-family: Lato, Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.75em;
  margin-top: 3px;
}
.posts-expand .post-meta-container .post-description {
  font-size: 0.875em;
  margin-top: 2px;
}
.posts-expand .post-meta-container time {
  border-bottom: 1px dashed #999;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
:not(.post-meta-break) + .post-meta-item::before {
  content: '|';
  margin: 0 0.5em;
}
.post-meta-item-icon {
  margin-right: 3px;
}
@media (max-width: 991px) {
  .post-meta-item-text {
    display: none;
  }
}
.post-meta-break {
  flex-basis: 100%;
  height: 0;
}
.post-nav {
  border-top: 1px solid #eee;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 1em;
  padding: 10px 5px 0;
}
.post-nav-item {
  flex: 1;
}
.post-nav-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.875em;
  line-height: 1.6;
}
.post-nav-item a:active {
  top: 2px;
}
.post-nav-item .fa {
  font-size: 0.75em;
}
.post-nav-item:first-child .fa {
  margin-right: 5px;
}
.post-nav-item:last-child {
  text-align: right;
}
.post-nav-item:last-child .fa {
  margin-left: 5px;
}
.post-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-eof {
  background: #ccc;
  height: 1px;
  margin: 80px auto 60px;
  width: 8%;
}
.post-block:last-of-type .post-eof {
  display: none;
}
.post-tags {
  margin-top: 40px;
  text-align: left;
}
.post-tags a {
  display: inline-block;
  font-size: 0.8125em;
}
.post-tags a:not(:last-child) {
  margin-right: 10px;
}
.social-like {
  border-top: 1px solid #eee;
  font-size: 0.875em;
  margin-top: 1em;
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.social-like a {
  border-bottom: none;
}
.reward-container {
  margin: 1em 0 0;
  padding: 1em 0;
  text-align: center;
}
.reward-container button {
  background: transparent;
  color: #87daff;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 2px solid #87daff;
  border-radius: 2px;
  outline: 0;
  vertical-align: text-top;
}
.reward-container button:hover {
  background: #87daff;
  color: #fff;
}
.post-reward {
  display: none;
  padding-top: 20px;
}
.post-reward.active {
  display: block;
}
.post-reward div {
  display: inline-block;
}
.post-reward div span {
  display: block;
}
.post-reward img {
  display: inline-block;
  margin: 0.8em 2em 0;
  max-width: 100%;
  width: 180px;
}
@keyframes next-roll {
  from {
    transform: rotateZ(30deg);
  }
  to {
    transform: rotateZ(-30deg);
  }
}
.category-all-page .category-all-title {
  text-align: center;
}
.category-all-page .category-all {
  margin-top: 20px;
}
.category-all-page .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-all-page .category-list-item {
  margin: 5px 10px;
}
.category-all-page .category-list-count {
  font-size: 0.75em;
  background: #fff;
  border-radius: 10px;
  color: #555;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 1px 4px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.category-all-page .category-list-child {
  padding-left: 10px;
}
.event-list hr {
  background: #222;
  margin: 20px 0 45px;
}
.event-list hr::after {
  background: #222;
  color: #fff;
  content: 'NOW';
  display: inline-block;
  font-weight: bold;
  padding: 0 5px;
}
.event-list .event {
  --event-background: #222;
  --event-foreground: #bbb;
  --event-title: #fff;
  background: var(--event-background);
  padding: 15px;
}
.event-list .event .event-summary {
  border-bottom: 0;
  color: var(--event-title);
  margin: 0;
  padding: 0 0 0 35px;
  position: relative;
}
.event-list .event .event-summary::before {
  animation: dot-flash 1s alternate infinite ease-in-out;
  background: var(--event-title);
  left: 0;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 12px;
  width: 12px;
}
.event-list .event:nth-of-type(odd) .event-summary::before {
  animation-delay: 0.5s;
}
.event-list .event:not(:last-child) {
  margin-bottom: 20px;
}
.event-list .event .event-relative-time {
  color: var(--event-foreground);
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 12px;
}
.event-list .event .event-details {
  color: var(--event-foreground);
  display: block;
  line-height: 18px;
  padding: 6px 0 6px 35px;
}
.event-list .event .event-details::before {
  color: var(--event-foreground);
  display: inline-block;
  margin-right: 9px;
  width: 14px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.event-list .event .event-details.event-location::before {
  content: '\f041';
}
.event-list .event .event-details.event-duration::before {
  content: '\f017';
}
.event-list .event .event-details.event-description::before {
  content: '\f024';
}
.event-list .event-past {
  --event-background: #f5f5f5;
  --event-foreground: #999;
  --event-title: #222;
}
@keyframes dot-flash {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
ul.breadcrumb {
  font-size: 0.75em;
  list-style: none;
  margin: 1em 0;
  padding: 0 2em;
  text-align: center;
}
ul.breadcrumb li {
  display: inline;
}
ul.breadcrumb li:not(:first-child)::before {
  content: '/\00a0';
  font-weight: normal;
  padding: 0.5em;
}
ul.breadcrumb li:last-child {
  font-weight: bold;
}
.tag-cloud {
  text-align: center;
}
.tag-cloud a {
  display: inline-block;
  margin: 10px;
}
.tag-cloud-0 {
  border-bottom-color: #aaa;
  color: #aaa;
}
.tag-cloud-1 {
  border-bottom-color: #9a9a9a;
  color: #9a9a9a;
}
.tag-cloud-2 {
  border-bottom-color: #8b8b8b;
  color: #8b8b8b;
}
.tag-cloud-3 {
  border-bottom-color: #7c7c7c;
  color: #7c7c7c;
}
.tag-cloud-4 {
  border-bottom-color: #6c6c6c;
  color: #6c6c6c;
}
.tag-cloud-5 {
  border-bottom-color: #5d5d5d;
  color: #5d5d5d;
}
.tag-cloud-6 {
  border-bottom-color: #4e4e4e;
  color: #4e4e4e;
}
.tag-cloud-7 {
  border-bottom-color: #3e3e3e;
  color: #3e3e3e;
}
.tag-cloud-8 {
  border-bottom-color: #2f2f2f;
  color: #2f2f2f;
}
.tag-cloud-9 {
  border-bottom-color: #202020;
  color: #202020;
}
.tag-cloud-10 {
  border-bottom-color: #111;
  color: #111;
}
mark.search-keyword {
  background: transparent;
  border-bottom: 1px dashed #ff2a2a;
  color: #ff2a2a;
  font-weight: bold;
}
.use-motion .animated {
  animation-fill-mode: none;
  visibility: inherit;
}
.use-motion .sidebar .animated {
  animation-fill-mode: both;
}
hr {
  height: 2px;
  margin: 20px 0;
}
.btn {
  padding: 0 10px;
}
.headband {
  display: none;
}
@media (max-width: 767px) {
  .pagination {
    margin: 80px 0 0;
    text-align: center;
  }
}
.footer {
  background: var(--content-bg-color);
  color: var(--text-color);
  padding: 10px 0;
}
@media (max-width: 767px) {
  .footer-inner {
    text-align: center;
  }
}
.column {
  background: var(--content-bg-color);
}
header.header {
  align-items: center;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 767px) {
  header.header {
    display: block;
    padding: 10px 0;
  }
}
.site-meta {
  line-height: normal;
}
@media (max-width: 767px) {
  .site-meta .brand {
    display: block;
  }
}
.site-meta .site-title {
  font-weight: bolder;
}
.logo-line {
  background: var(--brand-color);
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 75%;
}
@media (max-width: 767px) {
  .logo-line {
    display: none;
  }
}
.use-motion .logo-line:first-of-type {
  transform: scaleX(0);
  transform-origin: left;
}
.use-motion .logo-line:last-of-type {
  transform: scaleX(0);
  transform-origin: right;
}
.site-subtitle {
  display: none;
}
.site-nav {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .site-nav {
    padding: 0 10px 0;
  }
}
@media (max-width: 767px) {
  .main-menu {
    padding-top: 10px;
  }
}
.menu {
  padding: 0;
}
.menu .menu-item {
  margin: 0;
}
@media (max-width: 767px) {
  .menu .menu-item {
    margin-top: 5px;
  }
}
.menu .menu-item a {
  border-radius: 2px;
  padding: 0 10px;
  transition-property: background;
}
@media (max-width: 767px) {
  .menu .menu-item a {
    text-align: left;
    display: flex;
    align-items: center;
  }
  .menu .menu-item a .badge {
    margin-left: auto;
  }
}
.posts-expand.index .post-header {
  text-align: left;
}
@media (max-width: 767px) {
  .posts-expand.index .post-header {
    text-align: center;
  }
}
.posts-expand.index .post-meta-container {
  margin-top: 5px;
}
.posts-expand.index .post-meta {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .posts-expand.index .post-meta {
    justify-content: center;
  }
}
.posts-expand .post-eof {
  display: none;
}
.posts-expand .post-block:not(:first-of-type) {
  margin-top: 120px;
}
.posts-expand .post-header {
  margin-bottom: 20px;
}
.posts-expand .post-tags a {
  background: var(--content-bg-color);
  border-bottom: 0;
  padding: 1px 5px;
}
.posts-expand .post-tags a:hover {
  background: var(--menu-item-bg-color);
}
.posts-expand .post-nav {
  margin-top: 40px;
}
.post-button {
  margin-top: 20px;
}
.post-button .btn {
  background: none;
  border: 0;
  border-bottom: 2px solid var(--btn-default-border-color);
  padding: 0;
  transition-property: border;
}
.post-button .btn:hover {
  border-bottom-color: var(--btn-default-hover-border-color);
}
header.header {
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  header.header {
    width: auto;
  }
}
@media (min-width: 1200px) {
  header.header {
    width: 800px;
  }
}
@media (min-width: 1600px) {
  header.header {
    width: 900px;
  }
}
.main-inner {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .main-inner {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .main-inner {
    width: 800px;
  }
}
@media (min-width: 1600px) {
  .main-inner {
    width: 900px;
  }
}
@media (max-width: 767px) {
  .main-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.post-block:first-of-type {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .post-block:first-of-type {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .sidebar-dimmer {
    display: none;
  }
  .sidebar-active {
    padding-left: 320px;
  }
  .sidebar-active .footer-fixed {
    left: 320px;
  }
}
.sub-menu {
  margin: 10px 0;
}
.sub-menu .menu-item {
  display: inline-block;
}
body,
.main-inner,
.posts-expand,
.sidebar-inner,
.header-inner,
.menu,
.site-nav {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.menu-item,
.hero-title,
.section-title,
.module-title {
  font-family: 'Roboto Slab', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}
code,
pre,
.highlight,
kbd,
samp,
var {
  font-family: 'JetBrains Mono', 'SF Mono', Monaco, Menlo, Consolas, 'Liberation Mono', 'Courier New', monospace !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff !important;
  color: #333 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.upwan-loading {
  overflow: hidden;
}
body.upwan-loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  z-index: 9999;
  animation: nfUpwanPageLoad 1s ease-out forwards;
}
.hero-section,
.product-module,
.stat-item,
.feature-card,
.btn,
.menu-item a {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.hero-background,
.geometric-pattern,
.hero-content::after,
.product-module::before,
.stat-item::before,
.stat-item::after,
.feature-card::before,
.btn::before,
.menu-item a::before,
.cta-section::before {
  contain: layout;
  will-change: transform, opacity;
}
.sidebar,
.sidebar-toggle,
.sidebar-inner,
.post-meta,
.post-eof,
.post-nav,
.post-button,
.post-spread,
.post-tags,
.post-category,
.post-copyright,
.post-title,
.post-header,
.post-meta-container,
.post-meta-item {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: none !important;
}
.enterprise-homepage {
  position: relative !important;
  z-index: 10 !important;
}
.main,
.main-inner,
.content-wrap,
.content,
.posts-expand {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 60px !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
  z-index: 1000 !important;
  width: 100% !important;
  padding: 0 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-radius: 0 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.header:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}
.header,
.main,
.headband,
.footer,
.main-inner,
.column {
  border-radius: 0 !important;
}
.site-nav-right {
  display: none !important;
}
@media (min-width: 768px) {
  .site-brand-container .site-nav-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-brand-container .site-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: 0;
    width: 35px !important;
    height: 35px !important;
  }
  .site-brand-container .site-nav-toggle .toggle {
    width: 24px !important;
    height: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 0 !important;
  }
  .site-brand-container .site-nav-toggle .toggle .toggle-line {
    background: #000 !important;
    height: 2px !important;
    width: 18px !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    position: relative !important;
    left: 0 !important;
    transform-origin: center !important;
  }
}
.site-nav-toggle .toggle.toggle-close .toggle-line,
.toggle.toggle-close .toggle-line {
  transition: all 0.3s ease !important;
}
.site-nav-toggle .toggle.toggle-close .toggle-line:nth-child(1),
.toggle.toggle-close .toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
  transform-origin: center !important;
}
.site-nav-toggle .toggle.toggle-close .toggle-line:nth-child(2),
.toggle.toggle-close .toggle-line:nth-child(2) {
  opacity: 0 !important;
}
.site-nav-toggle .toggle.toggle-close .toggle-line:nth-child(3),
.toggle.toggle-close .toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
  transform-origin: center !important;
}
.site-brand-container {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .site-brand-container {
    gap: 12px;
  }
  .site-brand-container .site-meta {
    margin-left: 0;
    flex: 1;
    display: flex;
    align-items: center;
  }
  .site-brand-container .site-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.brand {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
}
.brand:hover {
  color: #000 !important;
}
.site-meta .site-title,
.brand .site-title,
h1.site-title {
  color: #000 !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}
.site-meta .site-title:hover,
.brand .site-title:hover,
h1.site-title:hover {
  color: #000 !important;
}
.brand .logo-line,
.logo-line {
  display: none !important;
}
.site-subtitle {
  display: none !important;
}
.site-nav {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
}
.menu {
  background: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
}
.site-nav,
.main-menu,
.menu,
.menu-item {
  background: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.menu-item {
  margin: 0 !important;
  padding: 0 !important;
}
.menu-item:after,
.menu-item:before,
.menu-item + .menu-item:before {
  display: none !important;
  content: none !important;
}
@media (min-width: 768px) {
  .menu-item {
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .menu-item {
    display: block !important;
  }
}
.menu-item a {
  display: inline-block;
  padding: 0.5rem 1rem !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  background-color: #000;
  color: #fff;
  border-color: #000;
  gap: 0 !important;
  position: relative;
  overflow: hidden;
}
.menu-item a i {
  display: none !important;
}
.menu-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.menu-item a:hover::before {
  left: 100%;
}
.menu-item a:hover {
  background-color: #007bff !important;
  color: #fff !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: #007bff !important;
}
.menu-item.menu-item-active a,
.menu-item a.menu-item-active {
  background-color: #007bff !important;
  background: #007bff !important;
  color: #fff !important;
  border-color: #007bff !important;
}
.site-contact-info {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-item i {
  color: #007bff;
}
.mobile-enterprise-info {
  display: none;
  padding: 1rem;
  background: $nf-bg-secondary;
  border-top: 1px solid #e6e6e6;
}
.mobile-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.mobile-contact-item:hover {
  background: #0056b3;
  color: #fff;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.language-switcher select {
  background: transparent;
  border: 1px solid #e6e6e6;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  .site-contact-info.desktop-only {
    display: flex;
  }
  .mobile-enterprise-info.mobile-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 0 1rem !important;
    position: relative !important;
    z-index: 1001 !important;
    margin: 0 !important;
  }
  .header {
    margin-top: 0 !important;
  }
  .site-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    border-radius: 0 0 12px 12px !important;
    z-index: 1000 !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: top center !important;
  }
  .menu {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 1rem !important;
    background: transparent !important;
  }
  .menu-item {
    width: 100% !important;
  }
  .menu-item a {
    display: block !important;
    width: calc(100% - 16px) !important;
    padding: 1rem 1.25rem !important;
    font-size: 0.9rem !important;
    text-align: left !important;
    border-radius: 8px !important;
    margin: 4px 8px !important;
    background: #fff !important;
    color: #333 !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  .menu-item a:hover,
  .menu-item a:active {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(0,123,255,0.2) !important;
    transform: translateY(-1px) !important;
  }
  .menu-item a:active {
    transform: translateY(0) scale(0.98) !important;
  }
  .menu-item.menu-item-active a,
  .menu-item a.menu-item-active,
  .site-nav .menu .menu-item.menu-item-active a,
  .site-nav .menu .menu-item a.menu-item-active {
    background: #2c3e50 !important;
    color: #fff !important;
    border-color: #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44,62,80,0.3) !important;
    font-weight: 600 !important;
  }
  .menu-item.menu-item-active a:hover,
  .menu-item a.menu-item-active:hover,
  .site-nav .menu .menu-item.menu-item-active a:hover,
  .site-nav .menu .menu-item a.menu-item-active:hover {
    background: #34495e !important;
    color: #fff !important;
    border-color: #34495e !important;
  }
  .site-contact-info.desktop-only {
    display: none;
  }
  .mobile-enterprise-info.mobile-only {
    display: block;
  }
}
.main-inner {
  width: 100% !important;
  max-width: none !important;
}
.content-wrap {
  width: 100% !important;
  padding: 0 !important;
}
.post-block {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.post-body {
  margin: 0 !important;
  padding: 0 !important;
}
.enterprise-homepage {
  width: 100%;
  overflow-x: hidden;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: "radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.15) 0%, transparent 50%)";
  z-index: 1;
  animation: nfUpwanTextureFloat 20s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,123,255,0.03) 0%, transparent 70%);
  z-index: 1;
  animation: nfUpwanTextureFloat 15s ease-in-out infinite reverse;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.geometric-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(0,123,255,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,123,255,0.15) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(0,123,255,0.05) 0%, transparent 70%);
  animation: heroAnimation 20s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  animation: nfUpwanHeroEntry 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.hero-content::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: nfUpwanHeroFloat 6s ease-in-out infinite;
  z-index: -1;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-description {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}
.btn-primary:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.btn-outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background-color: transparent;
  color: #007bff;
  border-color: #007bff;
}
.btn-outline:hover {
  background-color: #007bff;
  color: #fff;
}
.btn-outline:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-large {
  padding: 0.5rem 2rem;
  font-size: 1.125rem;
}
.btn-consultation {
  position: relative;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-consultation::after {
  content: '💬';
  margin-left: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  transition: transform 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-consultation:hover {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  color: #fff;
}
.btn-consultation:hover::after {
  transform: scale(1.2) rotate(15deg);
}
.btn-consultation:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.hero-cta .btn.btn-primary,
.hero-cta .btn.btn-outline,
.hero-cta .btn.btn-large,
.cta-buttons .btn.btn-primary,
.cta-buttons .btn.btn-outline,
.cta-buttons .btn.btn-large {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 2.75rem !important;
  min-height: 2.75rem !important;
  max-height: 2.75rem !important;
  line-height: 1 !important;
  vertical-align: top !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border-width: 1px !important;
  border-style: solid !important;
}
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 2.5rem;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  transition: height 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.stat-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.stat-item:hover::before {
  height: 6px;
}
.stat-item:hover::after {
  left: 100%;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #007bff;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,123,255,0.1);
}
.stat-label {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.products-section {
  padding: 4.5rem 0;
  background: #f8f9fa;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.5;
}
.product-module {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4.5rem;
  padding: 0 20px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  overflow: hidden;
}
.product-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.03), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.product-module:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.product-module:hover::before {
  left: 100%;
}
.product-module.reverse {
  direction: rtl;
}
.product-module.reverse > * {
  direction: ltr;
}
.module-content {
  padding: 3rem;
}
.module-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  margin-bottom: 1rem;
  color: #000;
}
.module-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.module-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-radius: 25px;
  font-weight: 500;
  color: #007bff;
  border: 1px solid rgba(0,123,255,0.1);
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,123,255,0.2);
  background: linear-gradient(135deg, #d1ecf1 0%, #e3f2fd 100%);
}
.feature-icon {
  font-size: 1.2rem;
  color: #007bff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-icon i {
  font-size: 1.2rem;
  color: #007bff;
}
.node-icon {
  font-size: 1.5rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.cloud-icon {
  font-size: 1.2rem;
  color: #007bff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cloud-icon i {
  font-size: 1.2rem;
  color: #007bff;
}
.shield-icon {
  font-size: 2rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shield-icon i {
  font-size: 2rem;
  color: #fff;
}
.user-icon {
  font-size: 2rem;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.user-icon i {
  font-size: 2rem;
  color: #333;
}
.person-avatar {
  font-size: 6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.person-avatar i {
  font-size: 6rem;
  color: #fff;
}
.network-diagram {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  overflow: hidden;
}
.network-diagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(240,244,248,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: backgroundGlow 6s ease-in-out infinite alternate;
  z-index: 0;
}
.network-diagram::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(156,163,175,0.2);
  border-radius: 50%;
  animation: rotateConnection 30s linear infinite;
  z-index: 1;
}
.network-diagram .data-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(107,114,128,0.6);
  border-radius: 50%;
  animation: dataFlow 2.5s ease-in-out infinite;
  z-index: 1;
}
.network-diagram .data-particle:nth-child(1) {
  top: 25%;
  left: 50%;
  animation-delay: 0s;
}
.network-diagram .data-particle:nth-child(2) {
  top: 50%;
  left: 75%;
  animation-delay: 1s;
}
.network-diagram .data-particle:nth-child(3) {
  top: 75%;
  left: 50%;
  animation-delay: 2s;
}
.network-diagram .data-particle:nth-child(4) {
  top: 50%;
  left: 25%;
  animation-delay: 3s;
}
.node {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: nodePulse 4s ease-in-out infinite;
}
.node:hover {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,123,255,0.3), 0 4px 12px rgba(0,123,255,0.15), 0 2px 4px rgba(0,0,0,0.1);
}
.node-icon {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.node-icon i {
  font-size: inherit;
  color: inherit;
}
.center-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 2;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,123,255,0.25), 0 2px 8px rgba(0,0,0,0.1);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.center-node .node-icon {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.center-node .node-icon i {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.center-node:hover {
  border-color: #fff;
  box-shadow: 0 8px 30px rgba(0,123,255,0.35), 0 4px 12px rgba(0,0,0,0.15);
}
.node-1 {
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  color: #28a745;
  border: 2px solid rgba(40,167,69,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.node-1 .node-icon {
  color: #28a745;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-1 .node-icon i {
  color: #28a745;
  font-size: 1.3rem;
}
.node-1:hover {
  border-color: rgba(40,167,69,0.3);
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow: 0 8px 25px rgba(40,167,69,0.2), 0 4px 12px rgba(0,0,0,0.1);
}
.node-2 {
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  color: #fd7e14;
  border: 2px solid rgba(253,126,20,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.node-2 .node-icon {
  color: #fd7e14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-2 .node-icon i {
  color: #fd7e14;
  font-size: 1.3rem;
}
.node-2:hover {
  border-color: rgba(253,126,20,0.3);
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow: 0 8px 25px rgba(253,126,20,0.2), 0 4px 12px rgba(0,0,0,0.1);
}
.node-3 {
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  color: #6f42c1;
  border: 2px solid rgba(111,66,193,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.node-3 .node-icon {
  color: #6f42c1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-3 .node-icon i {
  color: #6f42c1;
  font-size: 1.3rem;
}
.node-3:hover {
  border-color: rgba(111,66,193,0.3);
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow: 0 8px 25px rgba(111,66,193,0.2), 0 4px 12px rgba(0,0,0,0.1);
}
.node-4 {
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  color: #495057;
  border: 2px solid rgba(73,80,87,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.node-4 .node-icon {
  color: #495057;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-4 .node-icon i {
  color: #495057;
  font-size: 1.3rem;
}
.node-4:hover {
  border-color: rgba(73,80,87,0.3);
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  box-shadow: 0 8px 25px rgba(73,80,87,0.2), 0 4px 12px rgba(0,0,0,0.1);
}
.mixconnect-diagram {
  position: relative;
  width: 400px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network-topology-svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 300px;
}
@media (max-width: 767px) {
  .network-topology-svg {
    max-width: 350px;
    max-height: 260px;
  }
}
.svg-node {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}
.svg-node:hover rect {
  filter: url("#shadow") brightness(1.1);
}
.svg-node:hover text {
  font-weight: 700;
}
.center-node:hover {
  transform: translate(200px, 150px) scale(1.05) !important;
}
.game-node:hover {
  transform: translate(320px, 80px) scale(1.05) !important;
}
.trading-node:hover {
  transform: translate(80px, 220px) scale(1.05) !important;
}
.connection-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2s ease-in-out forwards;
}
.connection-path:nth-child(1) {
  animation-delay: 0.3s;
}
.connection-path:nth-child(2) {
  animation-delay: 0.6s;
}
.center-node {
  animation: fadeInCenter 1s ease-out 0.5s both;
}
.game-node {
  animation: fadeInFromTop 1s ease-out 0.8s both;
}
.trading-node {
  animation: fadeInFromBottom 1s ease-out 1.1s both;
}
.center-node rect {
  animation: pulse 3s ease-in-out infinite;
}
@media (prefers-contrast: high) {
  .network-topology-svg rect {
    stroke: currentColor;
    stroke-width: 2;
  }
  .network-topology-svg .connection-path {
    stroke: currentColor;
    stroke-width: 4;
  }
}
@media (prefers-reduced-motion: reduce) {
  .svg-node,
  .connection-path {
    animation: none !important;
    transition: none !important;
  }
  .center-node:hover,
  .game-node:hover,
  .trading-node:hover {
    transform: none !important;
  }
}
.cases-page {
  width: 100%;
  overflow-x: hidden;
}
.cases-preview-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.cases-preview-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.preview-stat {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.preview-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.preview-description {
  text-align: center;
}
.preview-description p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.preview-cta {
  margin-top: 2rem;
}
.cases-overview {
  padding: 4rem 0;
  background: #f8f9fa;
}
.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 2.5rem;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  transition: height 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.stat-card:hover::before {
  height: 6px;
}
.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #007bff;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,123,255,0.1);
}
.stat-card .stat-label {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.industry-cases {
  padding: 6rem 0;
  background: #fff;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2.5rem;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.case-card:hover::before {
  left: 100%;
}
.case-card.featured {
  border-left: 4px solid #007bff;
}
.case-card.featured .case-header .case-category {
  background: #007bff;
  color: #fff;
}
.case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.case-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  border-radius: 50%;
}
.case-category {
  background: #f8f9fa;
  color: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.case-description {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.case-description p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}
.case-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.highlight-item {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-radius: 8px;
}
.highlight-item .highlight-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.highlight-item .highlight-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
}
.case-details {
  position: relative;
  z-index: 2;
}
.case-details h4 {
  color: #007bff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}
.case-details h4:first-child {
  margin-top: 0;
}
.case-details p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.case-details ul {
  margin: 0.5rem 0 1rem 1rem;
}
.case-details ul li {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.customer-feedback {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.feedback-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2.5rem;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
}
.feedback-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: #007bff;
  opacity: 0.3;
  font-family: serif;
}
.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.feedback-content {
  margin-bottom: 2rem;
}
.feedback-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.feedback-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-info .author-name {
  font-weight: 600;
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.author-info .author-title {
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  .cases-preview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .case-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .preview-stats {
    grid-template-columns: 1fr;
  }
  .overview-stats {
    grid-template-columns: 1fr;
  }
  .case-highlights {
    grid-template-columns: 1fr;
  }
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 1.5rem;
  }
  .case-highlights {
    grid-template-columns: 1fr;
  }
}
.module-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.module-stats .stat-item {
  padding: 1.25rem 1.3rem;
  background: $nf-bg-primary;
  border-radius: 8px;
  box-shadow: $nf-shadow-light;
  text-align: center;
  min-height: 4rem;
  min-width: 130px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.module-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.module-stats .stat-label {
  font-size: 0.875rem;
  color: $nf-text-secondary;
  line-height: 1.3;
  font-weight: 500;
}
.cloud-features {
  display: flex;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.cloud-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-radius: 25px;
  font-weight: 500;
  color: #007bff;
  border: 1px solid rgba(0,123,255,0.1);
  transition: all 0.3s ease;
}
.cloud-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,123,255,0.15);
  border-color: rgba(0,123,255,0.3);
}
.cloud-icon {
  font-size: 1.2rem;
}
.cloud-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-mockup {
  width: 320px;
  height: 220px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,123,255,0.12), 0 4px 16px rgba(0,123,255,0.08);
  border: 1px solid rgba(0,123,255,0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dashboard-mockup:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0,123,255,0.18), 0 8px 24px rgba(0,123,255,0.12);
}
.dashboard-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,123,255,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.dashboard-header::before {
  content: '⚡';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.dashboard-content {
  padding: 1.1rem 1.25rem 0.25rem 1.25rem;
  background: rgba(248,249,250,0.5);
}
.chart-area {
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,123,255,0.08);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,123,255,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}
.chart-area:hover {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-color: rgba(0,123,255,0.15);
  box-shadow: inset 0 2px 4px rgba(0,123,255,0.08), 0 2px 8px rgba(0,123,255,0.1);
}
.chart-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0,123,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,123,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: -1px -1px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.chart-area:hover::before {
  opacity: 0.8;
}
.chart-svg {
  position: absolute;
  top: 10px;
  left: 120px;
  width: 140px;
  height: 60px;
  z-index: 5;
  transition: all 0.3s ease;
}
.chart-svg:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(0,123,255,0.15));
}
.chart-svg path {
  transition: all 0.3s ease;
}
.chart-svg circle {
  transition: all 0.3s ease;
}
.chart-svg circle:hover {
  r: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.chart-bar {
  position: absolute;
  bottom: 8px;
  left: 32px;
  width: 8px;
  height: 40px;
  background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 3px 10px rgba(0,123,255,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 2;
}
.chart-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  width: 8px;
  height: 30px;
  background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 3px 10px rgba(40,167,69,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 2;
}
.chart-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 8px;
  height: 20px;
  background: linear-gradient(180deg, #ffc107 0%, #e0a800 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 3px 10px rgba(255,193,7,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 2;
}
.status-indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.indicator {
  padding: 0.4rem 0.8rem 0.4rem 1.1rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}
.indicator::before {
  content: '●';
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: #dc3545;
  transition: all 0.3s ease;
}
.indicator:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  border-color: #007bff;
}
.indicator.active {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border-color: #28a745;
  box-shadow: 0 3px 12px rgba(40,167,69,0.15), 0 1px 4px rgba(40,167,69,0.1);
}
.indicator.active::before {
  color: #28a745;
  animation: statusPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(40,167,69,0.3));
}
.indicator.active:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40,167,69,0.2), 0 2px 8px rgba(40,167,69,0.15);
}
.zerotrust-diagram {
  position: relative;
  width: 250px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.zerotrust-diagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(156,163,175,0.3);
  border-radius: 50%;
  animation: rippleExpand 3s ease-out infinite;
  z-index: 1;
}
.zerotrust-diagram::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(156,163,175,0.2);
  border-radius: 50%;
  animation: rippleExpand 3s ease-out infinite 1.5s;
  z-index: 1;
}
.zerotrust-diagram .security-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(75,85,99,0.5);
  border-radius: 50%;
  animation: particleFloat 5s ease-in-out infinite;
  z-index: 2;
}
.zerotrust-diagram .security-particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.zerotrust-diagram .security-particle:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}
.zerotrust-diagram .security-particle:nth-child(3) {
  bottom: 20%;
  left: 25%;
  animation-delay: 2s;
}
.zerotrust-diagram .security-particle:nth-child(4) {
  bottom: 25%;
  right: 20%;
  animation-delay: 3s;
}
.security-shield {
  position: relative;
  z-index: 4;
  padding: 1.5rem;
  background: $nf-gradient-primary;
  color: $nf-text-light;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: $nf-shadow-medium;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.security-shield:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,123,255,0.4), 0 0 40px rgba(0,123,255,0.3);
}
.security-shield::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: backgroundGlow 2s ease-in-out infinite alternate;
}
.shield-icon {
  font-size: 2rem;
}
.user-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  background: $nf-bg-primary;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: $nf-shadow-light;
}
.security-layers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.layer {
  position: absolute;
  border: 2px solid #007bff;
  border-radius: 50%;
  opacity: 0.3;
  animation: securityPulse 4s ease-in-out infinite;
  transition: all 0.3s ease;
}
.layer-1 {
  width: 120px;
  height: 120px;
  top: -60px;
  left: -60px;
  animation-delay: 0s;
}
.layer-2 {
  width: 160px;
  height: 160px;
  top: -80px;
  left: -80px;
  animation-delay: 1.3s;
}
.layer-3 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation-delay: 2.6s;
}
.security-features {
  display: flex;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.enterprise-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.enterprise-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}
.enterprise-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.business-person {
  position: relative;
}
.person-avatar {
  font-size: 6rem;
  background: $nf-gradient-primary;
  color: $nf-text-light;
  padding: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: $nf-shadow-heavy;
}
.speech-bubble {
  position: absolute;
  top: -20px;
  right: -40px;
  background: $nf-accent-color;
  color: $nf-text-light;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: $nf-shadow-medium;
}
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid $nf-accent-color;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: #0056b3;
}
.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #007bff;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
.feature-card .feature-icon i {
  font-size: 3rem;
  color: #007bff;
}
.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.feature-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,123,255,0.05) 0%, transparent 50%);
  animation: nfUpwanCtaFloat 15s ease-in-out infinite;
  z-index: 1;
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-section .btn-primary {
  background: #fff;
  color: #007bff;
  border-color: #fff;
}
.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  color: #007bff;
  transform: translateY(-2px);
}
.cta-section .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cta-section .btn-outline:hover {
  background: #fff;
  color: #007bff;
  transform: translateY(-2px);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,123,255,0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0,123,255,0.1);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.value-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: rgba(0,123,255,0.3);
}
.value-item:hover::before {
  left: 100%;
}
.value-item:hover .value-icon {
  transform: scale(1.2);
}
.value-item .value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
.value-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.value-item p {
  color: #333;
  line-height: 1.6;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}
.mission-statement {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.mission-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.mission-statement:hover::before {
  left: 100%;
}
.mission-statement strong {
  position: relative;
  z-index: 2;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,123,255,0.1);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: rgba(0,123,255,0.3);
}
.contact-item .contact-icon {
  font-size: 2rem;
  color: #007bff;
  min-width: 2rem;
}
.contact-item .contact-details {
  flex: 1;
}
.contact-item .contact-details strong {
  color: #007bff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  display: block;
}
@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .value-item {
    padding: 1.5rem;
  }
  .value-item .value-icon {
    font-size: 2.5rem;
  }
  .value-item h4 {
    font-size: 1.3rem;
  }
  .value-item p {
    font-size: 1rem;
  }
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-item {
    padding: 1rem;
  }
  .contact-item .contact-icon {
    font-size: 1.5rem;
  }
  .contact-item .contact-details strong {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .values-grid {
    gap: 1rem;
  }
  .value-item {
    padding: 1rem;
  }
  .value-item .value-icon {
    font-size: 2rem;
  }
  .value-item h4 {
    font-size: 1.2rem;
  }
  .value-item p {
    font-size: 0.9rem;
  }
  .mission-statement {
    padding: 1rem;
    font-size: 1rem;
  }
}
.about-page {
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 50%, #fff 100%) !important;
  min-height: 100vh !important;
  padding: 2rem 0 !important;
}
.about-content-wrapper {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  overflow: hidden !important;
  position: relative !important;
}
.about-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  z-index: 1;
}
body .post-body .stats-grid,
body .content .stats-grid,
.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  margin: 3rem 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body .post-body .stats-grid .stat-item,
body .content .stats-grid .stat-item,
.stats-grid .stat-item {
  background: #fff !important;
  border: 1px solid rgba(0,123,255,0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  padding: 2.5rem !important;
  text-align: center !important;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
body .post-body .stats-grid .stat-item::before,
body .content .stats-grid .stat-item::before,
.stats-grid .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  transition: height 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
body .post-body .stats-grid .stat-item::after,
body .content .stats-grid .stat-item::after,
.stats-grid .stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
  transition: left 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
body .post-body .stats-grid .stat-item:hover,
body .content .stats-grid .stat-item:hover,
.stats-grid .stat-item:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2) !important;
  border-color: rgba(0,123,255,0.3) !important;
}
body .post-body .stats-grid .stat-item:hover::before,
body .content .stats-grid .stat-item:hover::before,
.stats-grid .stat-item:hover::before {
  height: 6px;
}
body .post-body .stats-grid .stat-item:hover::after,
body .content .stats-grid .stat-item:hover::after,
.stats-grid .stat-item:hover::after {
  left: 100%;
}
body .post-body .stats-grid .stat-number,
body .content .stats-grid .stat-number,
.stats-grid .stat-number {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #0056b3 !important;
  display: block !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.25 !important;
}
body .post-body .stats-grid .stat-label,
body .content .stats-grid .stat-label,
.stats-grid .stat-label {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 0.5rem !important;
}
body .post-body .stats-grid .stat-description,
body .content .stats-grid .stat-description,
.stats-grid .stat-description {
  font-size: 1rem !important;
  color: #666 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
body .post-body h3[id*="专业专注"],
body .post-body h3[id*="全球视野"],
body .post-body h3[id*="极致性能"],
body .post-body h3[id*="安全可靠"],
body .post-body h3[id*="持续创新"] {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  color: #fff !important;
  padding: 1.5rem 2rem !important;
  border-radius: 16px 16px 0 0 !important;
  margin-bottom: 0 !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}
body .post-body h3[id*="专业专注"]::before,
body .post-body h3[id*="全球视野"]::before,
body .post-body h3[id*="极致性能"]::before,
body .post-body h3[id*="安全可靠"]::before,
body .post-body h3[id*="持续创新"]::before {
  content: '✨';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
  animation: nfUpwanIconFloat 3s ease-in-out infinite;
}
body .post-body h3[id*="专业专注"] + p,
body .post-body h3[id*="全球视野"] + p,
body .post-body h3[id*="极致性能"] + p,
body .post-body h3[id*="安全可靠"] + p,
body .post-body h3[id*="持续创新"] + p {
  background: #fff !important;
  padding: 2rem 2rem 2.5rem 2rem !important;
  margin: 0 0 2.5rem 0 !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(0,123,255,0.1) !important;
  border-top: none !important;
  line-height: 1.8 !important;
  font-size: 1.1rem !important;
  color: #333 !important;
  position: relative !important;
}
body .post-body h3[id*="专业专注"] + p::before,
body .post-body h3[id*="全球视野"] + p::before,
body .post-body h3[id*="极致性能"] + p::before,
body .post-body h3[id*="安全可靠"] + p::before,
body .post-body h3[id*="持续创新"] + p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(0,123,255,0.1), rgba(0,123,255,0.3), rgba(0,123,255,0.1));
  border-radius: 0 0 16px 16px;
}
body .post-body h3[id*="全球网络覆盖"],
body .post-body h3[id*="基础设施实力"],
body .post-body h3[id*="专业团队"] {
  background: linear-gradient(135deg, #007bff 0%, #17a2b8 100%) !important;
  padding: 1.5rem 2rem !important;
  border-left: 6px solid #007bff !important;
  margin: 2.5rem 0 1rem 0 !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #007bff !important;
  border-radius: 16px !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 1px 2px rgba(0,123,255,0.1) !important;
}
body .post-body h3[id*="全球网络覆盖"]::before,
body .post-body h3[id*="基础设施实力"]::before,
body .post-body h3[id*="专业团队"]::before {
  content: '⚡';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  opacity: 0.7;
  animation: nfUpwanTechFloat 4s ease-in-out infinite;
}
body .post-body h3[id*="全球网络覆盖"]::after,
body .post-body h3[id*="基础设施实力"]::after,
body .post-body h3[id*="专业团队"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
body .post-body h3[id*="全球网络覆盖"]:hover::after,
body .post-body h3[id*="基础设施实力"]:hover::after,
body .post-body h3[id*="专业团队"]:hover::after {
  left: 100%;
}
body .post-body h3[id*="全球网络覆盖"] + ul,
body .post-body h3[id*="基础设施实力"] + ul,
body .post-body h3[id*="专业团队"] + ul {
  background: #fff !important;
  padding: 2rem 2rem 2.5rem 2rem !important;
  margin: 0 0 2.5rem 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(0,123,255,0.1) !important;
  position: relative !important;
}
body .post-body h3[id*="全球网络覆盖"] + ul::before,
body .post-body h3[id*="基础设施实力"] + ul::before,
body .post-body h3[id*="专业团队"] + ul::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(0,123,255,0.1), rgba(0,123,255,0.3), rgba(0,123,255,0.1));
  border-radius: 0 0 16px 16px;
}
body .post-body h3[id*="全球网络覆盖"] + ul li,
body .post-body h3[id*="基础设施实力"] + ul li,
body .post-body h3[id*="专业团队"] + ul li {
  padding: 0.8rem 0 !important;
  border-bottom: 1px solid rgba(0,123,255,0.1) !important;
  color: #333 !important;
  font-size: 1.1rem !important;
  position: relative !important;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1) !important;
}
body .post-body h3[id*="全球网络覆盖"] + ul li::before,
body .post-body h3[id*="基础设施实力"] + ul li::before,
body .post-body h3[id*="专业团队"] + ul li::before {
  content: '◆';
  position: absolute;
  left: -1rem;
  color: #007bff;
  font-size: 0.8rem;
  opacity: 0.6;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1);
}
body .post-body h3[id*="全球网络覆盖"] + ul li:hover,
body .post-body h3[id*="基础设施实力"] + ul li:hover,
body .post-body h3[id*="专业团队"] + ul li:hover {
  color: #007bff !important;
  padding-left: 1rem !important;
}
body .post-body h3[id*="全球网络覆盖"] + ul li:hover::before,
body .post-body h3[id*="基础设施实力"] + ul li:hover::before,
body .post-body h3[id*="专业团队"] + ul li:hover::before {
  left: 0;
  opacity: 1;
  transform: scale(1.2);
}
body .post-body h3[id*="全球网络覆盖"] + ul li:last-child,
body .post-body h3[id*="基础设施实力"] + ul li:last-child,
body .post-body h3[id*="专业团队"] + ul li:last-child {
  border-bottom: none !important;
}
body .post-body h3[id*="服务等级"],
body .post-body h3[id*="安全保障"],
body .post-body h3[id*="客户支持"] {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: #fff !important;
  padding: 1.5rem 2rem !important;
  border-radius: 16px 16px 0 0 !important;
  margin: 2.5rem 0 0 0 !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}
body .post-body h3[id*="服务等级"]::before,
body .post-body h3[id*="安全保障"]::before,
body .post-body h3[id*="客户支持"]::before {
  content: '🛡️';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
  animation: nfUpwanSecurityFloat 3s ease-in-out infinite;
}
body .post-body h3[id*="服务等级"]::after,
body .post-body h3[id*="安全保障"]::after,
body .post-body h3[id*="客户支持"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
body .post-body h3[id*="服务等级"]:hover::after,
body .post-body h3[id*="安全保障"]:hover::after,
body .post-body h3[id*="客户支持"]:hover::after {
  left: 100%;
}
body .post-body h3[id*="服务等级"] + ul,
body .post-body h3[id*="安全保障"] + ul,
body .post-body h3[id*="客户支持"] + ul {
  background: #fff !important;
  padding: 2rem 2rem 2.5rem 2rem !important;
  margin: 0 0 2.5rem 0 !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(40,167,69,0.1) !important;
  border-top: none !important;
  position: relative !important;
}
body .post-body h3[id*="服务等级"] + ul::before,
body .post-body h3[id*="安全保障"] + ul::before,
body .post-body h3[id*="客户支持"] + ul::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(40,167,69,0.1), rgba(40,167,69,0.3), rgba(40,167,69,0.1));
  border-radius: 0 0 16px 16px;
}
body .post-body h3[id*="服务等级"] + ul li,
body .post-body h3[id*="安全保障"] + ul li,
body .post-body h3[id*="客户支持"] + ul li {
  padding: 0.8rem 0 !important;
  border-bottom: 1px solid rgba(40,167,69,0.1) !important;
  color: #333 !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  position: relative !important;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1) !important;
}
body .post-body h3[id*="服务等级"] + ul li::before,
body .post-body h3[id*="安全保障"] + ul li::before,
body .post-body h3[id*="客户支持"] + ul li::before {
  content: '✓';
  position: absolute;
  left: -1rem;
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.6;
  transition: all 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1);
}
body .post-body h3[id*="服务等级"] + ul li:hover,
body .post-body h3[id*="安全保障"] + ul li:hover,
body .post-body h3[id*="客户支持"] + ul li:hover {
  color: #28a745 !important;
  padding-left: 1rem !important;
}
body .post-body h3[id*="服务等级"] + ul li:hover::before,
body .post-body h3[id*="安全保障"] + ul li:hover::before,
body .post-body h3[id*="客户支持"] + ul li:hover::before {
  left: 0;
  opacity: 1;
  transform: scale(1.2);
}
body .post-body h3[id*="服务等级"] + ul li:last-child,
body .post-body h3[id*="安全保障"] + ul li:last-child,
body .post-body h3[id*="客户支持"] + ul li:last-child {
  border-bottom: none !important;
}
body .post-body h2[id*="公司简介"],
body .post-body h2[id*="我们的使命"],
body .post-body h2[id*="核心价值观"],
body .post-body h2[id*="业务数据"],
body .post-body h2[id*="技术优势"],
body .post-body h2[id*="服务保障"],
body .post-body h2[id*="联系我们"] {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: 2rem 2.5rem !important;
  margin: 4rem 0 2.5rem 0 !important;
  border-left: 6px solid #007bff !important;
  border-radius: 16px !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #007bff !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  position: relative !important;
  overflow: hidden !important;
  text-shadow: 0 2px 4px rgba(0,123,255,0.1) !important;
}
body .post-body h2[id*="公司简介"]::before,
body .post-body h2[id*="我们的使命"]::before,
body .post-body h2[id*="核心价值观"]::before,
body .post-body h2[id*="业务数据"]::before,
body .post-body h2[id*="技术优势"]::before,
body .post-body h2[id*="服务保障"]::before,
body .post-body h2[id*="联系我们"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
body .post-body h2[id*="公司简介"]:hover::before,
body .post-body h2[id*="我们的使命"]:hover::before,
body .post-body h2[id*="核心价值观"]:hover::before,
body .post-body h2[id*="业务数据"]:hover::before,
body .post-body h2[id*="技术优势"]:hover::before,
body .post-body h2[id*="服务保障"]:hover::before,
body .post-body h2[id*="联系我们"]:hover::before {
  left: 100%;
}
body[class*="about"] .main-inner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  min-height: 100vh !important;
  padding: 2rem 0 !important;
  position: relative !important;
}
body[class*="about"] .main-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,123,255,0.05) 0%, transparent 50%);
  animation: nfUpwanPageFloat 20s ease-in-out infinite;
  z-index: 1;
}
body[class*="about"] .main-inner .post-body {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  overflow: hidden;
}
body[class*="about"] .main-inner .post-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  z-index: 1;
}
body .post-body p {
  line-height: 1.8 !important;
  margin-bottom: 2rem !important;
  color: #333 !important;
  font-size: 1.15rem !important;
  position: relative !important;
}
body .post-body p::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,123,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.2s ease-out cubic-bezier(0.4, 0, 0.2, 1);
}
body .post-body p:hover::before {
  opacity: 1;
}
body .post-body img {
  border-radius: 16px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  margin: 3rem 0 !important;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid rgba(0,123,255,0.1) !important;
}
body .post-body img:hover {
  transform: scale(1.03) translateY(-5px) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2) !important;
  border-color: rgba(0,123,255,0.3) !important;
}
body .post-body h2[id*="联系我们"] + p {
  background: #fff !important;
  padding: 2.5rem !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(0,123,255,0.1) !important;
  font-size: 1.2rem !important;
  line-height: 2 !important;
  position: relative !important;
  overflow: hidden !important;
}
body .post-body h2[id*="联系我们"] + p::before {
  content: '📧';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: nfUpwanContactFloat 4s ease-in-out infinite;
}
body .post-body h2[id*="联系我们"] + p::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
body .post-body h2[id*="联系我们"] + p:hover::after {
  left: 100%;
}
body .post-body h2[id*="联系我们"] + p + p {
  background: #007bff !important;
  color: #fff !important;
  padding: 2rem !important;
  border-radius: 12px !important;
  margin: 1rem 0 !important;
  font-weight: 500 !important;
  text-align: center !important;
}
body .post-body h2[id*="联系我们"] + p + p + p {
  background: #f8f9fa !important;
  padding: 2rem !important;
  border-radius: 12px !important;
  border-left: 4px solid #28a745 !important;
  font-style: italic !important;
  color: #495057 !important;
}
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%) !important;
  text-align: center !important;
  margin-bottom: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,123,255,0.1) 0%, transparent 50%);
  animation: heroFloat 15s ease-in-out infinite;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-description {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.5;
}
.section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  padding: 0 20px;
}
body .post-body .service-card,
body .content .service-card,
.service-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  padding: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
}
body .post-body .service-card:hover,
body .content .service-card:hover,
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
body .post-body .service-card::before,
body .content .service-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
  transition: left 0.5s ease;
}
body .post-body .service-card:hover::before,
body .content .service-card:hover::before,
.service-card:hover::before {
  left: 100%;
}
body .post-body .service-card:hover,
body .content .service-card:hover,
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 25px rgba(0,0,0,0.15) !important;
  border-color: #007bff !important;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  margin-bottom: 1rem;
}
.service-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.service-features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-features {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-group h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 1rem;
}
.feature-group ul {
  list-style: none;
  padding: 0;
}
.feature-group li {
  padding: 0.5rem 0;
  color: #333;
  border-bottom: 1px solid #e6e6e6;
}
.feature-group li:last-child {
  border-bottom: none;
}
.industry-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.industry-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  padding: 2rem;
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-5px);
}
.project-cases .case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2.5rem;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  overflow: hidden;
}
.project-cases .case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.05), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.project-cases .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.project-cases .case-card:hover::before {
  left: 100%;
}
.industry-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  margin-bottom: 1rem;
}
.industry-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.industry-features {
  list-style: none;
  padding: 0;
}
.industry-features li {
  padding: 0.5rem 0;
  color: #333;
  border-bottom: 1px solid #e6e6e6;
}
.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.case-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}
.case-tag {
  background: #007bff;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.case-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.case-results {
  display: flex;
  gap: 2rem;
}
.case-result {
  text-align: center;
}
.result-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #007bff;
  display: block;
}
.result-label {
  font-size: 0.875rem;
  color: #666;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  gap: 3rem;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.support-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.support-card:hover {
  transform: translateY(-5px);
}
.support-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.support-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  margin-bottom: 1rem;
}
.support-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.support-features {
  list-style: none;
  padding: 0;
  text-align: left;
}
.support-features li {
  padding: 0.5rem 0;
  color: #333;
  border-bottom: 1px solid #e6e6e6;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.upwan-scroll-fade {
  animation: nfUpwanScrollFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.upwan-scroll-slide-left {
  animation: nfUpwanScrollSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.upwan-scroll-slide-right {
  animation: nfUpwanScrollSlideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.upwan-delay-1 {
  animation-delay: 0.1s;
}
.upwan-delay-2 {
  animation-delay: 0.2s;
}
.upwan-delay-3 {
  animation-delay: 0.3s;
}
.upwan-delay-4 {
  animation-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-content,
  .btn,
  .menu-item a,
  .stat-item,
  .feature-card,
  .product-module {
    animation: none !important;
    transition: opacity 0.1s ease !important;
  }
  .hero-content:hover,
  .btn:hover,
  .menu-item a:hover,
  .stat-item:hover,
  .feature-card:hover,
  .product-module:hover {
    transition: opacity 0.1s ease !important;
  }
}
@media (prefers-contrast: high) {
  .hero-section,
  .product-module,
  .stat-item,
  .feature-card {
    border: 2px solid currentColor !important;
    box-shadow: none !important;
  }
  .btn,
  .menu-item a {
    border: 2px solid currentColor !important;
    box-shadow: none !important;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .stats-container,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-module {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-module.reverse {
    direction: ltr;
  }
  .enterprise-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .module-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .industry-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .case-results {
    flex-direction: column;
    gap: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1.125rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  .module-stats {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .cta-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  body .post-body .stats-grid,
  body .content .stats-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
  }
  body .post-body .stats-grid .stat-item,
  body .content .stats-grid .stat-item,
  .stats-grid .stat-item {
    padding: 2rem !important;
  }
  body .post-body h2[id*="公司简介"],
  body .post-body h2[id*="我们的使命"],
  body .post-body h2[id*="核心价值观"],
  body .post-body h2[id*="业务数据"],
  body .post-body h2[id*="技术优势"],
  body .post-body h2[id*="服务保障"],
  body .post-body h2[id*="联系我们"] {
    font-size: 1.8rem !important;
    padding: 1.5rem !important;
    margin: 2rem 0 1.5rem 0 !important;
  }
  body .post-body h3[id*="专业专注"],
  body .post-body h3[id*="全球视野"],
  body .post-body h3[id*="极致性能"],
  body .post-body h3[id*="安全可靠"],
  body .post-body h3[id*="持续创新"] {
    font-size: 1.4rem !important;
    padding: 1rem 1.5rem !important;
  }
  body .post-body h3[id*="全球网络覆盖"],
  body .post-body h3[id*="基础设施实力"],
  body .post-body h3[id*="专业团队"] {
    font-size: 1.4rem !important;
    padding: 1rem 1.5rem !important;
  }
  body .post-body h3[id*="服务等级"],
  body .post-body h3[id*="安全保障"],
  body .post-body h3[id*="客户支持"] {
    font-size: 1.3rem !important;
    padding: 1rem 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .about-content-wrapper {
    margin: 0 10px !important;
    border-radius: 16px !important;
  }
  body[class*="about"] .main-inner {
    padding: 1rem 0 !important;
  }
  body .post-body .stats-grid .stat-item,
  body .content .stats-grid .stat-item,
  .stats-grid .stat-item {
    padding: 1.5rem !important;
  }
  body .post-body .stats-grid .stat-number,
  body .content .stats-grid .stat-number,
  .stats-grid .stat-number {
    font-size: 1.8rem !important;
  }
  body .post-body .stats-grid .stat-label,
  body .content .stats-grid .stat-label,
  .stats-grid .stat-label {
    font-size: 1.1rem !important;
  }
  body .post-body h2[id*="公司简介"],
  body .post-body h2[id*="我们的使命"],
  body .post-body h2[id*="核心价值观"],
  body .post-body h2[id*="业务数据"],
  body .post-body h2[id*="技术优势"],
  body .post-body h2[id*="服务保障"],
  body .post-body h2[id*="联系我们"] {
    font-size: 1.6rem !important;
    padding: 1rem 1.5rem !important;
    margin: 1.5rem 0 1rem 0 !important;
  }
}
/* 隐藏面包屑导航 */
.breadcrumb,
ul.breadcrumb {
  display: none !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.contact-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  padding: 2.5rem;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,123,255,0.08);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.03), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.contact-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
}
.contact-card:hover::before {
  left: 100%;
}
.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #333;
  margin-bottom: 1rem;
  color: #000;
  position: relative;
  z-index: 2;
}
.contact-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.contact-info {
  text-align: left;
  position: relative;
  z-index: 2;
}
.info-item {
  margin-bottom: 1rem;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-label {
  font-weight: 600;
  color: #333;
  margin-right: 0.5rem;
}
.info-value {
  color: #666;
  line-height: 1.4;
}
.partner-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,123,255,0.08);
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 1000px;
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.partner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.03), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.partner-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: rgba(0,123,255,0.15);
}
.partner-content:hover::before {
  left: 100%;
}
.partner-description {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.partner-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .partner-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .partner-types {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.partner-type {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid rgba(0,123,255,0.1);
  transition: all 0.3s ease;
  position: relative;
}
.partner-type h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}
.partner-type p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}
.partner-type:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,123,255,0.15);
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-color: rgba(0,123,255,0.2);
}
.partner-type:nth-child(1) {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-color: rgba(0,123,255,0.12);
}
.partner-type:nth-child(1):hover {
  background: linear-gradient(135deg, #d1ecf1 0%, #e3f2fd 100%);
  border-color: rgba(0,123,255,0.25);
  box-shadow: 0 6px 16px rgba(0,123,255,0.18);
}
.partner-type:nth-child(2) {
  background: linear-gradient(135deg, #e0f2f1 0%, #f1f8e9 100%);
  border-color: rgba(0,150,136,0.12);
}
.partner-type:nth-child(2):hover {
  background: linear-gradient(135deg, #b2dfdb 0%, #e0f2f1 100%);
  border-color: rgba(0,150,136,0.25);
  box-shadow: 0 6px 16px rgba(0,150,136,0.18);
}
.partner-type:nth-child(3) {
  background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
  border-color: rgba(156,39,176,0.12);
}
.partner-type:nth-child(3):hover {
  background: linear-gradient(135deg, #e1bee7 0%, #f3e5f5 100%);
  border-color: rgba(156,39,176,0.25);
  box-shadow: 0 6px 16px rgba(156,39,176,0.18);
}
.partner-type:nth-child(4) {
  background: linear-gradient(135deg, #fff3e0 0%, #fafafa 100%);
  border-color: rgba(255,152,0,0.12);
}
.partner-type:nth-child(4):hover {
  background: linear-gradient(135deg, #ffe0b2 0%, #fff3e0 100%);
  border-color: rgba(255,152,0,0.25);
  box-shadow: 0 6px 16px rgba(255,152,0,0.18);
}
.partner-cta {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0,123,255,0.08);
  position: relative;
  z-index: 2;
}
.partner-cta p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.partner-cta .btn.btn-large {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-radius: 0.375rem !important;
  transition: all 0.3s ease !important;
  margin-top: 0.5rem !important;
  background-color: #007bff !important;
  color: #fff !important;
  border: 1px solid #007bff !important;
  border-style: solid !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  line-height: 1.4 !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  vertical-align: baseline !important;
}
.partner-cta .btn.btn-large:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}
.partner-cta .btn.btn-large:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,123,255,0.25) !important;
  background-color: #0056b3 !important;
  border-color: #0056b3 !important;
  color: #fff !important;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,123,255,0.08);
  transition: all 0.3s ease;
  position: relative;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: rgba(0,123,255,0.2);
}
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.step-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .social-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.social-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,123,255,0.08);
  transition: all 0.4s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,255,0.03), transparent);
  transition: left 0.6s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border-color: rgba(0,123,255,0.2);
  text-decoration: none;
  color: inherit;
}
.social-card:hover::before {
  left: 100%;
}
.social-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.social-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  position: relative;
  z-index: 2;
}
.social-description {
  font-size: 1rem;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 2;
}
.cta-banner {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin: 3rem auto 0;
  max-width: 1200px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 1;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  z-index: 1;
}
.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}
.cta-banner .hero-buttons {
  position: relative;
  z-index: 2;
}
.cta-banner .hero-buttons .btn.btn-consultation {
  background: #fff;
  color: #007bff;
  border-color: #fff;
}
.cta-banner .hero-buttons .btn.btn-consultation:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.cta-banner .hero-buttons .btn.btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.cta-banner .hero-buttons .btn.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.cta-banner .hero-buttons .btn.btn-large {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 2.75rem !important;
  min-height: 2.75rem !important;
  max-height: 2.75rem !important;
  line-height: 1 !important;
  vertical-align: top !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border-width: 1px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroAnimation {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.8;
  }
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
    opacity: 0.9;
  }
  66% {
    transform: translateY(5px) rotate(-0.5deg);
    opacity: 0.8;
  }
}
@keyframes backgroundGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@keyframes rotateConnection {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0,123,255,0.2), 0 0 15px rgba(0,123,255,0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 18px rgba(0,123,255,0.3), 0 0 20px rgba(0,123,255,0.2);
    transform: scale(1.03);
  }
}
@keyframes dataFlow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes rippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-15px) translateX(10px);
    opacity: 1;
  }
  66% {
    transform: translateY(5px) translateX(-5px);
    opacity: 0.8;
  }
}
@keyframes securityPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes nfUpwanPageLoad {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes nfUpwanTextureFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  33% {
    transform: translateY(-5px) scale(1.02);
    opacity: 0.8;
  }
  66% {
    transform: translateY(5px) scale(0.98);
    opacity: 0.9;
  }
}
@keyframes nfUpwanHeroEntry {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes nfUpwanHeroFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-20px) scale(1.1);
  }
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeInCenter {
  0% {
    opacity: 0;
    transform: translate(200px, 150px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(200px, 150px) scale(1);
  }
}
@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    transform: translate(320px, 50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(320px, 80px) scale(1);
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translate(80px, 250px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(80px, 220px) scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    filter: url("#shadow") brightness(1);
  }
  50% {
    filter: url("#shadow") brightness(1.1);
  }
}
@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes nfUpwanCtaFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.8;
  }
}
@keyframes nfUpwanIconFloat {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes nfUpwanTechFloat {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) rotate(5deg);
    opacity: 1;
  }
}
@keyframes nfUpwanSecurityFloat {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes nfUpwanPageFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-5px) scale(1.02);
    opacity: 0.5;
  }
}
@keyframes nfUpwanContactFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
@keyframes nfUpwanScrollFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nfUpwanScrollSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes nfUpwanScrollSlideRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
