/* =================================================
   WHY US – DARK MODE (ENTERPRISE)
   ================================================= */

/* Section wrapper */
.nx-why {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(1200px 600px at 50% 0%,
      rgba(18, 19, 20, 0.14),
      transparent 60%),
    radial-gradient(900px 500px at 50% 40%,
      rgba(120, 90, 255, 0.038),
      transparent 55%),
    linear-gradient(180deg,
      #07080f 0%,
      #090b14 100%);

  color: #fff;
  padding: var(--nx-side-padding);

}

/* soft separator from previous section */
.nx-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      transparent);

  pointer-events: none;
}

/* Inner layout */
.nx-why-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 55px;
  align-items: flex-start;
  padding: 0 30px 40px 0;
}

/* ===============================
   LEFT SIDE (ANCHOR)
   =============================== */

.nx-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 16px;
  margin-bottom: 30px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.45);
}

.nx-why-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0));
}


.nx-why-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.95);
}

.nx-why-desc {
  margin: 0;
  margin-top: 18px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;


  color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   RIGHT SIDE (POINTS)
   =============================== */

.nx-why-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Individual point */
.nx-why-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: flex-start;


}

.nx-why-point:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  margin-bottom: 28px;

}

/* Muted number (structural, not decorative) */
.nx-why-index {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

/* Content */
.nx-why-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.nx-why-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   SUPPORTING POINTS (LIGHTER)
   =============================== */

.nx-why-support {
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.nx-why-support-item {
  margin: 0;

  font-size: 14px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.5);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .nx-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nx-why-desc {
    max-width: 100%;
  }

  .nx-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}