:root {
  --ink: #06152b;
  --navy: #07336b;
  --blue: #0b63ad;
  --cyan: #24d6df;
  --sky: #e9fbff;
  --muted: #66748a;
  --line: rgba(8, 38, 74, 0.12);
  --paper: #ffffff;
  --soft: #f4f9fc;
  --shadow: 0 24px 70px rgba(4, 34, 76, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(36, 214, 223, 0.08), transparent 28%),
    radial-gradient(circle at 92% 46%, rgba(11, 99, 173, 0.08), transparent 30%),
    var(--paper);
  line-height: 1.55;
}

/* Override Elementor Kit global styles that would conflict with Nexweb design */
body.elementor-kit-9492,
body[class*="elementor-kit"] {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1rem !important;
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 8% 18%, rgba(36, 214, 223, 0.08), transparent 28%),
    radial-gradient(circle at 92% 46%, rgba(11, 99, 173, 0.08), transparent 30%),
    var(--paper) !important;
  background-color: var(--paper) !important;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(36, 214, 223, 0.08), transparent 28%),
    radial-gradient(circle at 92% 46%, rgba(11, 99, 173, 0.08), transparent 30%) !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

body.elementor-kit-9492 a,
body[class*="elementor-kit"] a {
  color: inherit !important;
}

body.elementor-kit-9492 h1,
body.elementor-kit-9492 h2,
body.elementor-kit-9492 h3,
body.elementor-kit-9492 h4,
body.elementor-kit-9492 h5,
body.elementor-kit-9492 h6 {
  font-family: inherit !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 51, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 51, 107, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  animation: grid-drift 18s linear infinite;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  opacity: 1;
}

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  right: 0;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--sky);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 36px rgba(7, 51, 107, 0.25);
}

.btn-ghost {
  border-color: rgba(7, 51, 107, 0.22);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 92px 22px;
  position: relative;
  overflow: hidden;
}

.section-tight {
  padding: 56px 22px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(13, 224, 221, 0.17), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(14, 116, 144, 0.18), transparent 32%),
    linear-gradient(135deg, #020a13 0%, #04182a 48%, #020812 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(36, 214, 223, 0.42) 0 2px, transparent 3px) 9% 22% / 140px 150px,
    radial-gradient(circle, rgba(177, 103, 255, 0.36) 0 2px, transparent 3px) 24% 16% / 190px 180px,
    linear-gradient(rgba(36, 214, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 214, 223, 0.035) 1px, transparent 1px);
  background-size: 160px 160px, 210px 210px, 72px 72px, 72px 72px;
  animation: star-drift 22s linear infinite;
}

.hero::after,
.elementor-section.nx-hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 20px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: inset 0 0 12px rgba(36, 214, 223, 0.45);
  pointer-events: none;
  transform: translateX(-50%);
  animation: mouse-hover 2.1s ease-in-out infinite;
}

.hero::after {
  background:
    radial-gradient(circle at 50% 10px, var(--cyan) 0 3px, transparent 4px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.dashboard-hero .hero-grid {
  width: 100%;
  max-width: 1760px;
  padding-left: clamp(34px, 3.7vw, 72px);
  padding-right: clamp(34px, 3.7vw, 72px);
  grid-template-columns: minmax(360px, 0.86fr) minmax(620px, 1.14fr);
  gap: clamp(34px, 5vw, 92px);
}

.dashboard-hero .hero-visual {
  justify-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--cyan);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.03;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  letter-spacing: 0;
}

.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #e3f8ff 42%, #14e7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.dashboard-hero .hero-title,
.nx-hero-section .nx-hero-title .elementor-heading-title {
  max-width: 620px;
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: clamp(3.45rem, 4.8vw, 6rem);
  line-height: 1.02;
}

.dashboard-hero .hero-title span,
.nx-hero-section .nx-hero-title .elementor-heading-title span {
  display: block;
}

.dashboard-hero .hero-title span:nth-child(1),
.nx-hero-section .nx-hero-title .elementor-heading-title span:nth-child(1) {
  color: #fff;
}

.dashboard-hero .hero-title span:nth-child(2),
.nx-hero-section .nx-hero-title .elementor-heading-title span:nth-child(2) {
  background: linear-gradient(90deg, #08d8ca 0%, #00b8f5 62%, #8b8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dashboard-hero .hero-title span:nth-child(3),
.nx-hero-section .nx-hero-title .elementor-heading-title span:nth-child(3) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72em;
  font-weight: 400;
}

.dashboard-hero .eyebrow,
.dashboard-hero .lead {
  color: rgba(222, 245, 255, 0.78);
}

.dashboard-hero .eyebrow::before {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(36, 214, 223, 0.9);
}

.dashboard-hero .btn-ghost {
  color: #e7fbff;
  border-color: rgba(222, 245, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-hero .btn-primary,
.nx-hero-primary .elementor-button {
  color: #fff;
  background: linear-gradient(135deg, #07d1c8, #0ab1f0);
  box-shadow: 0 16px 38px rgba(10, 199, 220, 0.24);
}

.hero-accent-line {
  width: min(450px, 100%);
  height: 3px;
  margin-top: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #06b7f4 66%, #9b68ff);
  box-shadow: 0 0 24px rgba(36, 214, 223, 0.36);
}

.btn-video {
  min-width: 205px;
}

.btn-video > span {
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 2px solid currentColor;
  clip-path: polygon(18% 0, 100% 50%, 18% 100%);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.tech-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tech-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(36, 214, 223, 0.9);
  opacity: 0.72;
  animation: particle-float 8s ease-in-out infinite;
}

.tech-particles span:nth-child(1) { left: 13%; top: 20%; animation-delay: 0s; }
.tech-particles span:nth-child(2) { left: 31%; top: 72%; animation-delay: 1.2s; background: #8e5cff; }
.tech-particles span:nth-child(3) { left: 54%; top: 18%; animation-delay: 2.4s; }
.tech-particles span:nth-child(4) { right: 18%; top: 34%; animation-delay: 0.8s; background: #8e5cff; }
.tech-particles span:nth-child(5) { right: 31%; bottom: 16%; animation-delay: 3.4s; }
.tech-particles span:nth-child(6) { left: 46%; bottom: 24%; animation-delay: 4s; }

.dashboard-scene {
  position: relative;
  width: min(100%, 980px);
  min-height: 680px;
  perspective: 1300px;
  isolation: isolate;
}

.dashboard-scene::before {
  content: "";
  position: absolute;
  inset: 13% -4% 10% 10%;
  border-radius: 42px;
  background: radial-gradient(circle at 52% 45%, rgba(36, 214, 223, 0.28), transparent 40%);
  filter: blur(20px);
  opacity: 0.92;
}

.stat-card,
.code-card,
.phone-mockup,
.browser-mockup {
  position: absolute;
  border: 1px solid rgba(171, 224, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(36, 214, 223, 0.06);
  backdrop-filter: blur(18px);
}

.stat-card,
.code-card {
  z-index: 4;
  border-radius: 18px;
  color: #f3fbff;
  animation: float-soft 6s ease-in-out infinite;
}

.growth-card {
  left: 6%;
  top: 16%;
  width: 225px;
  padding: 18px 18px 14px;
}

.growth-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 900;
}

.growth-card span {
  color: var(--cyan);
  font-size: 1.25rem;
  text-shadow: 0 0 18px rgba(36, 214, 223, 0.82);
}

.bar-chart {
  height: 78px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.bar-chart i,
.mini-bars i {
  flex: 1;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #15b9ff, #16ded0);
  box-shadow: 0 0 18px rgba(36, 214, 223, 0.44);
}

.bar-chart i:nth-child(1) { height: 48%; }
.bar-chart i:nth-child(2) { height: 66%; }
.bar-chart i:nth-child(3) { height: 40%; }
.bar-chart i:nth-child(4) { height: 82%; }
.bar-chart i:nth-child(5) { height: 52%; }
.bar-chart i:nth-child(6) { height: 86%; }
.bar-chart i:nth-child(7) { height: 62%; }

.deploy-card {
  left: 5%;
  top: 52%;
  bottom: auto;
  width: 225px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.deploy-card small {
  display: block;
  color: rgba(222, 245, 255, 0.62);
  font-weight: 800;
}

.deploy-card em {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #0aaee8);
  box-shadow: 0 0 18px rgba(36, 214, 223, 0.78);
}

.check-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #02151c;
  background: var(--cyan);
  font-weight: 900;
}

.code-card {
  right: 7%;
  top: 15%;
  width: 220px;
  min-height: 106px;
  padding: 22px 24px;
  color: #b6f7ee;
  animation-delay: 1.2s;
}

.code-card code {
  color: #d8ccff;
  font: 800 0.86rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code-card span {
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--cyan);
  border: 1px solid rgba(36, 214, 223, 0.22);
  background: rgba(36, 214, 223, 0.08);
}

.phone-mockup {
  z-index: 2;
  left: 27%;
  top: 31%;
  width: 310px;
  height: 500px;
  padding: 26px 22px;
  border: 5px solid rgba(13, 139, 134, 0.72);
  border-radius: 36px;
  color: #fff;
  transform: rotate(-5deg);
  animation: phone-drift 7s ease-in-out infinite;
}

.phone-top,
.phone-brand,
.browser-top {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 900;
}

.phone-top b {
  width: 58px;
  height: 24px;
  border-radius: 999px;
  background: #050711;
  box-shadow: inset 18px 0 0 #7558ff, inset 46px 0 0 #fc1749;
}

.phone-brand {
  gap: 10px;
  margin: 24px 0;
}

.phone-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-weight: 900;
}

.phone-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.phone-revenue {
  padding: 22px;
  border: 1px solid rgba(36, 214, 223, 0.26);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 214, 223, 0.22), rgba(255, 255, 255, 0.05));
}

.phone-revenue strong {
  display: block;
  margin: 7px 0 16px;
  font-size: 2rem;
}

.mini-bars {
  height: 74px;
  display: flex;
  gap: 10px;
  align-items: end;
}

.mini-bars i:nth-child(1) { height: 45%; }
.mini-bars i:nth-child(2) { height: 66%; }
.mini-bars i:nth-child(3) { height: 40%; }
.mini-bars i:nth-child(4) { height: 80%; }
.mini-bars i:nth-child(5) { height: 58%; }

.phone-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.phone-tiles span {
  height: 76px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.browser-mockup {
  z-index: 3;
  right: 0;
  top: 34%;
  width: 530px;
  border: 4px solid rgba(12, 121, 124, 0.74);
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  animation: browser-drift 7.5s ease-in-out infinite;
}

.browser-top {
  gap: 8px;
  height: 58px;
  padding: 0 18px;
  background: rgba(6, 9, 18, 0.86);
}

.browser-top > span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.browser-top > span:nth-child(1) { background: #ff6e6e; }
.browser-top > span:nth-child(2) { background: #ffd166; }
.browser-top > span:nth-child(3) { background: #3ee36f; }

.browser-top b {
  flex: 1;
  margin-left: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.browser-top em {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-weight: 900;
}

.browser-body {
  min-height: 245px;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 20%, rgba(111, 86, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(12, 35, 62, 0.95), rgba(21, 25, 58, 0.96));
}

.browser-body p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.browser-body h3 {
  color: var(--cyan);
  font-size: 1.85rem;
  text-shadow: 0 0 18px rgba(36, 214, 223, 0.5);
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.dash-cards article {
  position: relative;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(196, 228, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.dash-cards small {
  color: var(--cyan);
  font-weight: 900;
}

.dash-cards strong {
  display: block;
  margin-top: 14px;
  font-size: 1.9rem;
}

.dash-cards span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
}

.dash-cards em {
  position: absolute;
  right: 12px;
  top: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(36, 214, 223, 0.15);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.performance-line {
  height: 58px;
  margin-top: 18px;
  border: 1px solid rgba(36, 214, 223, 0.18);
  border-radius: 14px;
  background: rgba(4, 16, 29, 0.52);
  overflow: hidden;
}

.performance-line span {
  display: block;
  height: 3px;
  margin: 13px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.nx-mockup-stack,
.mockup-stack {
  position: relative;
  width: min(100%, 650px);
  min-height: 560px;
  perspective: 1100px;
}

.nx-mockup,
.mockup-stack img {
  position: absolute;
  max-width: none;
  filter: drop-shadow(0 32px 46px rgba(4, 26, 55, 0.22));
  transform-style: preserve-3d;
  will-change: transform;
}

.nx-mockup-main,
.mockup-main {
  width: 104%;
  right: -8%;
  top: 8%;
  animation: float-tilt 7s ease-in-out infinite;
}

.single-mockup .nx-mockup-main,
.single-mockup .mockup-main {
  width: 112%;
  right: -9%;
  top: 12%;
  border-radius: 10px;
  filter: drop-shadow(0 42px 70px rgba(4, 26, 55, 0.28));
}

.single-mockup::before {
  content: "";
  position: absolute;
  inset: 10% -3% 12% 8%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 20%, rgba(36, 214, 223, 0.35), transparent 32%),
    linear-gradient(135deg, rgba(7, 51, 107, 0.16), rgba(36, 214, 223, 0.08));
  filter: blur(8px);
  transform: rotate(-4deg);
}

.nx-mockup-float-a,
.mockup-float-a {
  width: 68%;
  left: -8%;
  top: 2%;
  transform: rotate(-8deg) translateZ(80px);
  animation: float-card-a 8s ease-in-out infinite;
}

.nx-mockup-float-b,
.mockup-float-b {
  width: 62%;
  right: -6%;
  bottom: 5%;
  transform: rotate(7deg) translateZ(120px);
  animation: float-card-b 9s ease-in-out infinite;
}

.nx-page-mockup {
  position: relative;
  min-height: 360px;
}

.nx-page-mockup img {
  position: absolute;
  right: -8%;
  top: 50%;
  width: 120%;
  max-width: none;
  transform: translateY(-50%) rotate(-3deg);
  filter: drop-shadow(0 26px 44px rgba(4, 26, 55, 0.18));
  animation: float-tilt 8s ease-in-out infinite;
}

.word-banner {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #06152b, #07336b 44%, #00aee8 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.word-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 17px 0;
  animation: word-marquee 24s linear infinite;
}

.word-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.word-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(36, 214, 223, 0.8);
}

.orbit {
  width: min(100%, 520px);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 2px solid rgba(11, 99, 173, 0.18);
  animation: spin 18s linear infinite;
}

.orbit::after {
  inset: 20%;
  border-color: rgba(36, 214, 223, 0.26);
  animation-duration: 12s;
  animation-direction: reverse;
}

.device {
  position: absolute;
  inset: 14% 6% 16% 6%;
  border: 1px solid rgba(7, 51, 107, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.device-top {
  height: 42px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.device-body {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
  padding: 28px;
}

.screen-block {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 51, 107, 0.95), rgba(11, 99, 173, 0.86));
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.screen-block::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -56px;
  top: 28px;
  border-radius: 50%;
  border: 26px solid rgba(36, 214, 223, 0.42);
}

.screen-lines {
  display: grid;
  align-content: center;
  gap: 12px;
}

.screen-lines span {
  height: 12px;
  border-radius: 999px;
  background: #d9eef7;
}

.screen-lines span:nth-child(2) { width: 72%; }
.screen-lines span:nth-child(3) { width: 88%; }
.screen-lines span:nth-child(4) { width: 54%; background: var(--cyan); }

.floating-pill {
  position: absolute;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--navy);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.pill-a { top: 14%; left: 0; }
.pill-b { right: 0; bottom: 17%; animation-delay: 1.1s; background: var(--blue); }

.stat-strip {
  background: var(--ink);
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stat {
  padding: 28px;
  background: var(--ink);
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-size: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 214, 223, 0.48);
  box-shadow: 0 20px 56px rgba(4, 34, 76, 0.1);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.card p,
.timeline p,
.project p {
  color: var(--muted);
}

.soft-band {
  background:
    linear-gradient(180deg, #f6fbff, #fff);
}

.services-showcase,
.nx-services-dark {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 214, 223, 0.18), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(11, 99, 173, 0.16), transparent 28%),
    linear-gradient(180deg, #02060d 0%, #07131d 55%, #02060d 100%);
}

.services-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.services-title h2,
.nx-services-title .elementor-heading-title {
  color: #e8edf4;
}

.services-title h2 span,
.nx-services-title .elementor-heading-title strong {
  color: #06baff;
}

.services-title p,
.nx-services-lead {
  color: rgba(255, 255, 255, 0.7);
}

.glow-card,
.nx-services-dark .elementor-widget-wrap {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 24px 50px rgba(0, 0, 0, 0.32);
}

.glow-card::before,
.nx-services-dark .elementor-widget-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(36, 214, 223, 0.7), rgba(3, 93, 223, 0.15), rgba(36, 214, 223, 0));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
}

.glow-card:hover::before,
.nx-services-dark .elementor-widget-wrap:hover::before {
  opacity: 1;
}

.glow-card:hover,
.nx-services-dark .elementor-widget-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 34px rgba(0, 174, 255, 0.2), 0 30px 70px rgba(0, 0, 0, 0.42);
}

.glow-icon,
.nx-services-dark .nx-card-number .elementor-heading-title {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  border-radius: 18px;
  color: #21cfff;
  background: linear-gradient(145deg, #101820, #05080c);
  border: 2px solid rgba(0, 157, 255, 0.75);
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.28), 0 0 18px rgba(0, 157, 255, 0.64);
  font-weight: 900;
}

.glow-card h3,
.nx-services-dark .nx-card-widget .elementor-icon-box-title {
  color: #e7e8eb;
  font-size: 1.65rem;
}

.glow-card p,
.nx-services-dark .nx-card-widget .elementor-icon-box-description {
  color: rgba(255, 255, 255, 0.66);
}

.glow-cta,
.nx-service-card-button .elementor-button {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  border: 1px solid rgba(0, 166, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 10, 14, 0.9), rgba(6, 10, 14, 0.92));
  box-shadow: inset 0 0 18px rgba(0, 166, 255, 0.35), 0 0 20px rgba(0, 166, 255, 0.22);
  font-weight: 900;
}

.glow-cta::after,
.nx-service-card-button .elementor-button::after {
  content: ">";
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #13a7ff, #004ccc);
  box-shadow: 0 0 22px rgba(0, 166, 255, 0.42);
}

.pricing-showcase,
.elementor-section.nx-pricing-section {
  color: #fff;
  background:
    radial-gradient(circle at 22% 12%, rgba(36, 214, 223, 0.16), transparent 30%),
    radial-gradient(circle at 84% 32%, rgba(82, 72, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #020812 0%, #041727 50%, #020812 100%);
}

.pricing-showcase .wrap {
  max-width: 1480px;
}

.elementor-section.nx-pricing-section > .elementor-container {
  max-width: 1480px !important;
}

.package-toggle,
.nx-package-toggle {
  width: fit-content;
  margin: 0 auto 46px;
  padding: 7px;
  display: flex;
  gap: 6px;
  border: 1px solid rgba(36, 214, 223, 0.32);
  border-radius: 999px;
  background: rgba(1, 12, 22, 0.72);
  box-shadow: inset 0 0 22px rgba(36, 214, 223, 0.12), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.package-toggle button,
.nx-package-toggle button {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: rgba(231, 251, 255, 0.74);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.package-toggle button.is-active,
.nx-package-toggle button.is-active {
  color: #04121d;
  background: linear-gradient(135deg, var(--cyan), #20b7ff);
  box-shadow: 0 0 24px rgba(36, 214, 223, 0.34);
}

.pricing-showcase[data-pricing-mode="once"] [data-monthly],
.pricing-showcase[data-pricing-mode="monthly"] [data-once],
.elementor-section.nx-pricing-section[data-pricing-mode="once"] [data-monthly],
.elementor-section.nx-pricing-section[data-pricing-mode="monthly"] [data-once] {
  display: none !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) repeat(3, minmax(315px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pricing-panel,
.nx-pricing-section .elementor-widget-wrap {
  position: relative;
  min-height: 100%;
  padding: 50px 42px 44px;
  border: 1px solid rgba(231, 251, 255, 0.24);
  border-radius: 0;
  overflow: visible;
  clip-path: polygon(0 54px, 54px 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(36, 214, 223, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 42%, rgba(255, 255, 255, 0.025)),
    rgba(13, 31, 45, 0.48);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -28px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(26px) saturate(132%);
  -webkit-backdrop-filter: blur(26px) saturate(132%);
  filter: drop-shadow(0 0 22px rgba(36, 214, 223, 0.1));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pricing-panel > *,
.nx-pricing-section .elementor-widget-wrap > * {
  position: relative;
  z-index: 1;
}

.pricing-panel::before,
.nx-pricing-section .elementor-widget-wrap::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 0;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 30px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(36, 214, 223, 0.12);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: none;
}

.pricing-panel::after,
.nx-pricing-section .elementor-widget-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  clip-path: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(315deg, rgba(36, 214, 223, 0.18), transparent 30%);
  border: 1px solid rgba(36, 214, 223, 0.5);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.055),
    inset 0 0 70px rgba(36, 214, 223, 0.07),
    0 0 30px rgba(36, 214, 223, 0.1);
  mask-image: linear-gradient(#000, #000);
  pointer-events: none;
}

.price-card::before,
.nx-price-card .elementor-widget-wrap::before {
  top: 18px;
  left: auto;
  right: 18px;
  width: 46px;
  height: 46px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.pricing-intro::before,
.nx-pricing-intro .elementor-widget-wrap::before {
  top: 18px;
  left: 18px;
  width: 52px;
  height: 52px;
}

.pricing-panel:hover,
.nx-pricing-section .elementor-widget-wrap:hover {
  transform: translateY(-8px);
  border-color: rgba(231, 251, 255, 0.4);
  box-shadow:
    0 0 38px rgba(36, 214, 223, 0.16),
    0 42px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.pricing-intro,
.nx-pricing-intro .elementor-widget-wrap {
  display: grid;
  align-content: center;
  text-align: center;
  clip-path: polygon(0 54px, 54px 0, 100% 0, 100% calc(100% - 54px), calc(100% - 54px) 100%, 0 100%);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 48% 44%, rgba(36, 214, 223, 0.2), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(4, 17, 28, 0.56);
}

.pricing-intro h2,
.nx-pricing-title .elementor-heading-title {
  color: #e9faff;
  font-size: clamp(2rem, 2.8vw, 3.15rem);
  line-height: 1.15;
}

.pricing-intro a,
.nx-pricing-link .elementor-button {
  display: inline-flex;
  justify-content: center;
  margin-top: 24px;
  color: var(--cyan);
  font-weight: 900;
  background: transparent;
}

.price-card h3,
.nx-price-heading .elementor-heading-title {
  color: #f5fbff;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  line-height: 0.98;
}

.price-card p,
.nx-price-copy,
.nx-price-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.price,
.nx-price-value .elementor-heading-title {
  min-height: 88px;
  margin: 26px 0 26px;
  color: #f5fbff;
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(36, 214, 223, 0.34);
}

.price small,
.nx-price-value small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.96rem;
  font-weight: 800;
}

.price > span,
.nx-price-value .elementor-heading-title > span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.price-btn,
.nx-price-button .elementor-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(36, 214, 223, 0.7);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, rgba(4, 14, 24, 0.95), rgba(11, 31, 49, 0.95));
  box-shadow: inset 0 0 18px rgba(36, 214, 223, 0.32), 0 0 26px rgba(36, 214, 223, 0.22);
  font-weight: 900;
}

.price-btn::after,
.nx-price-button .elementor-button::after {
  content: "↗";
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  border-radius: 15px;
  color: var(--cyan);
  border: 1px solid rgba(36, 214, 223, 0.25);
  background: rgba(36, 214, 223, 0.08);
}

.price-card ul,
.nx-price-list ul {
  margin: 30px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  list-style: none;
}

.price-card li,
.nx-price-list li {
  position: relative;
  margin: 15px 0;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.price-card li::before,
.nx-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.72rem;
  box-shadow: 0 0 14px rgba(36, 214, 223, 0.38);
}

.featured-price,
.nx-price-featured .elementor-widget-wrap {
  transform: translateY(-18px);
  clip-path: polygon(0 64px, 64px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.28), transparent 30%),
    radial-gradient(circle at 78% 14%, rgba(36, 214, 223, 0.28), transparent 36%),
    radial-gradient(circle at 20% 72%, rgba(105, 92, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 44%, rgba(255, 255, 255, 0.03)),
    rgba(10, 28, 43, 0.5);
  box-shadow:
    0 0 42px rgba(36, 214, 223, 0.22),
    0 42px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.best-badge,
.nx-best-badge {
  width: fit-content;
  margin: -12px 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(36, 214, 223, 0.42);
  border-radius: 999px;
  color: #04121d;
  background: linear-gradient(135deg, var(--cyan), #20b7ff);
  box-shadow: 0 0 24px rgba(36, 214, 223, 0.28);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 214, 223, 0.18), transparent 28%),
    linear-gradient(135deg, #06152b, #07336b);
}

.dark-band .section-copy,
.dark-band p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-band .card {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.dark-band .card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-line strong {
  color: var(--cyan);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 22px;
  border-left: 3px solid var(--cyan);
  background: var(--soft);
  border-radius: 0 8px 8px 0;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.page-hero {
  padding: 96px 22px 74px;
  background:
    radial-gradient(circle at 82% 10%, rgba(36, 214, 223, 0.2), transparent 28%),
    linear-gradient(135deg, #f9feff, #eef8ff);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.project {
  min-height: 260px;
  display: grid;
  align-content: end;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  position: relative;
  overflow: hidden;
}

.project::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -80px;
  right: -64px;
  border-radius: 50%;
  border: 34px solid rgba(36, 214, 223, 0.28);
}

.project > * {
  position: relative;
  z-index: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.footer {
  padding: 54px 22px 28px;
  color: #dcebf3;
  background: #06152b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer img {
  width: 178px;
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #dcebf3;
  opacity: 0.82;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
}

.elementor-section.nx-footer-section {
  padding: 54px 22px 30px;
  color: #dcebf3;
  background: #06152b;
}

.elementor-section.nx-footer-bottom-section {
  padding: 0 22px 28px;
  color: rgba(255, 255, 255, 0.6);
  background: #06152b;
}

.nx-footer-logo {
  width: 178px;
  margin-bottom: 18px;
}

.nx-footer-copy,
.nx-footer-copy p {
  max-width: 330px;
  color: #dcebf3;
  font-weight: 700;
}

.nx-footer-heading .elementor-heading-title {
  color: #dcebf3;
  font-size: 1.35rem;
  line-height: 1.2;
}

.nx-footer-links,
.nx-footer-links p,
.nx-footer-links a {
  color: #dcebf3;
  opacity: 0.86;
  font-weight: 700;
  line-height: 2.05;
}

.nx-footer-links a:hover {
  color: var(--cyan);
  opacity: 1;
}

.nx-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nx-footer-bottom,
.nx-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes grid-drift {
  to { background-position: 76px 76px; }
}

@keyframes sheen-shift {
  from { opacity: 0.55; transform: translateX(-2%); }
  to { opacity: 1; transform: translateX(2%); }
}

@keyframes word-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes star-drift {
  to { background-position: 160px 160px, -210px 210px, 72px 72px, -72px 72px; }
}

@keyframes particle-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.45; }
  50% { transform: translate3d(14px, -22px, 0); opacity: 1; }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes phone-drift {
  0%, 100% { transform: rotate(-5deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-3deg) translate3d(-8px, -18px, 0); }
}

@keyframes browser-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -16px, 0); }
}

@keyframes mouse-hover {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.72; }
  50% { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}

@keyframes float-tilt {
  0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-18px); }
}

@keyframes float-card-a {
  0%, 100% { transform: rotate(-8deg) translateY(0) translateZ(80px); }
  50% { transform: rotate(-5deg) translateY(-18px) translateZ(110px); }
}

@keyframes float-card-b {
  0%, 100% { transform: rotate(7deg) translateY(0) translateZ(120px); }
  50% { transform: rotate(3deg) translateY(16px) translateZ(95px); }
}

@media (min-width: 1800px) {
  .dashboard-hero .hero-grid {
    max-width: 1760px;
    padding-left: 70px;
    padding-right: 70px;
    grid-template-columns: minmax(440px, 0.86fr) minmax(780px, 1.14fr);
  }
  .dashboard-scene {
    width: min(100%, 1000px);
    min-height: 700px;
  }
  .growth-card { left: 6%; top: 16%; }
  .deploy-card { left: 5%; top: 52%; bottom: auto; }
  .code-card { right: 7%; top: 15%; }
  .phone-mockup { left: 27%; top: 31%; }
  .browser-mockup {
    right: 0;
    top: 34%;
    width: 550px;
  }
  .elementor-section.nx-hero-section > .elementor-container {
    max-width: 1760px !important;
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 1440px) {
  .dashboard-hero .hero-grid {
    grid-template-columns: minmax(340px, 0.86fr) minmax(580px, 1.14fr);
    gap: 34px;
  }
  .dashboard-scene {
    width: min(100%, 800px);
    min-height: 610px;
  }
  .phone-mockup { left: 24%; top: 31%; width: 275px; height: 455px; }
  .browser-mockup {
    right: 0;
    width: 480px;
  }
  .growth-card { left: 2%; }
  .deploy-card { left: 2%; }
  .code-card { right: 2%; }
}

@media (max-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .pricing-panel,
  .nx-pricing-section .elementor-widget-wrap {
    padding: 44px 36px 38px;
  }

  .featured-price,
  .nx-price-featured .elementor-widget-wrap {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .dashboard-hero .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
  }
  .dashboard-scene {
    width: 720px;
    transform: scale(0.92);
    transform-origin: center right;
  }
  .phone-mockup { left: 21%; }
  .browser-mockup { width: 450px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 8px;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu { display: block; }
  .hero-grid,
  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-hero .hero-grid {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 1fr;
  }
  .dashboard-hero .hero-visual {
    justify-items: center;
  }
  .elementor-section.nx-hero-section > .elementor-container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .elementor-section.nx-hero-section .elementor-column:first-child,
  .elementor-section.nx-hero-section .elementor-column:last-child {
    width: 100% !important;
  }
  .elementor-section.nx-hero-section .nx-hero-visual .elementor-widget-container {
    justify-items: center;
  }
  .grid-3,
  .grid-2,
  .timeline,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .featured-price,
  .nx-price-featured .elementor-widget-wrap {
    transform: none;
  }
  .hero-visual { min-height: 560px; }
  .dashboard-scene {
    width: min(100%, 800px);
    min-height: 600px;
    transform: none;
  }
  .growth-card { left: 4%; top: 4%; }
  .deploy-card { left: 4%; top: 45%; bottom: auto; }
  .code-card { right: 4%; top: 5%; }
  .phone-mockup { left: 18%; top: 26%; }
  .browser-mockup {
    right: 3%;
    top: 36%;
    width: min(88vw, 520px);
  }
  .nx-mockup-stack,
  .mockup-stack { min-height: 420px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 18px; }
  .page-hero { padding: 72px 18px 56px; }
  .nav { padding-inline: 18px; }
  .dashboard-hero .hero-grid,
  .elementor-section.nx-hero-section > .elementor-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand img { width: 148px; }
  .grid-3,
  .grid-2,
  .timeline,
  .stats {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .package-toggle,
  .nx-package-toggle {
    width: 100%;
  }
  .package-toggle button,
  .nx-package-toggle button {
    flex: 1;
    padding-inline: 12px;
  }
  .hero { min-height: auto; padding: 42px 0 0; }
  .device-body { grid-template-columns: 1fr; padding: 20px; }
  .hero-visual { min-height: 620px; }
  .dashboard-scene {
    min-height: 620px;
    width: 520px;
    transform: scale(0.78);
    transform-origin: top center;
  }
  .growth-card,
  .deploy-card,
  .code-card {
    width: 220px;
  }
  .growth-card { left: 0; top: 0; }
  .deploy-card { left: 0; bottom: 7%; }
  .code-card { right: 0; top: 15%; }
  .phone-mockup {
    left: 13%;
    top: 31%;
    width: 235px;
    height: 360px;
  }
  .browser-mockup {
    right: 2%;
    top: 46%;
    width: 390px;
  }
  .browser-top b {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .browser-body { padding: 20px; }
  .dash-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dash-cards article {
    min-height: 76px;
  }
  .dash-cards strong {
    margin-top: 4px;
    font-size: 1.35rem;
  }
  .nx-mockup-stack,
  .mockup-stack { min-height: 320px; }
  .floating-pill { font-size: 0.78rem; }
  .contact-panel { padding: 22px; }
}

/* Elementor import styling: these classes are attached to editable Elementor sections/widgets. */
.elementor-section.nx-hero-section {
  min-height: calc(100vh - 80px);
  padding: 92px 22px 78px;
  background:
    radial-gradient(circle at 78% 20%, rgba(13, 224, 221, 0.17), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(14, 116, 144, 0.18), transparent 32%),
    linear-gradient(135deg, #020a13 0%, #04182a 48%, #020812 100%);
  overflow: hidden;
}

.elementor-section.nx-hero-section > .elementor-container {
  width: 100%;
  max-width: 1760px !important;
  padding-left: clamp(34px, 3.7vw, 72px);
  padding-right: clamp(34px, 3.7vw, 72px);
}

.elementor-section.nx-hero-section .elementor-column:first-child {
  width: 46% !important;
}

.elementor-section.nx-hero-section .elementor-column:last-child {
  width: 54% !important;
}

.elementor-section.nx-hero-section .nx-hero-visual .elementor-widget-container {
  display: grid;
  justify-items: end;
}

.elementor-section.nx-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(36, 214, 223, 0.42) 0 2px, transparent 3px) 9% 22% / 140px 150px,
    radial-gradient(circle, rgba(177, 103, 255, 0.36) 0 2px, transparent 3px) 24% 16% / 190px 180px,
    linear-gradient(rgba(36, 214, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 214, 223, 0.035) 1px, transparent 1px);
  background-size: 160px 160px, 210px 210px, 72px 72px, 72px 72px;
  animation: star-drift 22s linear infinite;
}

.elementor-section.nx-word-banner-section {
  padding: 0;
  background: transparent;
}

.elementor-section.nx-word-banner-section .elementor-container {
  max-width: none;
}

.nx-word-banner-widget {
  width: 100%;
}

.elementor-section.nx-page-hero-section {
  padding: 96px 22px 74px;
  background:
    radial-gradient(circle at 82% 10%, rgba(36, 214, 223, 0.24), transparent 28%),
    radial-gradient(circle at 15% 88%, rgba(7, 51, 107, 0.09), transparent 26%),
    linear-gradient(135deg, #f9feff, #eef8ff);
  overflow: hidden;
}

.elementor-section.nx-section {
  padding: 92px 22px;
}

.elementor-section.nx-soft {
  background: linear-gradient(180deg, #f6fbff, #fff);
}

.elementor-section.nx-dark {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 214, 223, 0.18), transparent 28%),
    linear-gradient(135deg, #06152b, #07336b);
}

.elementor-section.nx-stats-section {
  padding: 42px 22px;
  background: var(--ink);
}

.nx-eyebrow .elementor-heading-title {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nx-h1 .elementor-heading-title {
  color: var(--ink);
  max-width: 800px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.nx-hero-section .nx-h1 .elementor-heading-title {
  background: linear-gradient(135deg, #ffffff 0%, #e3f8ff 42%, #14e7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.nx-hero-section .nx-eyebrow .elementor-heading-title,
.nx-hero-section .nx-lead,
.nx-hero-section .nx-lead p {
  color: rgba(222, 245, 255, 0.78);
}

.nx-h2 .elementor-heading-title {
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.nx-dark .nx-h2 .elementor-heading-title,
.nx-dark .nx-eyebrow .elementor-heading-title {
  color: #fff;
}

.nx-lead,
.nx-body {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.14rem;
}

.nx-dark .nx-body,
.nx-dark .nx-body p {
  color: rgba(255, 255, 255, 0.78);
}

.nx-button .elementor-button {
  border-radius: 8px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 36px rgba(7, 51, 107, 0.25);
}

.elementor-widget.nx-hero-primary,
.elementor-widget.nx-hero-secondary {
  display: inline-block;
  width: auto;
  margin-top: 6px;
  margin-right: 12px;
  vertical-align: top;
}

.nx-hero-secondary .elementor-button {
  color: #e7fbff;
  border: 1px solid rgba(222, 245, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nx-hero-visual .orbit {
  margin: 0 auto;
}

.nx-card-grid > .elementor-container,
.nx-card-grid > .elementor-container > .elementor-column {
  flex-wrap: wrap;
}

.nx-card-grid .elementor-column {
  margin-bottom: 20px;
}

.nx-card-grid .elementor-widget-wrap {
  align-content: flex-start;
  height: 100%;
  margin: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nx-card-grid .elementor-widget-wrap:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 214, 223, 0.48);
  box-shadow: 0 20px 56px rgba(4, 34, 76, 0.1);
}

.nx-card-number .elementor-heading-title {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.9rem;
  font-weight: 900;
}

.nx-card-widget .elementor-icon-box-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.nx-card-widget .elementor-icon,
.nx-card-widget .elementor-icon-box-icon {
  display: none;
}

.nx-card-widget .elementor-icon-box-description {
  color: var(--muted);
}

.nx-dark .nx-card-grid .elementor-widget-wrap {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.nx-dark .nx-card-widget .elementor-icon-box-title,
.nx-dark .nx-card-widget .elementor-icon-box-description {
  color: #fff;
}

.nx-stat-number .elementor-heading-title {
  color: var(--cyan);
  font-size: 2.2rem;
  line-height: 1;
}

.nx-stat-label .elementor-heading-title {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .elementor-section.nx-hero-section,
  .elementor-section.nx-page-hero-section,
  .elementor-section.nx-section {
    padding: 66px 18px;
  }
}

@media (max-width: 960px) {
  .elementor-section.nx-hero-section > .elementor-container {
    max-width: none !important;
    padding-left: 28px;
    padding-right: 28px;
  }

  .elementor-section.nx-hero-section .elementor-column:first-child,
  .elementor-section.nx-hero-section .elementor-column:last-child {
    width: 100% !important;
  }

  .elementor-section.nx-hero-section .nx-hero-visual .elementor-widget-container {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .elementor-section.nx-hero-section > .elementor-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
