.nswi{
  --ns-text:#eef4ff;
  --ns-muted:#a9b8d8;
  --ns-primary:#42c6ff;
  --ns-primary-2:#6a5cff;
  --ns-line:rgba(120,170,255,.18);
  --ns-glow:0 0 0 1px rgba(92,170,255,.16), 0 0 24px rgba(66,198,255,.14), 0 16px 40px rgba(0,0,0,.34);
  color:var(--ns-text);
  padding:28px 16px;
  position:relative;
}
.nswi *{box-sizing:border-box}

.nswi__wrap{
  max-width:1240px;
  margin:0 auto;
  position:relative;
}
.nswi__wrap:before,
.nswi__wrap:after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  filter:blur(54px);
  pointer-events:none;
  opacity:.42;
  z-index:0;
}
.nswi__wrap:before{
  left:-50px;
  top:-50px;
  background:rgba(0,217,255,.14);
}
.nswi__wrap:after{
  right:-50px;
  bottom:-50px;
  background:rgba(152,68,255,.14);
}

.nswi__hero,
.nswi__card{
  position:relative;
  z-index:1;
}

.nswi__hero{
  margin-bottom:22px;
  min-width:0;
  background:linear-gradient(180deg, rgba(14,21,54,.94), rgba(8,13,34,.96));
  border:1px solid var(--ns-line);
  border-radius:24px;
  box-shadow:var(--ns-glow);
  backdrop-filter:blur(8px);
  overflow:hidden;
}
.nswi__hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(66,198,255,.12), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(106,92,255,.18), transparent 26%);
  pointer-events:none;
}

.nswi__heroInner{
  max-width:920px;
  margin:0 auto;
  padding:38px;
  position:relative;
  z-index:1;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.nswi__eyebrow{
  display:inline-flex;
  align-self:flex-start;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(67,197,255,.12);
  border:1px solid rgba(67,197,255,.28);
  color:#eafcff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:18px;
  box-shadow:0 0 18px rgba(67,197,255,.18);
}

.nswi__title{
  font-size:clamp(36px,4.2vw,56px);
  line-height:1.02;
  margin:0 0 18px;
  color:#fff;
  text-shadow:0 0 18px rgba(66,198,255,.14);
}

.nswi__subtitle{
  margin:0 0 16px;
  font-size:19px;
  line-height:1.72;
  color:var(--ns-muted);
  max-width:760px;
  text-align:center;
}

.nswi__intro{
  max-width:760px;
  font-size:16px;
  line-height:1.8;
  color:#dfeafb;
  text-align:center;
}
.nswi__intro p{margin:0 0 12px}
.nswi__intro p:last-child{margin-bottom:0}

.nswi__sections{
  display:grid;
  gap:22px;
}

.nswi__card{
  display:grid;
  grid-template-columns:minmax(280px, 430px) minmax(0, 1fr);
  align-items:stretch;
  min-width:0;
  background:linear-gradient(180deg, rgba(14,21,54,.94), rgba(8,13,34,.96));
  border:1px solid var(--ns-line);
  border-radius:24px;
  box-shadow:var(--ns-glow);
  backdrop-filter:blur(8px);
  overflow:hidden;
}
.nswi__card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background:linear-gradient(135deg, rgba(66,198,255,.18), rgba(106,92,255,.06), rgba(0,240,255,.12));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  pointer-events:none;
}

.nswi__card--reverse{
  grid-template-columns:minmax(0,1fr) minmax(280px, 430px);
}
.nswi__card--reverse .nswi__media{order:2}
.nswi__card--reverse .nswi__text{order:1}

.nswi__media{
  min-height:320px;
  position:relative;
  background:linear-gradient(135deg, rgba(18,31,71,.96), rgba(10,18,40,.98));
  border-right:1px solid rgba(120,170,255,.12);
}
.nswi__card--reverse .nswi__media{
  border-right:0;
  border-left:1px solid rgba(120,170,255,.12);
}
.nswi__media:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(4,10,29,.04), rgba(3,9,26,.16)), linear-gradient(135deg, rgba(0,240,255,.10), transparent 32%, transparent 64%, rgba(106,92,255,.08));
  pointer-events:none;
  z-index:1;
}
.nswi__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(1.05) contrast(1.03);
}

.nswi__media--empty{
  background:linear-gradient(135deg, rgba(17,27,61,.94), rgba(10,16,38,.98));
}

.nswi__placeholder{
  height:100%;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  text-align:center;
  position:relative;
  z-index:2;
}
.nswi__placeholder span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  min-height:170px;
  border-radius:22px;
  border:1px dashed rgba(120,170,255,.30);
  color:#91a6c9;
  background:rgba(255,255,255,.02);
  font-weight:700;
  padding:18px;
}

.nswi__text{
  padding:28px;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.nswi__step{
  width:42px;
  height:42px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--ns-primary), var(--ns-primary-2));
  color:#fff;
  font-size:17px;
  font-weight:800;
  box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 0 18px rgba(66,198,255,.28);
  margin-bottom:16px;
}

.nswi__sectionTitle{
  margin:0 0 12px;
  font-size:clamp(26px,2vw,34px);
  line-height:1.08;
  color:#fff;
}

.nswi__place{
  display:inline-flex;
  align-self:center;
  flex-wrap:wrap;
  gap:6px;
  margin:0 0 18px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(108,162,255,.18);
  background:linear-gradient(180deg, rgba(14,24,58,.84), rgba(10,16,40,.9));
  color:#eaf3ff;
  font-size:15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03), 0 0 18px rgba(72,114,255,.07);
}

.nswi__sectionDescription{
  color:#edf4ff;
  font-size:15px;
  line-height:1.65;
}
.nswi__sectionDescription p{margin:0 0 12px}
.nswi__sectionDescription p:last-child{margin-bottom:0}

@media (max-width: 980px){
  .nswi__card,
  .nswi__card--reverse{
    grid-template-columns:1fr;
  }
  .nswi__card--reverse .nswi__media,
  .nswi__card--reverse .nswi__text,
  .nswi__card .nswi__media,
  .nswi__card .nswi__text{order:initial}
  .nswi__media,
  .nswi__placeholder{min-height:280px}
  .nswi__media,
  .nswi__card--reverse .nswi__media{border-left:0;border-right:0;border-bottom:1px solid rgba(120,170,255,.12)}
}

@media (max-width: 640px){
  .nswi{padding:22px 12px}
  .nswi__hero,
  .nswi__card{border-radius:20px}
  .nswi__heroInner,
  .nswi__text{padding:22px}
  .nswi__subtitle{font-size:17px}
  .nswi__place{display:flex}
  .nswi__media,
  .nswi__placeholder{min-height:220px}
  .nswi__placeholder span{min-width:130px;min-height:130px;border-radius:18px;font-size:14px}
}
