/* ─── TECH SECTION ─── */
.s_nexus_tech {
  padding: 80px 0;
}

.s_nexus_tech_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.s_nexus_tech_visual {
  background: linear-gradient(135deg, rgba(59,31,163,0.3) 0%, rgba(13,7,48,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.s_nexus_tech_visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: #e02040;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.s_nexus_tech_badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224,32,64,0.12);
  border: 1px solid rgba(224,32,64,0.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e02040;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.s_nexus_tech_name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.s_nexus_tech_subname {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.s_nexus_tech_tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
}

.s_nexus_tech_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.s_nexus_tech_pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.s_nexus_tech_points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s_nexus_tech_point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}

.s_nexus_tech_point:hover {
  border-color: rgba(224,32,64,0.25);
}

.s_nexus_tp_icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(224,32,64,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.s_nexus_tp_icon .s_nexus_icon_img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.s_nexus_tp_title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.s_nexus_tp_desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 992px) {
  .s_nexus_tech_layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .s_nexus_tech {
    padding: 80px 0;
  }

  .s_nexus_tech_visual {
    padding: 28px 20px;
  }

  .s_nexus_tech_point {
    padding: 18px;
  }
}
