.nt-matlab-section{
  position: relative;
  padding: 60px 0 40px;
  background: #ffffff;
  overflow: hidden;
}

/* SVG local SOLO a la izquierda (estilo MATLAB) */
.nt-matlab-section::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:420px;
  height:100%;
  background-image: url("../img/matlab-network.svg");
  background-repeat:no-repeat;
  background-position:left 70px;
  background-size: 360px auto;
  opacity: .35;
  pointer-events:none;
}

.nt-matlab-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nt-matlab-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.nt-matlab-title{
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #1f2d3d;
  font-weight: 700;
}

.nt-matlab-desc{
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
  max-width: 520px;
}

.nt-matlab-right{
  display:grid;
  gap: 22px;
}

.nt-matlab-icon{
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
}

.nt-matlab-icon svg{
  width: 30px;
  height: 30px;
  stroke: #2b7bb9;
  fill: none;
  stroke-width: 1.5;
}

.nt-matlab-feature-title{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1f2d3d;
}

.nt-matlab-feature-text{
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 13px;
}

/* Banner estilo MATLAB */
.nt-matlab-banner{
  margin-top: 30px;
  border-radius: 8px;
  padding: 18px 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg,#e9f1f7,#dceaf5);
  border: 1px solid #d0e2ef;
}

.nt-matlab-banner-text{
  font-weight: 600;
  color: #1f2d3d;
}

.nt-matlab-btn{
  padding: 8px 14px;
  border-radius: 6px;
  background: #2b7bb9;
  color: #fff;
  text-decoration:none;
  font-weight: 600;
  font-size: 13px;
  border: none;
}

.nt-matlab-btn:hover{
  background: #256ea6;
}

/* Fallback: visible por defecto */
.reveal{
  opacity: 1;
  transform: none;
}

/* Solo animar si el body tiene nt-js */
body.nt-js .reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
body.nt-js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px){
  .nt-matlab-grid{
    grid-template-columns: 1fr;
  }
  .nt-matlab-section::before{
    opacity: .18;
    background-position:left 20px;
  }
}