:root {
  --nx-black: #050505;
  --nx-black-soft: #0d0d0f;
  --nx-white: #ffffff;
  --nx-white-soft: #f5f5f7;
  --nx-red: #f22735;
  --nx-red-dark: #c81423;
  --nx-border-dark: rgba(255, 255, 255, 0.12);
  --nx-border-light: rgba(0, 0, 0, 0.1);
  --nx-shadow-dark: 0 20px 80px rgba(0, 0, 0, 0.45);
  --nx-shadow-light: 0 18px 60px rgba(0, 0, 0, 0.08);
  --nx-radius-xl: 28px;
  --nx-radius-lg: 22px;
  --nx-radius-md: 16px;
  --nx-transition: all 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.nx-home-shell {
  background: var(--nx-white);
  color: var(--nx-black);
  overflow: hidden;
}

.nx-home-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.nx-home-section {
  position: relative;
  padding: 110px 0;
}

.nx-home-section--dark {
  background:
    radial-gradient(circle at top left, rgba(242, 39, 53, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(242, 39, 53, 0.1), transparent 30%),
    linear-gradient(180deg, #070707 0%, #0d0d0f 100%);
  color: var(--nx-white);
}

.nx-home-section--light {
  background:
    radial-gradient(circle at top right, rgba(242, 39, 53, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  color: var(--nx-black);
}

.nx-section-heading {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.nx-section-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(242, 39, 53, 0.28);
  border-radius: 999px;
  background: rgba(242, 39, 53, 0.08);
  color: var(--nx-red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nx-section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.nx-section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nx-black);
}

.nx-section-title--light {
  color: var(--nx-white);
}

.nx-section-text {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.72);
}

.nx-section-text--light {
  color: rgba(255, 255, 255, 0.74);
}

/* Hero */
.nx-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
}

.nx-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nx-hero-title {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 3.8vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--nx-white);
}
.nx-hero-title-accent {
  color: var(--nx-red);
}

.nx-hero-text {
  margin: 0 0 34px;
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.nx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.nx-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--nx-transition);
  overflow: hidden;
}

.nx-btn--primary {
  background: linear-gradient(135deg, var(--nx-red) 0%, var(--nx-red-dark) 100%);
  color: var(--nx-white);
  border: 1px solid rgba(242, 39, 53, 0.7);
  box-shadow: 0 16px 40px rgba(242, 39, 53, 0.28);
}

.nx-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(242, 39, 53, 0.36);
}

.nx-btn--secondary {
  color: var(--nx-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nx-border-dark);
  backdrop-filter: blur(10px);
}

.nx-btn--secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 39, 53, 0.5);
  color: var(--nx-red);
}

.nx-home-section--light .nx-btn--secondary {
  color: var(--nx-black);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.02);
}

.nx-home-section--light .nx-btn--secondary:hover {
  color: var(--nx-red);
  border-color: rgba(242, 39, 53, 0.4);
}

.nx-hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nx-hero-trust-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--nx-border-dark);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  transition: var(--nx-transition);
}

.nx-hero-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 39, 53, 0.35);
  box-shadow: 0 18px 40px rgba(242, 39, 53, 0.12);
}

.nx-hero-trust-number {
  display: block;
  color: var(--nx-red);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.nx-hero-trust-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.nx-hero-visual {
  position: relative;
}

.nx-hero-panel {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--nx-shadow-dark);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.nx-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(242, 39, 53, 0.7),
    rgba(255, 255, 255, 0.15),
    rgba(242, 39, 53, 0.4)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: nxBorderPulse 4s linear infinite;
}

.nx-hero-panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.nx-hero-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.nx-hero-panel-top span:first-child {
  background: var(--nx-red);
}

.nx-hero-panel-core {
  position: relative;
  height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 30px
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 39, 53, 0.45);
  animation: nxRotateSlow 12s linear infinite;
}

.nx-hero-ring--one {
  width: 160px;
  height: 160px;
}

.nx-hero-ring--two {
  width: 220px;
  height: 220px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 16s;
}

.nx-hero-core {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 39, 53, 0.35), rgba(242, 39, 53, 0.04));
  border: 1px solid rgba(242, 39, 53, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(242, 39, 53, 0.28);
}

.nx-hero-core-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--nx-red);
  box-shadow: 0 0 26px rgba(242, 39, 53, 0.7);
  animation: nxPulse 2s ease-in-out infinite;
}

.nx-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.nx-hero-stat-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--nx-transition);
}

.nx-hero-stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 39, 53, 0.4);
}

.nx-hero-stat-box h4 {
  margin: 0 0 8px;
  color: var(--nx-white);
  font-size: 1rem;
}

.nx-hero-stat-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.94rem;
}

.nx-hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.nx-hero-bg-orb--one {
  width: 260px;
  height: 260px;
  top: 120px;
  left: -60px;
  background: rgba(242, 39, 53, 0.28);
}

.nx-hero-bg-orb--two {
  width: 340px;
  height: 340px;
  right: -80px;
  bottom: 60px;
  background: rgba(242, 39, 53, 0.22);
}

.nx-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  pointer-events: none;
}

/* Intro */
.nx-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nx-intro-card {
  padding: 34px;
  border-radius: var(--nx-radius-xl);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--nx-border-light);
  box-shadow: var(--nx-shadow-light);
  transition: var(--nx-transition);
}

.nx-intro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 39, 53, 0.24);
}

.nx-intro-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: var(--nx-black);
}

.nx-intro-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}

/* Benefits */
.nx-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.nx-benefit-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--nx-shadow-dark);
  transition: var(--nx-transition);
  animation: nxFadeUp 0.8s ease both;
}

.nx-benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 39, 53, 0.35);
}

.nx-benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(242, 39, 53, 0.14);
  border: 1px solid rgba(242, 39, 53, 0.28);
  color: var(--nx-red);
  font-weight: 800;
}

.nx-benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Services */
.nx-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nx-service-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--nx-shadow-light);
  transition: var(--nx-transition);
  overflow: hidden;
  animation: nxFadeUp 0.85s ease both;
}

.nx-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nx-red), transparent);
}

.nx-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 39, 53, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.nx-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.nx-service-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 39, 53, 0.08);
  border: 1px solid rgba(242, 39, 53, 0.22);
  color: var(--nx-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nx-service-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nx-black);
  color: var(--nx-white);
  border: 1px solid rgba(242, 39, 53, 0.25);
}

.nx-service-icon {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--nx-red);
}

.nx-service-title {
  margin: 0 0 12px;
  font-size: 1.42rem;
  color: var(--nx-black);
}

.nx-service-desc {
  margin: 0 0 20px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.78;
}

.nx-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nx-service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.78);
}

.nx-service-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nx-red);
  box-shadow: 0 0 12px rgba(242, 39, 53, 0.35);
}

/* Why choose */
.nx-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.nx-why-points {
  display: grid;
  gap: 18px;
}

.nx-why-point {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: var(--nx-transition);
}

.nx-why-point:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 39, 53, 0.35);
}

.nx-why-point-count {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-red);
  background: rgba(242, 39, 53, 0.1);
  border: 1px solid rgba(242, 39, 53, 0.24);
  font-weight: 800;
}

.nx-why-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* Future */
.nx-future-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--nx-shadow-light);
}

.nx-future-col h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  color: var(--nx-black);
}

.nx-future-col p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.8;
}

.nx-future-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 39, 53, 0.45), transparent);
}

/* FAQ */
.nx-faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.nx-faq-item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  overflow: hidden;
  transition: var(--nx-transition);
}

.nx-faq-item:hover,
.nx-faq-item--open {
  border-color: rgba(242, 39, 53, 0.36);
  box-shadow: 0 18px 40px rgba(242, 39, 53, 0.08);
}

.nx-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--nx-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 24px 24px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
}

.nx-faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-red);
  background: rgba(242, 39, 53, 0.08);
  border: 1px solid rgba(242, 39, 53, 0.2);
  flex-shrink: 0;
}

.nx-faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.nx-faq-item--open .nx-faq-answer-wrap {
  grid-template-rows: 1fr;
}

.nx-faq-answer {
  overflow: hidden;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* CTA */
.nx-cta-box {
  position: relative;
  text-align: center;
  padding: 56px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(242, 39, 53, 0.12), transparent 35%),
    linear-gradient(180deg, #0a0a0b 0%, #111114 100%);
  border: 1px solid rgba(242, 39, 53, 0.24);
  overflow: hidden;
  box-shadow: var(--nx-shadow-dark);
}

.nx-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: translateX(-100%);
  animation: nxShine 5s linear infinite;
  pointer-events: none;
}

.nx-cta-title {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nx-white);
}

.nx-cta-text {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.8;
}

.nx-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Animations */
.nx-anim-fade-up {
  animation: nxFadeUp 0.9s ease both;
}

.nx-anim-slide-up {
  animation: nxSlideUp 0.9s ease both;
}

.nx-anim-slide-left {
  animation: nxSlideLeft 0.9s ease both;
}

.nx-anim-slide-right {
  animation: nxSlideRight 0.9s ease both;
}

@keyframes nxFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nxSlideUp {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nxSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nxSlideRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nxRotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes nxPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes nxBorderPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@keyframes nxShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(140%);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .nx-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nx-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nx-home-section {
    padding: 90px 0;
  }

  .nx-hero-layout,
  .nx-why-layout,
  .nx-intro-grid,
  .nx-future-panel {
    grid-template-columns: 1fr;
  }

  .nx-future-divider {
    width: 100%;
    height: 1px;
  }

  .nx-hero-trust-row,
  .nx-hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-section-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  .nx-home-wrap {
    width: min(100% - 24px, 1200px);
  }

  .nx-home-section {
    padding: 74px 0;
  }

  .nx-hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 74px;
  }

  .nx-hero-actions,
  .nx-cta-actions {
    flex-direction: column;
  }

  .nx-btn {
    width: 100%;
  }

  .nx-hero-trust-row,
  .nx-hero-stats-grid,
  .nx-benefits-grid,
  .nx-service-grid {
    grid-template-columns: 1fr;
  }

  .nx-hero-panel-core {
    height: 220px;
  }

  .nx-intro-card,
  .nx-service-card,
  .nx-benefit-card,
  .nx-cta-box,
  .nx-future-panel {
    padding: 24px;
  }

  .nx-faq-question {
    padding: 20px 18px;
    font-size: 0.97rem;
  }

  .nx-faq-answer {
    padding: 0 18px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nx-anim-fade-up,
  .nx-anim-slide-up,
  .nx-anim-slide-left,
  .nx-anim-slide-right,
  .nx-benefit-card,
  .nx-service-card,
  .nx-hero-ring,
  .nx-hero-core-dot,
  .nx-cta-box::before,
  .nx-hero-panel::before {
    animation: none !important;
  }

  .nx-btn,
  .nx-service-card,
  .nx-benefit-card,
  .nx-intro-card,
  .nx-why-point,
  .nx-hero-trust-card,
  .nx-hero-stat-box {
    transition: none !important;
  }
}